enum

Matter::Cluster::Definitions::OperationalCredentials::NodeOperationalCertificateStatus

Inherits Enum < Comparable < Value < Object

This enumeration is used by the NOCResponse common response command to convey detailed out

come of several of this cluster’s operations.

Constants

Ok = 0_u8

OK, no error

InvalidPublicKey = 1_u8

Public Key in the NOC does not match the public key in the NOCSR

InvalidNodeOpId = 2_u8

The Node Operational ID in the NOC is not formatted correctly.

InvalidNoc = 3_u8

Any other validation error in NOC chain

MissingCsr = 4_u8

No record of prior CSR for which this NOC could match

TableFull = 5_u8

NOCs table full, cannot add another one

InvalidAdminSubject = 6_u8

Invalid CaseAdminSubject field for an AddNOC command.

FabricConflict = 9_u8

Trying to AddNOC instead of UpdateNOC against an existing Fabric.

LabelConflict = 10_u8

Label already exists on another Fabric.

InvalidFabricIndex = 11_u8

FabricIndex argument is invalid.

Instance methods

fabric_conflict?

Returns true if this enum value equals FabricConflict

Source
invalid_admin_subject?

Returns true if this enum value equals InvalidAdminSubject

Source
invalid_fabric_index?

Returns true if this enum value equals InvalidFabricIndex

Source
invalid_noc?

Returns true if this enum value equals InvalidNoc

Source
invalid_node_op_id?

Returns true if this enum value equals InvalidNodeOpId

Source
invalid_public_key?

Returns true if this enum value equals InvalidPublicKey

Source
label_conflict?

Returns true if this enum value equals LabelConflict

Source
missing_csr?

Returns true if this enum value equals MissingCsr

Source
ok?

Returns true if this enum value equals Ok

Source
table_full?

Returns true if this enum value equals TableFull

Source