ClusterInstance: MutableCluster<{
    attributes: {
        accessControlEntriesPerFabric: FixedAttribute<number, any>;
        acl: WritableFabricScopedAttribute<TypeFromFields<{
            authMode: FieldType<AccessControl.AccessControlEntryAuthMode>;
            fabricIndex: FieldType<FabricIndex>;
            privilege: FieldType<AccessControl.AccessControlEntryPrivilege>;
            subjects: FieldType<null | NodeId[]>;
            targets: FieldType<null | TypeFromFields<(...)>[]>;
        }>[], any>;
        extension: OptionalWritableFabricScopedAttribute<TypeFromFields<{
            data: FieldType<Uint8Array>;
            fabricIndex: FieldType<FabricIndex>;
        }>[], any>;
        subjectsPerAccessControlEntry: FixedAttribute<number, any>;
        targetsPerAccessControlEntry: FixedAttribute<number, any>;
    };
    events: {
        accessControlEntryChanged: Event<TypeFromFields<{
            adminNodeId: FieldType<null | NodeId>;
            adminPasscodeId: FieldType<null | number>;
            changeType: FieldType<AccessControl.ChangeType>;
            fabricIndex: FieldType<FabricIndex>;
            latestValue: FieldType<null | TypeFromFields<{
                authMode: FieldType<(...)>;
                fabricIndex: FieldType<(...)>;
                privilege: FieldType<(...)>;
                subjects: FieldType<(...)>;
                targets: FieldType<(...)>;
            }>>;
        }>, any>;
        accessControlExtensionChanged: Event<TypeFromFields<{
            adminNodeId: FieldType<null | NodeId>;
            adminPasscodeId: FieldType<null | number>;
            changeType: FieldType<AccessControl.ChangeType>;
            fabricIndex: FieldType<FabricIndex>;
            latestValue: FieldType<null | TypeFromFields<{
                data: FieldType<(...)>;
                fabricIndex: FieldType<(...)>;
            }>>;
        }>, any>;
    };
    id: 31;
    name: "AccessControl";
    revision: 1;
}, []> = ...

