Added `ProviderResourceBinding` model, migrations, policies, and supporting framework for canonical resource identity mapping as defined in Spec 381. This provides the structural capability to resolve baseline and posture discrepancies by binding logical entities across source providers to canonical identities. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #452
13 lines
208 B
PHP
13 lines
208 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Resources;
|
|
|
|
enum ProviderResourceBindingStatus: string
|
|
{
|
|
case Active = 'active';
|
|
case Superseded = 'superseded';
|
|
case Revoked = 'revoked';
|
|
}
|