diff --git a/examples/network-manager-app/network-manager-common/network-manager-app.matter b/examples/network-manager-app/network-manager-common/network-manager-app.matter index 1d7e8c0b9f0d58..efa22f98888133 100644 --- a/examples/network-manager-app/network-manager-common/network-manager-app.matter +++ b/examples/network-manager-app/network-manager-common/network-manager-app.matter @@ -1439,7 +1439,7 @@ cluster GroupKeyManagement = 63 { } /** Functionality to retrieve operational information about a managed Wi-Fi network. */ -provisional cluster WiFiNetworkManagement = 1105 { +cluster WiFiNetworkManagement = 1105 { revision 1; readonly attribute nullable octet_string<32> ssid = 0; @@ -1460,19 +1460,19 @@ provisional cluster WiFiNetworkManagement = 1105 { } /** Manage the Thread network of Thread Border Router */ -provisional cluster ThreadBorderRouterManagement = 1106 { +cluster ThreadBorderRouterManagement = 1106 { revision 1; bitmap Feature : bitmap32 { kPANChange = 0x1; } - provisional readonly attribute char_string<63> borderRouterName = 0; - provisional readonly attribute octet_string<254> borderAgentID = 1; - provisional readonly attribute int16u threadVersion = 2; - provisional readonly attribute boolean interfaceEnabled = 3; - provisional readonly attribute nullable int64u activeDatasetTimestamp = 4; - provisional readonly attribute nullable int64u pendingDatasetTimestamp = 5; + readonly attribute char_string<63> borderRouterName = 0; + readonly attribute octet_string<254> borderAgentID = 1; + readonly attribute int16u threadVersion = 2; + readonly attribute boolean interfaceEnabled = 3; + readonly attribute nullable int64u activeDatasetTimestamp = 4; + readonly attribute nullable int64u pendingDatasetTimestamp = 5; readonly attribute command_id generatedCommandList[] = 65528; readonly attribute command_id acceptedCommandList[] = 65529; readonly attribute event_id eventList[] = 65530; @@ -1504,7 +1504,7 @@ provisional cluster ThreadBorderRouterManagement = 1106 { } /** Manages the names and credentials of Thread networks visible to the user. */ -provisional cluster ThreadNetworkDirectory = 1107 { +cluster ThreadNetworkDirectory = 1107 { revision 1; struct ThreadNetworkStruct { diff --git a/examples/placeholder/linux/apps/app1/config.matter b/examples/placeholder/linux/apps/app1/config.matter index 2d69fa14a79485..40610feee35e8a 100644 --- a/examples/placeholder/linux/apps/app1/config.matter +++ b/examples/placeholder/linux/apps/app1/config.matter @@ -6724,19 +6724,19 @@ cluster OccupancySensing = 1030 { } /** Manage the Thread network of Thread Border Router */ -provisional cluster ThreadBorderRouterManagement = 1106 { +cluster ThreadBorderRouterManagement = 1106 { revision 1; bitmap Feature : bitmap32 { kPANChange = 0x1; } - provisional readonly attribute char_string<63> borderRouterName = 0; - provisional readonly attribute octet_string<254> borderAgentID = 1; - provisional readonly attribute int16u threadVersion = 2; - provisional readonly attribute boolean interfaceEnabled = 3; - provisional readonly attribute nullable int64u activeDatasetTimestamp = 4; - provisional readonly attribute nullable int64u pendingDatasetTimestamp = 5; + readonly attribute char_string<63> borderRouterName = 0; + readonly attribute octet_string<254> borderAgentID = 1; + readonly attribute int16u threadVersion = 2; + readonly attribute boolean interfaceEnabled = 3; + readonly attribute nullable int64u activeDatasetTimestamp = 4; + readonly attribute nullable int64u pendingDatasetTimestamp = 5; readonly attribute command_id generatedCommandList[] = 65528; readonly attribute command_id acceptedCommandList[] = 65529; readonly attribute event_id eventList[] = 65530; diff --git a/examples/thermostat/nxp/zap/thermostat_matter_br.matter b/examples/thermostat/nxp/zap/thermostat_matter_br.matter index 078c1781eabe04..16b85eb285093c 100644 --- a/examples/thermostat/nxp/zap/thermostat_matter_br.matter +++ b/examples/thermostat/nxp/zap/thermostat_matter_br.matter @@ -2204,19 +2204,19 @@ cluster Thermostat = 513 { } /** Manage the Thread network of Thread Border Router */ -provisional cluster ThreadBorderRouterManagement = 1106 { +cluster ThreadBorderRouterManagement = 1106 { revision 1; bitmap Feature : bitmap32 { kPANChange = 0x1; } - provisional readonly attribute char_string<63> borderRouterName = 0; - provisional readonly attribute octet_string<254> borderAgentID = 1; - provisional readonly attribute int16u threadVersion = 2; - provisional readonly attribute boolean interfaceEnabled = 3; - provisional readonly attribute nullable int64u activeDatasetTimestamp = 4; - provisional readonly attribute nullable int64u pendingDatasetTimestamp = 5; + readonly attribute char_string<63> borderRouterName = 0; + readonly attribute octet_string<254> borderAgentID = 1; + readonly attribute int16u threadVersion = 2; + readonly attribute boolean interfaceEnabled = 3; + readonly attribute nullable int64u activeDatasetTimestamp = 4; + readonly attribute nullable int64u pendingDatasetTimestamp = 5; readonly attribute command_id generatedCommandList[] = 65528; readonly attribute command_id acceptedCommandList[] = 65529; readonly attribute event_id eventList[] = 65530; diff --git a/examples/thread-br-app/thread-br-common/thread-br-app.matter b/examples/thread-br-app/thread-br-common/thread-br-app.matter index cb2e924d55f16b..4bd5754ebff303 100644 --- a/examples/thread-br-app/thread-br-common/thread-br-app.matter +++ b/examples/thread-br-app/thread-br-common/thread-br-app.matter @@ -1357,19 +1357,19 @@ cluster UserLabel = 65 { } /** Manage the Thread network of Thread Border Router */ -provisional cluster ThreadBorderRouterManagement = 1106 { +cluster ThreadBorderRouterManagement = 1106 { revision 1; bitmap Feature : bitmap32 { kPANChange = 0x1; } - provisional readonly attribute char_string<63> borderRouterName = 0; - provisional readonly attribute octet_string<254> borderAgentID = 1; - provisional readonly attribute int16u threadVersion = 2; - provisional readonly attribute boolean interfaceEnabled = 3; - provisional readonly attribute nullable int64u activeDatasetTimestamp = 4; - provisional readonly attribute nullable int64u pendingDatasetTimestamp = 5; + readonly attribute char_string<63> borderRouterName = 0; + readonly attribute octet_string<254> borderAgentID = 1; + readonly attribute int16u threadVersion = 2; + readonly attribute boolean interfaceEnabled = 3; + readonly attribute nullable int64u activeDatasetTimestamp = 4; + readonly attribute nullable int64u pendingDatasetTimestamp = 5; readonly attribute command_id generatedCommandList[] = 65528; readonly attribute command_id acceptedCommandList[] = 65529; readonly attribute event_id eventList[] = 65530; diff --git a/src/app/zap-templates/zcl/data-model/chip/thread-border-router-management-cluster.xml b/src/app/zap-templates/zcl/data-model/chip/thread-border-router-management-cluster.xml index d05ce70c34aca3..b09b8c59fd7832 100644 --- a/src/app/zap-templates/zcl/data-model/chip/thread-border-router-management-cluster.xml +++ b/src/app/zap-templates/zcl/data-model/chip/thread-border-router-management-cluster.xml @@ -22,7 +22,7 @@ limitations under the License. - + Network Infrastructure Thread Border Router Management 0x0452 @@ -33,41 +33,41 @@ limitations under the License. - BorderRouterName + BorderRouterName - BorderAgentID + BorderAgentID - ThreadVersion + ThreadVersion - InterfaceEnabled + InterfaceEnabled - ActiveDatasetTimestamp + ActiveDatasetTimestamp - PendingDatasetTimestamp + PendingDatasetTimestamp - + Command to request the active operational dataset of the Thread network to which the border router is connected. This command must be sent over a valid CASE session - + Command to request the pending dataset of the Thread network to which the border router is connected. This command must be sent over a valid CASE session - + Generated response to GetActiveDatasetRequest or GetPendingDatasetRequest commands. - + Command to set or update the active Dataset of the Thread network to which the Border Router is connected. - + Command set or update the pending Dataset of the Thread network to which the Border Router is connected. diff --git a/src/app/zap-templates/zcl/data-model/chip/thread-network-directory-cluster.xml b/src/app/zap-templates/zcl/data-model/chip/thread-network-directory-cluster.xml index 3a6445b15bbad3..cadc0f6425772d 100644 --- a/src/app/zap-templates/zcl/data-model/chip/thread-network-directory-cluster.xml +++ b/src/app/zap-templates/zcl/data-model/chip/thread-network-directory-cluster.xml @@ -17,7 +17,7 @@ limitations under the License. - + @@ -25,7 +25,7 @@ limitations under the License. - + Network Infrastructure Thread Network Directory 0x0453 diff --git a/src/app/zap-templates/zcl/data-model/chip/wifi-network-management-cluster.xml b/src/app/zap-templates/zcl/data-model/chip/wifi-network-management-cluster.xml index 8c8b4d40c3abdd..14a0ef0e2ec94e 100644 --- a/src/app/zap-templates/zcl/data-model/chip/wifi-network-management-cluster.xml +++ b/src/app/zap-templates/zcl/data-model/chip/wifi-network-management-cluster.xml @@ -17,7 +17,7 @@ limitations under the License. - + Network Infrastructure Wi-Fi Network Management 0x0451 diff --git a/src/controller/data_model/controller-clusters.matter b/src/controller/data_model/controller-clusters.matter index ca2a0f9e0dc27a..195bafbcd1aba4 100644 --- a/src/controller/data_model/controller-clusters.matter +++ b/src/controller/data_model/controller-clusters.matter @@ -8270,7 +8270,7 @@ cluster RadonConcentrationMeasurement = 1071 { } /** Functionality to retrieve operational information about a managed Wi-Fi network. */ -provisional cluster WiFiNetworkManagement = 1105 { +cluster WiFiNetworkManagement = 1105 { revision 1; readonly attribute nullable octet_string<32> ssid = 0; @@ -8291,19 +8291,19 @@ provisional cluster WiFiNetworkManagement = 1105 { } /** Manage the Thread network of Thread Border Router */ -provisional cluster ThreadBorderRouterManagement = 1106 { +cluster ThreadBorderRouterManagement = 1106 { revision 1; bitmap Feature : bitmap32 { kPANChange = 0x1; } - provisional readonly attribute char_string<63> borderRouterName = 0; - provisional readonly attribute octet_string<254> borderAgentID = 1; - provisional readonly attribute int16u threadVersion = 2; - provisional readonly attribute boolean interfaceEnabled = 3; - provisional readonly attribute nullable int64u activeDatasetTimestamp = 4; - provisional readonly attribute nullable int64u pendingDatasetTimestamp = 5; + readonly attribute char_string<63> borderRouterName = 0; + readonly attribute octet_string<254> borderAgentID = 1; + readonly attribute int16u threadVersion = 2; + readonly attribute boolean interfaceEnabled = 3; + readonly attribute nullable int64u activeDatasetTimestamp = 4; + readonly attribute nullable int64u pendingDatasetTimestamp = 5; readonly attribute command_id generatedCommandList[] = 65528; readonly attribute command_id acceptedCommandList[] = 65529; readonly attribute event_id eventList[] = 65530; @@ -8335,7 +8335,7 @@ provisional cluster ThreadBorderRouterManagement = 1106 { } /** Manages the names and credentials of Thread networks visible to the user. */ -provisional cluster ThreadNetworkDirectory = 1107 { +cluster ThreadNetworkDirectory = 1107 { revision 1; struct ThreadNetworkStruct {