Type declaration

  • Readonlyattributes: {
        accessControlEntriesPerFabric: FixedAttribute<number, any>;
        acl: WritableFabricScopedAttribute<TypeFromFields<{
            authMode: FieldType<AccessControl.AccessControlEntryAuthMode>;
            fabricIndex: FieldType<FabricIndex>;
            privilege: FieldType<AccessControl.AccessControlEntryPrivilege>;
            subjects: FieldType<null | NodeId[]>;
            targets: FieldType<null | TypeFromFields<(...)>[]>;
        }>[], any>;
        extension: OptionalWritableFabricScopedAttribute<TypeFromFields<{
            data: FieldType<Uint8Array>;
            fabricIndex: FieldType<FabricIndex>;
        }>[], any>;
        subjectsPerAccessControlEntry: FixedAttribute<number, any>;
        targetsPerAccessControlEntry: FixedAttribute<number, any>;
    }
    • ReadonlyaccessControlEntriesPerFabric: FixedAttribute<number, any>

      This attribute shall provide the minimum number of ACL Entries per fabric that are supported by this server.

      Since reducing this value over time may invalidate ACL entries already written, this value shall NOT decrease across time as software updates occur that could impact this value. If this is a concern for a given implementation, it is recommended to only use the minimum value required and avoid reporting a higher value than the required minimum.

      MatterSpecification.v13.Core § 9.10.5.7

    • Readonlyacl: WritableFabricScopedAttribute<TypeFromFields<{
          authMode: FieldType<AccessControl.AccessControlEntryAuthMode>;
          fabricIndex: FieldType<FabricIndex>;
          privilege: FieldType<AccessControl.AccessControlEntryPrivilege>;
          subjects: FieldType<null | NodeId[]>;
          targets: FieldType<null | TypeFromFields<(...)>[]>;
      }>[], any>

      An attempt to add an Access Control Entry when no more entries are available shall result in a RESOURCE_EXHAUSTED error being reported and the ACL attribute shall NOT have the entry added to it. See access control limits.

      See the AccessControlEntriesPerFabric attribute for the actual value of the number of entries per fabric supported by the server.

      Each Access Control Entry codifies a single grant of privilege on this Node, and is used by the Access Control Privilege Granting algorithm to determine if a subject has privilege to interact with targets on the Node.

      MatterSpecification.v13.Core § 9.10.5.3

    • Readonlyextension: OptionalWritableFabricScopedAttribute<TypeFromFields<{
          data: FieldType<Uint8Array>;
          fabricIndex: FieldType<FabricIndex>;
      }>[], any>

      If present, the Access Control Extensions may be used by Administrators to store arbitrary data related to fabric’s Access Control Entries.

      The Access Control Extension list shall support a single extension entry per supported fabric.

      MatterSpecification.v13.Core § 9.10.5.4

    • ReadonlysubjectsPerAccessControlEntry: FixedAttribute<number, any>

      This attribute shall provide the minimum number of Subjects per entry that are supported by this server.

      Since reducing this value over time may invalidate ACL entries already written, this value shall NOT decrease across time as software updates occur that could impact this value. If this is a concern for a given implementation, it is recommended to only use the minimum value required and avoid reporting a higher value than the required minimum.

      MatterSpecification.v13.Core § 9.10.5.5

    • ReadonlytargetsPerAccessControlEntry: FixedAttribute<number, any>

      This attribute shall provide the minimum number of Targets per entry that are supported by this server.

      Since reducing this value over time may invalidate ACL entries already written, this value shall NOT decrease across time as software updates occur that could impact this value. If this is a concern for a given implementation, it is recommended to only use the minimum value required and avoid reporting a higher value than the required minimum.

      MatterSpecification.v13.Core § 9.10.5.6

  • Readonlyevents: {
        accessControlEntryChanged: Event<TypeFromFields<{
            adminNodeId: FieldType<null | NodeId>;
            adminPasscodeId: FieldType<null | number>;
            changeType: FieldType<AccessControl.ChangeType>;
            fabricIndex: FieldType<FabricIndex>;
            latestValue: FieldType<null | TypeFromFields<{
                authMode: FieldType<(...)>;
                fabricIndex: FieldType<(...)>;
                privilege: FieldType<(...)>;
                subjects: FieldType<(...)>;
                targets: FieldType<(...)>;
            }>>;
        }>, any>;
        accessControlExtensionChanged: Event<TypeFromFields<{
            adminNodeId: FieldType<null | NodeId>;
            adminPasscodeId: FieldType<null | number>;
            changeType: FieldType<AccessControl.ChangeType>;
            fabricIndex: FieldType<FabricIndex>;
            latestValue: FieldType<null | TypeFromFields<{
                data: FieldType<(...)>;
                fabricIndex: FieldType<(...)>;
            }>>;
        }>, any>;
    }
    • ReadonlyaccessControlEntryChanged: Event<TypeFromFields<{
          adminNodeId: FieldType<null | NodeId>;
          adminPasscodeId: FieldType<null | number>;
          changeType: FieldType<AccessControl.ChangeType>;
          fabricIndex: FieldType<FabricIndex>;
          latestValue: FieldType<null | TypeFromFields<{
              authMode: FieldType<(...)>;
              fabricIndex: FieldType<(...)>;
              privilege: FieldType<(...)>;
              subjects: FieldType<(...)>;
              targets: FieldType<(...)>;
          }>>;
      }>, any>

      The cluster shall send AccessControlEntryChanged events whenever its ACL attribute data is changed by an Administrator.

      • Each added entry shall generate an event with ChangeType Added.

      • Each changed entry shall generate an event with ChangeType Changed.

      • Each removed entry shall generate an event with ChangeType Removed.

      MatterSpecification.v13.Core § 9.10.7.1

    • ReadonlyaccessControlExtensionChanged: Event<TypeFromFields<{
          adminNodeId: FieldType<null | NodeId>;
          adminPasscodeId: FieldType<null | number>;
          changeType: FieldType<AccessControl.ChangeType>;
          fabricIndex: FieldType<FabricIndex>;
          latestValue: FieldType<null | TypeFromFields<{
              data: FieldType<(...)>;
              fabricIndex: FieldType<(...)>;
          }>>;
      }>, any>

      The cluster shall send AccessControlExtensionChanged events whenever its extension attribute data is changed by an Administrator.

      • Each added extension shall generate an event with ChangeType Added.

      • Each changed extension shall generate an event with ChangeType Changed.

      • Each removed extension shall generate an event with ChangeType Removed.

      MatterSpecification.v13.Core § 9.10.7.2

  • Readonlyid: 31
  • Readonlyname: "AccessControl"
  • Readonlyrevision: 1