TenantAtlas/apps/platform/app/Support/Resources/ProviderResourceResolutionMode.php
Ahmed Darrazi fb2642e941
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m9s
feat(resources): implement provider resource identity binding
Added ProviderResourceBinding model, migrations, policies, and supporting framework for canonical resource identity mapping as defined in Spec 381.
2026-06-15 17:37:06 +02:00

18 lines
540 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\Resources;
enum ProviderResourceResolutionMode: string
{
case ExactProviderIdentity = 'exact_provider_identity';
case CanonicalBuiltin = 'canonical_builtin';
case CanonicalVirtualTarget = 'canonical_virtual_target';
case ManualBinding = 'manual_binding';
case ExcludedNonGoverned = 'excluded_non_governed';
case AcceptedLimitation = 'accepted_limitation';
case UnsupportedCoverage = 'unsupported_coverage';
case MissingExpected = 'missing_expected';
}