@empire-builder-kit/nx 1.0.0-beta.9 → 1.0.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +6 -0
- package/README.md +113 -3
- package/executors.json +30 -0
- package/package.json +84 -6
- package/src/api-contract/baseline-update.d.ts +82 -0
- package/src/api-contract/baseline-update.js +225 -0
- package/src/api-contract/baseline-update.js.map +1 -0
- package/src/api-contract/compatibility.d.ts +30 -0
- package/src/api-contract/compatibility.js +643 -0
- package/src/api-contract/compatibility.js.map +1 -0
- package/src/api-contract/contract-graph.d.ts +35 -0
- package/src/api-contract/contract-graph.js +141 -0
- package/src/api-contract/contract-graph.js.map +1 -0
- package/src/api-contract/evidence.d.ts +23 -0
- package/src/api-contract/evidence.js +87 -0
- package/src/api-contract/evidence.js.map +1 -0
- package/src/api-contract/index.d.ts +6 -0
- package/src/api-contract/index.js +10 -0
- package/src/api-contract/index.js.map +1 -0
- package/src/api-contract/model.d.ts +144 -0
- package/src/api-contract/model.fixtures.d.ts +2 -0
- package/src/api-contract/model.fixtures.js +81 -0
- package/src/api-contract/model.fixtures.js.map +1 -0
- package/src/api-contract/model.js +993 -0
- package/src/api-contract/model.js.map +1 -0
- package/src/api-contract/rollout.d.ts +32 -0
- package/src/api-contract/rollout.js +88 -0
- package/src/api-contract/rollout.js.map +1 -0
- package/src/authorization/compatibility.d.ts +62 -0
- package/src/authorization/compatibility.js +175 -0
- package/src/authorization/compatibility.js.map +1 -0
- package/src/authorization/index.d.ts +1 -0
- package/src/authorization/index.js +5 -0
- package/src/authorization/index.js.map +1 -0
- package/src/blueprints/execution.d.ts +25 -1
- package/src/blueprints/execution.js +246 -83
- package/src/blueprints/execution.js.map +1 -1
- package/src/blueprints/external-sandbox.d.ts +53 -0
- package/src/blueprints/external-sandbox.js +1182 -0
- package/src/blueprints/external-sandbox.js.map +1 -0
- package/src/blueprints/manifest.d.ts +42 -2
- package/src/blueprints/manifest.js +82 -27
- package/src/blueprints/manifest.js.map +1 -1
- package/src/blueprints/resolver.d.ts +14 -5
- package/src/blueprints/resolver.js +228 -68
- package/src/blueprints/resolver.js.map +1 -1
- package/src/cli/agent-command.d.ts +30 -0
- package/src/cli/agent-command.js +204 -0
- package/src/cli/agent-command.js.map +1 -0
- package/src/cli/agent-runtime.d.ts +25 -0
- package/src/cli/agent-runtime.js +488 -0
- package/src/cli/agent-runtime.js.map +1 -0
- package/src/cli/blueprint-authority.d.ts +9 -0
- package/src/cli/blueprint-authority.js +43 -0
- package/src/cli/blueprint-authority.js.map +1 -0
- package/src/cli/blueprint-command.d.ts +24 -0
- package/src/cli/blueprint-command.js +63 -0
- package/src/cli/blueprint-command.js.map +1 -0
- package/src/cli/bootstrap.d.ts +31 -0
- package/src/cli/bootstrap.js +165 -0
- package/src/cli/bootstrap.js.map +1 -0
- package/src/cli/dev-command.d.ts +92 -0
- package/src/cli/dev-command.js +561 -0
- package/src/cli/dev-command.js.map +1 -0
- package/src/cli/main.d.ts +131 -0
- package/src/cli/main.js +1199 -0
- package/src/cli/main.js.map +1 -0
- package/src/cli/output.d.ts +19 -0
- package/src/cli/output.js +51 -0
- package/src/cli/output.js.map +1 -0
- package/src/cli/personal-secret-runtime.d.ts +81 -0
- package/src/cli/personal-secret-runtime.js +567 -0
- package/src/cli/personal-secret-runtime.js.map +1 -0
- package/src/cli/secret-terminal.d.ts +12 -0
- package/src/cli/secret-terminal.js +128 -0
- package/src/cli/secret-terminal.js.map +1 -0
- package/src/container-images.d.ts +1 -0
- package/src/container-images.js +5 -0
- package/src/container-images.js.map +1 -0
- package/src/data-lifecycle/index.d.ts +3 -0
- package/src/data-lifecycle/index.js +7 -0
- package/src/data-lifecycle/index.js.map +1 -0
- package/src/data-lifecycle/model.d.ts +172 -0
- package/src/data-lifecycle/model.fixtures.d.ts +2 -0
- package/src/data-lifecycle/model.fixtures.js +244 -0
- package/src/data-lifecycle/model.fixtures.js.map +1 -0
- package/src/data-lifecycle/model.js +95 -0
- package/src/data-lifecycle/model.js.map +1 -0
- package/src/data-lifecycle/sensitive-artifacts.d.ts +28 -0
- package/src/data-lifecycle/sensitive-artifacts.js +146 -0
- package/src/data-lifecycle/sensitive-artifacts.js.map +1 -0
- package/src/data-lifecycle/validation.d.ts +32 -0
- package/src/data-lifecycle/validation.js +837 -0
- package/src/data-lifecycle/validation.js.map +1 -0
- package/src/database-retirement/contract.d.ts +68 -0
- package/src/database-retirement/contract.js +166 -0
- package/src/database-retirement/contract.js.map +1 -0
- package/src/database-retirement/index.d.ts +1 -0
- package/src/database-retirement/index.js +5 -0
- package/src/database-retirement/index.js.map +1 -0
- package/src/deterministic-order.d.ts +2 -0
- package/src/deterministic-order.js +7 -0
- package/src/deterministic-order.js.map +1 -0
- package/src/developer-agent/context.d.ts +27 -0
- package/src/developer-agent/context.js +497 -0
- package/src/developer-agent/context.js.map +1 -0
- package/src/developer-agent/generator-planning.d.ts +34 -0
- package/src/developer-agent/generator-planning.js +645 -0
- package/src/developer-agent/generator-planning.js.map +1 -0
- package/src/developer-agent/generator-preview.d.ts +8 -0
- package/src/developer-agent/generator-preview.js +650 -0
- package/src/developer-agent/generator-preview.js.map +1 -0
- package/src/developer-agent/git-inspection.d.ts +108 -0
- package/src/developer-agent/git-inspection.js +815 -0
- package/src/developer-agent/git-inspection.js.map +1 -0
- package/src/developer-agent/handoff.d.ts +43 -0
- package/src/developer-agent/handoff.js +698 -0
- package/src/developer-agent/handoff.js.map +1 -0
- package/src/developer-agent/index.d.ts +10 -0
- package/src/developer-agent/index.js +14 -0
- package/src/developer-agent/index.js.map +1 -0
- package/src/developer-agent/model.d.ts +481 -0
- package/src/developer-agent/model.js +143 -0
- package/src/developer-agent/model.js.map +1 -0
- package/src/developer-agent/operation-registry.d.ts +45 -0
- package/src/developer-agent/operation-registry.js +1255 -0
- package/src/developer-agent/operation-registry.js.map +1 -0
- package/src/developer-agent/ordering.d.ts +9 -0
- package/src/developer-agent/ordering.js +15 -0
- package/src/developer-agent/ordering.js.map +1 -0
- package/src/developer-agent/planning.d.ts +18 -0
- package/src/developer-agent/planning.js +447 -0
- package/src/developer-agent/planning.js.map +1 -0
- package/src/developer-agent/preview-changes.d.ts +26 -0
- package/src/developer-agent/preview-changes.js +203 -0
- package/src/developer-agent/preview-changes.js.map +1 -0
- package/src/developer-agent/preview-source.d.ts +2 -0
- package/src/developer-agent/preview-source.js +16 -0
- package/src/developer-agent/preview-source.js.map +1 -0
- package/src/developer-agent/validation.d.ts +18 -0
- package/src/developer-agent/validation.js +2617 -0
- package/src/developer-agent/validation.js.map +1 -0
- package/src/developer-agent/workspace-inspection.d.ts +20 -0
- package/src/developer-agent/workspace-inspection.js +1134 -0
- package/src/developer-agent/workspace-inspection.js.map +1 -0
- package/src/developer-agent/workspace-path.d.ts +6 -0
- package/src/developer-agent/workspace-path.js +22 -0
- package/src/developer-agent/workspace-path.js.map +1 -0
- package/src/executors/blueprint-trust/blueprint-trust.d.ts +29 -0
- package/src/executors/blueprint-trust/blueprint-trust.js +115 -0
- package/src/executors/blueprint-trust/blueprint-trust.js.map +1 -0
- package/src/executors/blueprint-trust/schema.json +27 -0
- package/src/executors/blueprint-verification/blueprint-verification.d.ts +13 -0
- package/src/executors/blueprint-verification/blueprint-verification.js +110 -0
- package/src/executors/blueprint-verification/blueprint-verification.js.map +1 -0
- package/src/executors/blueprint-verification/schema.json +44 -0
- package/src/executors/deployment-plan/deployment-plan.js +1 -0
- package/src/executors/deployment-plan/deployment-plan.js.map +1 -1
- package/src/executors/dev-doctor/dev-doctor.d.ts +19 -5
- package/src/executors/dev-doctor/dev-doctor.js +186 -32
- package/src/executors/dev-doctor/dev-doctor.js.map +1 -1
- package/src/executors/dev-doctor/schema.json +1 -6
- package/src/executors/dev-setup/dev-setup.d.ts +7 -1
- package/src/executors/dev-setup/dev-setup.js +14 -3
- package/src/executors/dev-setup/dev-setup.js.map +1 -1
- package/src/executors/developer-context/developer-context.d.ts +38 -0
- package/src/executors/developer-context/developer-context.js +78 -0
- package/src/executors/developer-context/developer-context.js.map +1 -0
- package/src/executors/developer-context/schema.json +87 -0
- package/src/executors/fleet/fleet.d.ts +12 -43
- package/src/executors/fleet/fleet.js +120 -500
- package/src/executors/fleet/fleet.js.map +1 -1
- package/src/executors/fleet/schema.json +64 -14
- package/src/executors/github-bootstrap/github-bootstrap.d.ts +1 -0
- package/src/executors/github-bootstrap/github-bootstrap.js +1 -0
- package/src/executors/github-bootstrap/github-bootstrap.js.map +1 -1
- package/src/executors/github-bootstrap/schema.json +5 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.d.ts +144 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.js +3320 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.js.map +1 -0
- package/src/executors/infrastructure-plan/schema.json +78 -0
- package/src/executors/secret-guardrails/schema.json +6 -0
- package/src/executors/secret-guardrails/secret-guardrails.d.ts +3 -0
- package/src/executors/secret-guardrails/secret-guardrails.js +44 -0
- package/src/executors/secret-guardrails/secret-guardrails.js.map +1 -0
- package/src/executors/secret-metadata/schema.json +31 -0
- package/src/executors/secret-metadata/secret-metadata.d.ts +32 -0
- package/src/executors/secret-metadata/secret-metadata.js +131 -0
- package/src/executors/secret-metadata/secret-metadata.js.map +1 -0
- package/src/executors/sst-lifecycle/logging-preflight.d.ts +17 -0
- package/src/executors/sst-lifecycle/logging-preflight.js +196 -0
- package/src/executors/sst-lifecycle/logging-preflight.js.map +1 -0
- package/src/executors/sst-lifecycle/run-sst-command.d.ts +23 -3
- package/src/executors/sst-lifecycle/run-sst-command.js +113 -10
- package/src/executors/sst-lifecycle/run-sst-command.js.map +1 -1
- package/src/executors/sst-lifecycle/schema.json +9 -5
- package/src/executors/sst-lifecycle/secret-preflight.d.ts +25 -0
- package/src/executors/sst-lifecycle/secret-preflight.js +119 -0
- package/src/executors/sst-lifecycle/secret-preflight.js.map +1 -0
- package/src/foundation/discovery.d.ts +17 -1
- package/src/foundation/discovery.js +16 -1
- package/src/foundation/discovery.js.map +1 -1
- package/src/foundation/index.d.ts +3 -0
- package/src/foundation/index.js +3 -0
- package/src/foundation/index.js.map +1 -1
- package/src/foundation/local-database-contract.d.ts +1 -0
- package/src/foundation/local-database-contract.js +3 -0
- package/src/foundation/local-database-contract.js.map +1 -1
- package/src/foundation/logging-preflight.d.ts +30 -0
- package/src/foundation/logging-preflight.js +138 -0
- package/src/foundation/logging-preflight.js.map +1 -0
- package/src/foundation/logging.d.ts +70 -0
- package/src/foundation/logging.js +133 -0
- package/src/foundation/logging.js.map +1 -0
- package/src/foundation/preflight.d.ts +9 -0
- package/src/foundation/preflight.js +58 -2
- package/src/foundation/preflight.js.map +1 -1
- package/src/foundation/provision-database-bindings.d.ts +9 -1
- package/src/foundation/provision-database-bindings.js +25 -5
- package/src/foundation/provision-database-bindings.js.map +1 -1
- package/src/foundation/provision-logical-database.d.ts +10 -2
- package/src/foundation/provision-logical-database.js +68 -113
- package/src/foundation/provision-logical-database.js.map +1 -1
- package/src/foundation/router-origin-proof.d.ts +2 -0
- package/src/foundation/router-origin-proof.js +25 -0
- package/src/foundation/router-origin-proof.js.map +1 -0
- package/src/foundation/stages.d.ts +1 -0
- package/src/foundation/stages.js +9 -1
- package/src/foundation/stages.js.map +1 -1
- package/src/frontend-security/index.d.ts +1 -0
- package/src/frontend-security/index.js +5 -0
- package/src/frontend-security/index.js.map +1 -0
- package/src/frontend-security/security-headers.d.ts +50 -0
- package/src/frontend-security/security-headers.js +418 -0
- package/src/frontend-security/security-headers.js.map +1 -0
- package/src/generators/feature-registry.d.ts +13 -0
- package/src/generators/feature-registry.js +73 -0
- package/src/generators/feature-registry.js.map +1 -0
- package/src/generators/function/function.d.ts +1 -1
- package/src/generators/function/function.js +51 -6
- package/src/generators/function/function.js.map +1 -1
- package/src/generators/function/schema.d.ts +1 -0
- package/src/generators/function/schema.json +6 -1
- package/src/generators/logging-registry.d.ts +13 -0
- package/src/generators/logging-registry.js +62 -0
- package/src/generators/logging-registry.js.map +1 -0
- package/src/generators/post-generation-install.d.ts +67 -0
- package/src/generators/post-generation-install.js +3308 -0
- package/src/generators/post-generation-install.js.map +1 -0
- package/src/generators/preset/generator.js +3 -0
- package/src/generators/preset/generator.js.map +1 -1
- package/src/generators/preset/tool-versions.d.ts +18 -0
- package/src/generators/preset/tool-versions.js +22 -0
- package/src/generators/preset/tool-versions.js.map +1 -0
- package/src/generators/preset/workspace-files-developer-agent.d.ts +14 -0
- package/src/generators/preset/workspace-files-developer-agent.js +511 -0
- package/src/generators/preset/workspace-files-developer-agent.js.map +1 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.d.ts +6 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.js +406 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.js.map +1 -0
- package/src/generators/preset/workspace-files-performance-cost.d.ts +66 -0
- package/src/generators/preset/workspace-files-performance-cost.js +866 -0
- package/src/generators/preset/workspace-files-performance-cost.js.map +1 -0
- package/src/generators/preset/workspace-files-performance-load.d.ts +73 -0
- package/src/generators/preset/workspace-files-performance-load.js +801 -0
- package/src/generators/preset/workspace-files-performance-load.js.map +1 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.d.ts +9 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.js +1102 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.js.map +1 -0
- package/src/generators/preset/workspace-files.d.ts +14 -1
- package/src/generators/preset/workspace-files.js +8189 -245
- package/src/generators/preset/workspace-files.js.map +1 -1
- package/src/generators/repository-policy/repository-policy.js +3 -47
- package/src/generators/repository-policy/repository-policy.js.map +1 -1
- package/src/generators/slice/built-in-plan-api-contract-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-api-contract-files.js +2656 -0
- package/src/generators/slice/built-in-plan-api-contract-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-api-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-api-files.js +1186 -0
- package/src/generators/slice/built-in-plan-api-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-async-work-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-async-work-files.js +7903 -0
- package/src/generators/slice/built-in-plan-async-work-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-authorization-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-authorization-files.js +2314 -0
- package/src/generators/slice/built-in-plan-authorization-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.js +559 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.js +1101 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.js +249 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-files.js +1530 -0
- package/src/generators/slice/built-in-plan-data-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.js +750 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.js +828 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.js +2604 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.js +144 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-rights-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-rights-files.js +4628 -0
- package/src/generators/slice/built-in-plan-data-rights-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.js +1901 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.js +485 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-foundation-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-foundation-files.js +184 -0
- package/src/generators/slice/built-in-plan-foundation-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-frontend-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-frontend-files.js +2233 -0
- package/src/generators/slice/built-in-plan-frontend-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.js +3038 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.js +312 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-metadata-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-metadata-files.js +219 -0
- package/src/generators/slice/built-in-plan-metadata-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-operations-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-operations-files.js +630 -0
- package/src/generators/slice/built-in-plan-operations-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-performance-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-performance-files.js +3293 -0
- package/src/generators/slice/built-in-plan-performance-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-project-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-project-files.js +979 -0
- package/src/generators/slice/built-in-plan-project-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-release-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-release-files.js +6387 -0
- package/src/generators/slice/built-in-plan-release-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-reliability-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-reliability-files.js +4499 -0
- package/src/generators/slice/built-in-plan-reliability-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.js +1004 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-shared.d.ts +53 -0
- package/src/generators/slice/built-in-plan-shared.js +113 -0
- package/src/generators/slice/built-in-plan-shared.js.map +1 -0
- package/src/generators/slice/built-in-plan-testing-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-testing-files.js +2356 -0
- package/src/generators/slice/built-in-plan-testing-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-verification-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-verification-files.js +358 -0
- package/src/generators/slice/built-in-plan-verification-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-web-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-web-files.js +430 -0
- package/src/generators/slice/built-in-plan-web-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-workload-role-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-workload-role-files.js +2356 -0
- package/src/generators/slice/built-in-plan-workload-role-files.js.map +1 -0
- package/src/generators/slice/built-in-plan.d.ts +8 -0
- package/src/generators/slice/built-in-plan.js +264 -0
- package/src/generators/slice/built-in-plan.js.map +1 -0
- package/src/generators/slice/schema.json +1 -1
- package/src/generators/slice/slice.d.ts +1 -22
- package/src/generators/slice/slice.js +185 -1510
- package/src/generators/slice/slice.js.map +1 -1
- package/src/generators/upgrade/schema.d.ts +2 -0
- package/src/generators/upgrade/schema.json +11 -1
- package/src/generators/upgrade/upgrade.d.ts +51 -1
- package/src/generators/upgrade/upgrade.js +820 -82
- package/src/generators/upgrade/upgrade.js.map +1 -1
- package/src/generators/workload/frozen-container.d.ts +8 -0
- package/src/generators/workload/frozen-container.js +36 -0
- package/src/generators/workload/frozen-container.js.map +1 -0
- package/src/generators/workload/performance-registration.d.ts +32 -0
- package/src/generators/workload/performance-registration.js +226 -0
- package/src/generators/workload/performance-registration.js.map +1 -0
- package/src/generators/workload/reliability-registration.d.ts +16 -0
- package/src/generators/workload/reliability-registration.js +150 -0
- package/src/generators/workload/reliability-registration.js.map +1 -0
- package/src/generators/workload/schema.d.ts +1 -0
- package/src/generators/workload/schema.json +6 -1
- package/src/generators/workload/service-performance-files.d.ts +4 -0
- package/src/generators/workload/service-performance-files.js +1846 -0
- package/src/generators/workload/service-performance-files.js.map +1 -0
- package/src/generators/workload/workload.d.ts +3 -2
- package/src/generators/workload/workload.js +1083 -18
- package/src/generators/workload/workload.js.map +1 -1
- package/src/git-policy/action-pins.d.ts +10 -0
- package/src/git-policy/action-pins.js +10 -0
- package/src/git-policy/action-pins.js.map +1 -1
- package/src/git-policy/github-bootstrap.d.ts +14 -1
- package/src/git-policy/github-bootstrap.js +274 -46
- package/src/git-policy/github-bootstrap.js.map +1 -1
- package/src/index.d.ts +2 -0
- package/src/index.js +2 -0
- package/src/index.js.map +1 -1
- package/src/infrastructure-change/convergence.d.ts +13 -0
- package/src/infrastructure-change/convergence.js +85 -0
- package/src/infrastructure-change/convergence.js.map +1 -0
- package/src/infrastructure-change/drift.d.ts +13 -0
- package/src/infrastructure-change/drift.js +112 -0
- package/src/infrastructure-change/drift.js.map +1 -0
- package/src/infrastructure-change/index.d.ts +7 -0
- package/src/infrastructure-change/index.js +11 -0
- package/src/infrastructure-change/index.js.map +1 -0
- package/src/infrastructure-change/model.d.ts +253 -0
- package/src/infrastructure-change/model.js +28 -0
- package/src/infrastructure-change/model.js.map +1 -0
- package/src/infrastructure-change/normalize.d.ts +12 -0
- package/src/infrastructure-change/normalize.js +245 -0
- package/src/infrastructure-change/normalize.js.map +1 -0
- package/src/infrastructure-change/plan.d.ts +40 -0
- package/src/infrastructure-change/plan.js +361 -0
- package/src/infrastructure-change/plan.js.map +1 -0
- package/src/infrastructure-change/risk.d.ts +7 -0
- package/src/infrastructure-change/risk.js +269 -0
- package/src/infrastructure-change/risk.js.map +1 -0
- package/src/infrastructure-change/summary.d.ts +20 -0
- package/src/infrastructure-change/summary.js +130 -0
- package/src/infrastructure-change/summary.js.map +1 -0
- package/src/local-dev/context-discovery.d.ts +2 -0
- package/src/local-dev/context-discovery.js +59 -0
- package/src/local-dev/context-discovery.js.map +1 -0
- package/src/local-dev/contract-validation.d.ts +15 -0
- package/src/local-dev/contract-validation.js +84 -0
- package/src/local-dev/contract-validation.js.map +1 -0
- package/src/local-dev/contracts.d.ts +10 -1
- package/src/local-dev/contracts.js +57 -5
- package/src/local-dev/contracts.js.map +1 -1
- package/src/local-dev/control-contract.d.ts +67 -0
- package/src/local-dev/control-contract.js +180 -0
- package/src/local-dev/control-contract.js.map +1 -0
- package/src/local-dev/dev-command-core.d.ts +60 -0
- package/src/local-dev/dev-command-core.js +89 -0
- package/src/local-dev/dev-command-core.js.map +1 -0
- package/src/local-dev/effects.d.ts +16 -0
- package/src/local-dev/effects.js +63 -0
- package/src/local-dev/effects.js.map +1 -0
- package/src/local-dev/environment-inspector.d.ts +125 -0
- package/src/local-dev/environment-inspector.js +687 -0
- package/src/local-dev/environment-inspector.js.map +1 -0
- package/src/local-dev/environment-state.d.ts +113 -0
- package/src/local-dev/environment-state.js +463 -0
- package/src/local-dev/environment-state.js.map +1 -0
- package/src/local-dev/errors.d.ts +6 -0
- package/src/local-dev/errors.js +41 -0
- package/src/local-dev/errors.js.map +1 -0
- package/src/local-dev/fleet-client.d.ts +33 -0
- package/src/local-dev/fleet-client.js +156 -0
- package/src/local-dev/fleet-client.js.map +1 -0
- package/src/local-dev/fleet-configuration.d.ts +13 -0
- package/src/local-dev/fleet-configuration.js +71 -0
- package/src/local-dev/fleet-configuration.js.map +1 -0
- package/src/local-dev/fleet-inventory.d.ts +56 -0
- package/src/local-dev/fleet-inventory.js +469 -0
- package/src/local-dev/fleet-inventory.js.map +1 -0
- package/src/local-dev/fleet-ipc.d.ts +28 -0
- package/src/local-dev/fleet-ipc.js +267 -0
- package/src/local-dev/fleet-ipc.js.map +1 -0
- package/src/local-dev/fleet-launcher.d.ts +53 -0
- package/src/local-dev/fleet-launcher.js +379 -0
- package/src/local-dev/fleet-launcher.js.map +1 -0
- package/src/local-dev/fleet-lock.d.ts +41 -0
- package/src/local-dev/fleet-lock.js +135 -0
- package/src/local-dev/fleet-lock.js.map +1 -0
- package/src/local-dev/fleet-logs.d.ts +66 -0
- package/src/local-dev/fleet-logs.js +542 -0
- package/src/local-dev/fleet-logs.js.map +1 -0
- package/src/local-dev/fleet-process.d.ts +50 -0
- package/src/local-dev/fleet-process.js +289 -0
- package/src/local-dev/fleet-process.js.map +1 -0
- package/src/local-dev/fleet-runtime.d.ts +22 -0
- package/src/local-dev/fleet-runtime.js +368 -0
- package/src/local-dev/fleet-runtime.js.map +1 -0
- package/src/local-dev/fleet-session.d.ts +70 -0
- package/src/local-dev/fleet-session.js +301 -0
- package/src/local-dev/fleet-session.js.map +1 -0
- package/src/local-dev/fleet-slice-runner-daemon.d.ts +1 -0
- package/src/local-dev/fleet-slice-runner-daemon.js +21 -0
- package/src/local-dev/fleet-slice-runner-daemon.js.map +1 -0
- package/src/local-dev/fleet-startup.d.ts +22 -0
- package/src/local-dev/fleet-startup.js +114 -0
- package/src/local-dev/fleet-startup.js.map +1 -0
- package/src/local-dev/fleet-state.d.ts +62 -0
- package/src/local-dev/fleet-state.js +297 -0
- package/src/local-dev/fleet-state.js.map +1 -0
- package/src/local-dev/fleet-supervisor-daemon.d.ts +1 -0
- package/src/local-dev/fleet-supervisor-daemon.js +41 -0
- package/src/local-dev/fleet-supervisor-daemon.js.map +1 -0
- package/src/local-dev/fleet-supervisor.d.ts +52 -0
- package/src/local-dev/fleet-supervisor.js +384 -0
- package/src/local-dev/fleet-supervisor.js.map +1 -0
- package/src/local-dev/gateway.js +1 -1
- package/src/local-dev/gateway.js.map +1 -1
- package/src/local-dev/identity.js +4 -6
- package/src/local-dev/identity.js.map +1 -1
- package/src/local-dev/index.d.ts +1 -0
- package/src/local-dev/index.js +1 -0
- package/src/local-dev/index.js.map +1 -1
- package/src/local-dev/local-context.d.ts +62 -0
- package/src/local-dev/local-context.js +299 -0
- package/src/local-dev/local-context.js.map +1 -0
- package/src/local-dev/nx-workspace.d.ts +45 -0
- package/src/local-dev/nx-workspace.js +228 -0
- package/src/local-dev/nx-workspace.js.map +1 -0
- package/src/local-dev/personal-secret-ledger.d.ts +75 -0
- package/src/local-dev/personal-secret-ledger.js +391 -0
- package/src/local-dev/personal-secret-ledger.js.map +1 -0
- package/src/local-dev/personal-stage.d.ts +18 -0
- package/src/local-dev/personal-stage.js +129 -0
- package/src/local-dev/personal-stage.js.map +1 -0
- package/src/local-dev/private-state.d.ts +17 -0
- package/src/local-dev/private-state.js +254 -0
- package/src/local-dev/private-state.js.map +1 -0
- package/src/local-dev/process-identity.d.ts +9 -0
- package/src/local-dev/process-identity.js +79 -0
- package/src/local-dev/process-identity.js.map +1 -0
- package/src/local-dev/runtime-paths.d.ts +17 -0
- package/src/local-dev/runtime-paths.js +33 -0
- package/src/local-dev/runtime-paths.js.map +1 -0
- package/src/local-dev/secret-slice-claim.d.ts +17 -0
- package/src/local-dev/secret-slice-claim.js +75 -0
- package/src/local-dev/secret-slice-claim.js.map +1 -0
- package/src/local-dev/slice-claim.d.ts +36 -0
- package/src/local-dev/slice-claim.js +199 -0
- package/src/local-dev/slice-claim.js.map +1 -0
- package/src/local-dev/slice-runner.d.ts +121 -0
- package/src/local-dev/slice-runner.js +715 -0
- package/src/local-dev/slice-runner.js.map +1 -0
- package/src/local-dev/tls.js +51 -17
- package/src/local-dev/tls.js.map +1 -1
- package/src/ownership/composition.d.ts +5 -2
- package/src/ownership/composition.js +26 -3
- package/src/ownership/composition.js.map +1 -1
- package/src/ownership/hash.d.ts +1 -1
- package/src/ownership/hash.js +3 -1
- package/src/ownership/hash.js.map +1 -1
- package/src/ownership/record.d.ts +32 -1
- package/src/ownership/record.js +139 -2
- package/src/ownership/record.js.map +1 -1
- package/src/performance/cost-collection.d.ts +225 -0
- package/src/performance/cost-collection.js +825 -0
- package/src/performance/cost-collection.js.map +1 -0
- package/src/performance/cost-controls.d.ts +131 -0
- package/src/performance/cost-controls.js +336 -0
- package/src/performance/cost-controls.js.map +1 -0
- package/src/performance/evidence.d.ts +140 -0
- package/src/performance/evidence.js +599 -0
- package/src/performance/evidence.js.map +1 -0
- package/src/performance/index.d.ts +10 -0
- package/src/performance/index.js +14 -0
- package/src/performance/index.js.map +1 -0
- package/src/performance/load-safety.d.ts +84 -0
- package/src/performance/load-safety.js +346 -0
- package/src/performance/load-safety.js.map +1 -0
- package/src/performance/model.d.ts +129 -0
- package/src/performance/model.js +452 -0
- package/src/performance/model.js.map +1 -0
- package/src/performance/pr-artifact-budget.d.ts +42 -0
- package/src/performance/pr-artifact-budget.js +151 -0
- package/src/performance/pr-artifact-budget.js.map +1 -0
- package/src/performance/runner.d.ts +75 -0
- package/src/performance/runner.js +227 -0
- package/src/performance/runner.js.map +1 -0
- package/src/performance/scenario-endpoint.d.ts +1 -0
- package/src/performance/scenario-endpoint.js +5 -0
- package/src/performance/scenario-endpoint.js.map +1 -0
- package/src/performance/scenario.d.ts +193 -0
- package/src/performance/scenario.js +736 -0
- package/src/performance/scenario.js.map +1 -0
- package/src/performance/test-fixtures.d.ts +7 -0
- package/src/performance/test-fixtures.js +169 -0
- package/src/performance/test-fixtures.js.map +1 -0
- package/src/performance/unit-cost.d.ts +105 -0
- package/src/performance/unit-cost.js +364 -0
- package/src/performance/unit-cost.js.map +1 -0
- package/src/release/index.d.ts +4 -0
- package/src/release/index.js +8 -0
- package/src/release/index.js.map +1 -0
- package/src/release/lifecycle.d.ts +132 -0
- package/src/release/lifecycle.js +411 -0
- package/src/release/lifecycle.js.map +1 -0
- package/src/release/manifest.d.ts +148 -0
- package/src/release/manifest.js +503 -0
- package/src/release/manifest.js.map +1 -0
- package/src/release/rollout.d.ts +170 -0
- package/src/release/rollout.js +578 -0
- package/src/release/rollout.js.map +1 -0
- package/src/release/source-authority.d.ts +19 -0
- package/src/release/source-authority.js +195 -0
- package/src/release/source-authority.js.map +1 -0
- package/src/repository-policy/deployment-plan.d.ts +2 -1
- package/src/repository-policy/deployment-plan.js +2 -0
- package/src/repository-policy/deployment-plan.js.map +1 -1
- package/src/repository-policy/policy.d.ts +1 -1
- package/src/repository-policy/policy.js +29 -25
- package/src/repository-policy/policy.js.map +1 -1
- package/src/schemas/aggregate-count-evidence-v1.json +135 -0
- package/src/schemas/api-contract-baseline-v1.json +674 -0
- package/src/schemas/api-contract-compatibility-report-v1.json +126 -0
- package/src/schemas/aws-billing-actual-evidence-v1.json +407 -0
- package/src/schemas/blueprint-v1.json +18 -1
- package/src/schemas/data-lifecycle-policy-v1.json +517 -0
- package/src/schemas/generated-ownership-v2.json +22 -0
- package/src/schemas/performance-policy-v1.json +335 -0
- package/src/schemas/repository-policy-v1.json +1 -0
- package/src/schemas/testing-evidence-quarantine-v1.json +168 -0
- package/src/schemas/testing-evidence-result-v1.json +319 -0
- package/src/secrets/adapters.d.ts +49 -0
- package/src/secrets/adapters.js +184 -0
- package/src/secrets/adapters.js.map +1 -0
- package/src/secrets/aws-control-plane.d.ts +20 -0
- package/src/secrets/aws-control-plane.js +255 -0
- package/src/secrets/aws-control-plane.js.map +1 -0
- package/src/secrets/declaration-verification.d.ts +11 -0
- package/src/secrets/declaration-verification.js +68 -0
- package/src/secrets/declaration-verification.js.map +1 -0
- package/src/secrets/guardrails.d.ts +26 -0
- package/src/secrets/guardrails.js +328 -0
- package/src/secrets/guardrails.js.map +1 -0
- package/src/secrets/index.d.ts +12 -0
- package/src/secrets/index.js +16 -0
- package/src/secrets/index.js.map +1 -0
- package/src/secrets/metadata.d.ts +48 -0
- package/src/secrets/metadata.js +171 -0
- package/src/secrets/metadata.js.map +1 -0
- package/src/secrets/model.d.ts +49 -0
- package/src/secrets/model.js +125 -0
- package/src/secrets/model.js.map +1 -0
- package/src/secrets/operator.d.ts +101 -0
- package/src/secrets/operator.js +229 -0
- package/src/secrets/operator.js.map +1 -0
- package/src/secrets/permissions.d.ts +34 -0
- package/src/secrets/permissions.js +86 -0
- package/src/secrets/permissions.js.map +1 -0
- package/src/secrets/personal-command.d.ts +83 -0
- package/src/secrets/personal-command.js +197 -0
- package/src/secrets/personal-command.js.map +1 -0
- package/src/secrets/personal-ledger.d.ts +21 -0
- package/src/secrets/personal-ledger.js +135 -0
- package/src/secrets/personal-ledger.js.map +1 -0
- package/src/secrets/registry.d.ts +9 -0
- package/src/secrets/registry.js +86 -0
- package/src/secrets/registry.js.map +1 -0
- package/src/secrets/verification.d.ts +18 -0
- package/src/secrets/verification.js +139 -0
- package/src/secrets/verification.js.map +1 -0
- package/src/secrets/workload-access.d.ts +46 -0
- package/src/secrets/workload-access.js +163 -0
- package/src/secrets/workload-access.js.map +1 -0
- package/src/supply-chain/action-pins.d.ts +26 -0
- package/src/supply-chain/action-pins.js +208 -0
- package/src/supply-chain/action-pins.js.map +1 -0
- package/src/supply-chain/blueprint-trust-git.d.ts +130 -0
- package/src/supply-chain/blueprint-trust-git.js +1581 -0
- package/src/supply-chain/blueprint-trust-git.js.map +1 -0
- package/src/supply-chain/blueprint-trust-process.d.ts +4 -0
- package/src/supply-chain/blueprint-trust-process.js +88 -0
- package/src/supply-chain/blueprint-trust-process.js.map +1 -0
- package/src/supply-chain/blueprint-trust.d.ts +354 -0
- package/src/supply-chain/blueprint-trust.js +1558 -0
- package/src/supply-chain/blueprint-trust.js.map +1 -0
- package/src/supply-chain/blueprint-verification-authority.d.ts +62 -0
- package/src/supply-chain/blueprint-verification-authority.js +588 -0
- package/src/supply-chain/blueprint-verification-authority.js.map +1 -0
- package/src/supply-chain/blueprint-verification-execution.d.ts +68 -0
- package/src/supply-chain/blueprint-verification-execution.js +624 -0
- package/src/supply-chain/blueprint-verification-execution.js.map +1 -0
- package/src/supply-chain/build-output.d.ts +35 -0
- package/src/supply-chain/build-output.js +398 -0
- package/src/supply-chain/build-output.js.map +1 -0
- package/src/supply-chain/common.d.ts +21 -0
- package/src/supply-chain/common.js +107 -0
- package/src/supply-chain/common.js.map +1 -0
- package/src/supply-chain/container-artifact-contract.d.ts +23 -0
- package/src/supply-chain/container-artifact-contract.js +208 -0
- package/src/supply-chain/container-artifact-contract.js.map +1 -0
- package/src/supply-chain/container-release.d.ts +119 -0
- package/src/supply-chain/container-release.js +496 -0
- package/src/supply-chain/container-release.js.map +1 -0
- package/src/supply-chain/ecr-applicability.d.ts +19 -0
- package/src/supply-chain/ecr-applicability.js +103 -0
- package/src/supply-chain/ecr-applicability.js.map +1 -0
- package/src/supply-chain/ecr-scanning.d.ts +83 -0
- package/src/supply-chain/ecr-scanning.js +321 -0
- package/src/supply-chain/ecr-scanning.js.map +1 -0
- package/src/supply-chain/ecs-deployed-image.d.ts +85 -0
- package/src/supply-chain/ecs-deployed-image.js +300 -0
- package/src/supply-chain/ecs-deployed-image.js.map +1 -0
- package/src/supply-chain/errors.d.ts +6 -0
- package/src/supply-chain/errors.js +15 -0
- package/src/supply-chain/errors.js.map +1 -0
- package/src/supply-chain/generated-blueprint-trust-command.d.ts +4 -0
- package/src/supply-chain/generated-blueprint-trust-command.js +1362 -0
- package/src/supply-chain/generated-blueprint-trust-command.js.map +1 -0
- package/src/supply-chain/generated-command.d.ts +1 -0
- package/src/supply-chain/generated-command.js +687 -0
- package/src/supply-chain/generated-command.js.map +1 -0
- package/src/supply-chain/generated-container-release-command.d.ts +16 -0
- package/src/supply-chain/generated-container-release-command.js +2087 -0
- package/src/supply-chain/generated-container-release-command.js.map +1 -0
- package/src/supply-chain/generated-ecr-collector-command.d.ts +21 -0
- package/src/supply-chain/generated-ecr-collector-command.js +1338 -0
- package/src/supply-chain/generated-ecr-collector-command.js.map +1 -0
- package/src/supply-chain/generated-files.d.ts +13 -0
- package/src/supply-chain/generated-files.js +401 -0
- package/src/supply-chain/generated-files.js.map +1 -0
- package/src/supply-chain/generated-scanner-command.d.ts +1 -0
- package/src/supply-chain/generated-scanner-command.js +718 -0
- package/src/supply-chain/generated-scanner-command.js.map +1 -0
- package/src/supply-chain/index.d.ts +28 -0
- package/src/supply-chain/index.js +35 -0
- package/src/supply-chain/index.js.map +1 -0
- package/src/supply-chain/inventory.d.ts +79 -0
- package/src/supply-chain/inventory.js +717 -0
- package/src/supply-chain/inventory.js.map +1 -0
- package/src/supply-chain/license-expression.d.ts +7 -0
- package/src/supply-chain/license-expression.js +128 -0
- package/src/supply-chain/license-expression.js.map +1 -0
- package/src/supply-chain/pnpm-toolchain-authority.d.ts +31 -0
- package/src/supply-chain/pnpm-toolchain-authority.js +316 -0
- package/src/supply-chain/pnpm-toolchain-authority.js.map +1 -0
- package/src/supply-chain/policy.d.ts +105 -0
- package/src/supply-chain/policy.js +301 -0
- package/src/supply-chain/policy.js.map +1 -0
- package/src/supply-chain/publication.d.ts +48 -0
- package/src/supply-chain/publication.js +85 -0
- package/src/supply-chain/publication.js.map +1 -0
- package/src/supply-chain/sbom.d.ts +228 -0
- package/src/supply-chain/sbom.js +826 -0
- package/src/supply-chain/sbom.js.map +1 -0
- package/src/supply-chain/scanner.d.ts +77 -0
- package/src/supply-chain/scanner.js +502 -0
- package/src/supply-chain/scanner.js.map +1 -0
- package/src/supply-chain/vendored-source.d.ts +95 -0
- package/src/supply-chain/vendored-source.js +315 -0
- package/src/supply-chain/vendored-source.js.map +1 -0
- package/src/testing-evidence/fixture-scope.d.ts +52 -0
- package/src/testing-evidence/fixture-scope.js +140 -0
- package/src/testing-evidence/fixture-scope.js.map +1 -0
- package/src/testing-evidence/index.d.ts +5 -0
- package/src/testing-evidence/index.js +9 -0
- package/src/testing-evidence/index.js.map +1 -0
- package/src/testing-evidence/quarantine.d.ts +48 -0
- package/src/testing-evidence/quarantine.js +253 -0
- package/src/testing-evidence/quarantine.js.map +1 -0
- package/src/testing-evidence/result.d.ts +108 -0
- package/src/testing-evidence/result.js +571 -0
- package/src/testing-evidence/result.js.map +1 -0
- package/src/testing-evidence/runner-adapter.d.ts +51 -0
- package/src/testing-evidence/runner-adapter.js +288 -0
- package/src/testing-evidence/runner-adapter.js.map +1 -0
- package/src/testing-evidence/sensitive-artifacts.d.ts +13 -0
- package/src/testing-evidence/sensitive-artifacts.js +93 -0
- package/src/testing-evidence/sensitive-artifacts.js.map +1 -0
- package/src/work-markers/work-markers.js +4 -3
- package/src/work-markers/work-markers.js.map +1 -1
- package/src/workload-roles/account-baseline.d.ts +132 -0
- package/src/workload-roles/account-baseline.js +743 -0
- package/src/workload-roles/account-baseline.js.map +1 -0
- package/src/workload-roles/authority.d.ts +38 -0
- package/src/workload-roles/authority.js +156 -0
- package/src/workload-roles/authority.js.map +1 -0
- package/src/workload-roles/aws-adapter.d.ts +99 -0
- package/src/workload-roles/aws-adapter.js +416 -0
- package/src/workload-roles/aws-adapter.js.map +1 -0
- package/src/workload-roles/aws-internal-handler.d.ts +27 -0
- package/src/workload-roles/aws-internal-handler.js +58 -0
- package/src/workload-roles/aws-internal-handler.js.map +1 -0
- package/src/workload-roles/aws-s3-state.d.ts +52 -0
- package/src/workload-roles/aws-s3-state.js +164 -0
- package/src/workload-roles/aws-s3-state.js.map +1 -0
- package/src/workload-roles/aws-sdk-control-plane.d.ts +12 -0
- package/src/workload-roles/aws-sdk-control-plane.js +291 -0
- package/src/workload-roles/aws-sdk-control-plane.js.map +1 -0
- package/src/workload-roles/boundary.d.ts +33 -0
- package/src/workload-roles/boundary.js +130 -0
- package/src/workload-roles/boundary.js.map +1 -0
- package/src/workload-roles/convergence.d.ts +66 -0
- package/src/workload-roles/convergence.js +186 -0
- package/src/workload-roles/convergence.js.map +1 -0
- package/src/workload-roles/effective-policy.d.ts +51 -0
- package/src/workload-roles/effective-policy.js +183 -0
- package/src/workload-roles/effective-policy.js.map +1 -0
- package/src/workload-roles/handler.d.ts +43 -0
- package/src/workload-roles/handler.js +130 -0
- package/src/workload-roles/handler.js.map +1 -0
- package/src/workload-roles/history.d.ts +47 -0
- package/src/workload-roles/history.js +324 -0
- package/src/workload-roles/history.js.map +1 -0
- package/src/workload-roles/index.d.ts +17 -0
- package/src/workload-roles/index.js +21 -0
- package/src/workload-roles/index.js.map +1 -0
- package/src/workload-roles/injection.d.ts +119 -0
- package/src/workload-roles/injection.js +495 -0
- package/src/workload-roles/injection.js.map +1 -0
- package/src/workload-roles/manifest.d.ts +54 -0
- package/src/workload-roles/manifest.js +343 -0
- package/src/workload-roles/manifest.js.map +1 -0
- package/src/workload-roles/provisioner.d.ts +70 -0
- package/src/workload-roles/provisioner.js +231 -0
- package/src/workload-roles/provisioner.js.map +1 -0
- package/src/workload-roles/registration.d.ts +101 -0
- package/src/workload-roles/registration.js +457 -0
- package/src/workload-roles/registration.js.map +1 -0
- package/src/workload-roles/stage-boundary.d.ts +31 -0
- package/src/workload-roles/stage-boundary.js +208 -0
- package/src/workload-roles/stage-boundary.js.map +1 -0
- package/src/workload-roles/standard-slice.d.ts +54 -0
- package/src/workload-roles/standard-slice.js +252 -0
- package/src/workload-roles/standard-slice.js.map +1 -0
- package/migrations/standard-pre-v1-to-v1.md +0 -11
- package/src/foundation/aurora-logical-database.d.ts +0 -76
- package/src/foundation/aurora-logical-database.js +0 -419
- package/src/foundation/aurora-logical-database.js.map +0 -1
|
@@ -0,0 +1,825 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createAggregateCountEvidence = createAggregateCountEvidence;
|
|
4
|
+
exports.validateAggregateCountEvidence = validateAggregateCountEvidence;
|
|
5
|
+
exports.awsAccountFingerprint = awsAccountFingerprint;
|
|
6
|
+
exports.validateCostAllocationContract = validateCostAllocationContract;
|
|
7
|
+
exports.createExternalCostCollectionContract = createExternalCostCollectionContract;
|
|
8
|
+
exports.validateExternalCostCollectionContract = validateExternalCostCollectionContract;
|
|
9
|
+
exports.collectAwsBillingActualEvidence = collectAwsBillingActualEvidence;
|
|
10
|
+
exports.validateAwsBillingActualEvidence = validateAwsBillingActualEvidence;
|
|
11
|
+
const deterministic_order_js_1 = require("../deterministic-order.js");
|
|
12
|
+
const node_crypto_1 = require("node:crypto");
|
|
13
|
+
const safe_reference_1 = require("@empire-builder-kit/runtime/safe-reference");
|
|
14
|
+
const model_js_1 = require("./model.js");
|
|
15
|
+
const ACCOUNT_ID = /^\d{12}$/;
|
|
16
|
+
const ACCOUNT_FINGERPRINT = /^sha256:[a-f0-9]{64}$/;
|
|
17
|
+
const REGION = /^(?:af|ap|ca|cn|eu|il|me|mx|sa|us)(?:-gov|-iso|-isob)?-[a-z]+-\d$/;
|
|
18
|
+
const MONEY = /^(?:0|[1-9]\d{0,8})(?:\.\d{1,9})?$/;
|
|
19
|
+
const MAX_ALLOCATIONS = 32;
|
|
20
|
+
const MONEY_SCALE = 1_000_000_000;
|
|
21
|
+
function invalid(pointer, message) {
|
|
22
|
+
return new model_js_1.PerformanceContractError('performance-evidence-invalid', pointer, message);
|
|
23
|
+
}
|
|
24
|
+
function record(value) {
|
|
25
|
+
return value !== null && typeof value === 'object' && !Array.isArray(value);
|
|
26
|
+
}
|
|
27
|
+
function onlyKeys(value, keys, pointer) {
|
|
28
|
+
if (!record(value))
|
|
29
|
+
throw invalid(pointer, 'must be an object');
|
|
30
|
+
for (const key of Object.keys(value)) {
|
|
31
|
+
if (!keys.includes(key)) {
|
|
32
|
+
throw invalid(`${pointer}/${key}`, 'is not part of the v1 contract');
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
function requiredReference(value, pointer) {
|
|
37
|
+
if (!(0, safe_reference_1.isBoundedSafeReference)(value, 'performance-evidence')) {
|
|
38
|
+
throw invalid(pointer, 'must be one bounded non-sensitive reference');
|
|
39
|
+
}
|
|
40
|
+
return value;
|
|
41
|
+
}
|
|
42
|
+
function digest(value, pointer) {
|
|
43
|
+
(0, model_js_1.assertDigest)(value, pointer);
|
|
44
|
+
return value;
|
|
45
|
+
}
|
|
46
|
+
function release(value, pointer) {
|
|
47
|
+
onlyKeys(value, ['candidateDigest', 'releaseId', 'releaseMaterialDigest', 'sourceCommit'], pointer);
|
|
48
|
+
(0, model_js_1.assertDigest)(value.candidateDigest, `${pointer}/candidateDigest`);
|
|
49
|
+
(0, model_js_1.assertDigest)(value.releaseMaterialDigest, `${pointer}/releaseMaterialDigest`);
|
|
50
|
+
(0, model_js_1.assertFullCommit)(value.sourceCommit, `${pointer}/sourceCommit`);
|
|
51
|
+
requiredReference(value.releaseId, `${pointer}/releaseId`);
|
|
52
|
+
return value;
|
|
53
|
+
}
|
|
54
|
+
function releasesEqual(left, right) {
|
|
55
|
+
return (left.candidateDigest === right.candidateDigest &&
|
|
56
|
+
left.releaseId === right.releaseId &&
|
|
57
|
+
left.releaseMaterialDigest === right.releaseMaterialDigest &&
|
|
58
|
+
left.sourceCommit === right.sourceCommit);
|
|
59
|
+
}
|
|
60
|
+
function protectedCollectionIdentity(value, pointer) {
|
|
61
|
+
onlyKeys(value, [
|
|
62
|
+
'aggregateArtifact',
|
|
63
|
+
'releaseArtifact',
|
|
64
|
+
'repository',
|
|
65
|
+
'runAttempt',
|
|
66
|
+
'runId',
|
|
67
|
+
'sourceCommit',
|
|
68
|
+
'workflow',
|
|
69
|
+
], pointer);
|
|
70
|
+
const inputArtifact = (artifact, artifactPointer) => {
|
|
71
|
+
onlyKeys(artifact, ['name', 'runId', 'sha256'], artifactPointer);
|
|
72
|
+
const name = requiredReference(artifact.name, `${artifactPointer}/name`);
|
|
73
|
+
const runId = requiredReference(artifact.runId, `${artifactPointer}/runId`);
|
|
74
|
+
const sha256 = artifact.sha256;
|
|
75
|
+
(0, model_js_1.assertDigest)(sha256, `${artifactPointer}/sha256`);
|
|
76
|
+
if (!/^[A-Za-z0-9][A-Za-z0-9._-]{0,127}$/.test(name) ||
|
|
77
|
+
!/^[1-9]\d{0,19}$/.test(runId)) {
|
|
78
|
+
throw invalid(artifactPointer, 'must identify one bounded artifact from an exact GitHub Actions run');
|
|
79
|
+
}
|
|
80
|
+
return { name, runId, sha256: sha256 };
|
|
81
|
+
};
|
|
82
|
+
const aggregateArtifact = inputArtifact(value.aggregateArtifact, `${pointer}/aggregateArtifact`);
|
|
83
|
+
const releaseArtifact = inputArtifact(value.releaseArtifact, `${pointer}/releaseArtifact`);
|
|
84
|
+
const repository = requiredReference(value.repository, `${pointer}/repository`);
|
|
85
|
+
const runAttempt = requiredReference(value.runAttempt, `${pointer}/runAttempt`);
|
|
86
|
+
const runId = requiredReference(value.runId, `${pointer}/runId`);
|
|
87
|
+
const sourceCommit = value.sourceCommit;
|
|
88
|
+
(0, model_js_1.assertFullCommit)(sourceCommit, `${pointer}/sourceCommit`);
|
|
89
|
+
if (!/^[A-Za-z0-9_.-]+\/[A-Za-z0-9_.-]+$/.test(repository) ||
|
|
90
|
+
!/^[1-9]\d{0,8}$/.test(runAttempt) ||
|
|
91
|
+
!/^[1-9]\d{0,19}$/.test(runId) ||
|
|
92
|
+
value.workflow !== '.github/workflows/performance-cost-actual.yml') {
|
|
93
|
+
throw invalid(pointer, 'must identify one exact protected GitHub billing-collection run');
|
|
94
|
+
}
|
|
95
|
+
return {
|
|
96
|
+
aggregateArtifact,
|
|
97
|
+
releaseArtifact,
|
|
98
|
+
repository,
|
|
99
|
+
runAttempt,
|
|
100
|
+
runId,
|
|
101
|
+
sourceCommit: sourceCommit,
|
|
102
|
+
workflow: '.github/workflows/performance-cost-actual.yml',
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
function exactEnvironment(value, pointer) {
|
|
106
|
+
onlyKeys(value, ['accountFingerprint', 'region', 'slice', 'stage', 'workspace'], pointer);
|
|
107
|
+
if (typeof value.accountFingerprint !== 'string' ||
|
|
108
|
+
!ACCOUNT_FINGERPRINT.test(value.accountFingerprint)) {
|
|
109
|
+
throw invalid(`${pointer}/accountFingerprint`, 'must be a derived AWS account fingerprint');
|
|
110
|
+
}
|
|
111
|
+
if (typeof value.region !== 'string' || !REGION.test(value.region)) {
|
|
112
|
+
throw invalid(`${pointer}/region`, 'must be an AWS Region');
|
|
113
|
+
}
|
|
114
|
+
requiredReference(value.slice, `${pointer}/slice`);
|
|
115
|
+
requiredReference(value.workspace, `${pointer}/workspace`);
|
|
116
|
+
if (value.stage !== 'production' && value.stage !== 'staging') {
|
|
117
|
+
throw invalid(`${pointer}/stage`, 'must be production or staging');
|
|
118
|
+
}
|
|
119
|
+
return value;
|
|
120
|
+
}
|
|
121
|
+
function exactPeriod(value, pointer) {
|
|
122
|
+
onlyKeys(value, ['end', 'start'], pointer);
|
|
123
|
+
if (!(0, model_js_1.isIsoInstant)(value.start) ||
|
|
124
|
+
!(0, model_js_1.isIsoInstant)(value.end) ||
|
|
125
|
+
!value.start.endsWith('T00:00:00.000Z') ||
|
|
126
|
+
!value.end.endsWith('T00:00:00.000Z') ||
|
|
127
|
+
Date.parse(value.end) <= Date.parse(value.start)) {
|
|
128
|
+
throw invalid(pointer, 'must be one increasing UTC-midnight billing window');
|
|
129
|
+
}
|
|
130
|
+
const durationDays = (Date.parse(value.end) - Date.parse(value.start)) / 86_400_000;
|
|
131
|
+
if (!Number.isSafeInteger(durationDays) || durationDays > 370) {
|
|
132
|
+
throw invalid(pointer, 'must be a bounded billing window of at most 370 days');
|
|
133
|
+
}
|
|
134
|
+
return value;
|
|
135
|
+
}
|
|
136
|
+
function dateFromInstant(value) {
|
|
137
|
+
return value.slice(0, 10);
|
|
138
|
+
}
|
|
139
|
+
function canonicalRequest(environment, period, purpose) {
|
|
140
|
+
return {
|
|
141
|
+
filter: {
|
|
142
|
+
tags: [
|
|
143
|
+
{ key: 'ebk:workspace', value: environment.workspace },
|
|
144
|
+
{ key: 'ebk:slice', value: environment.slice },
|
|
145
|
+
{ key: 'ebk:stage', value: environment.stage },
|
|
146
|
+
],
|
|
147
|
+
},
|
|
148
|
+
granularity: 'MONTHLY',
|
|
149
|
+
groupBy: purpose === 'allocation'
|
|
150
|
+
? { key: 'ebk:cost-allocation', type: 'TAG' }
|
|
151
|
+
: null,
|
|
152
|
+
metric: 'UnblendedCost',
|
|
153
|
+
operation: 'ce:GetCostAndUsage',
|
|
154
|
+
timePeriod: {
|
|
155
|
+
end: dateFromInstant(period.end),
|
|
156
|
+
start: dateFromInstant(period.start),
|
|
157
|
+
},
|
|
158
|
+
};
|
|
159
|
+
}
|
|
160
|
+
function moneyNanosFromString(value, pointer) {
|
|
161
|
+
if (typeof value !== 'string' || !MONEY.test(value)) {
|
|
162
|
+
throw invalid(pointer, 'must be a non-negative USD decimal with at most nine fractional digits');
|
|
163
|
+
}
|
|
164
|
+
const [whole = '0', fraction = ''] = value.split('.');
|
|
165
|
+
const nanos = Number(whole) * MONEY_SCALE +
|
|
166
|
+
Number(`${fraction}${'0'.repeat(9 - fraction.length)}`);
|
|
167
|
+
if (!Number.isSafeInteger(nanos)) {
|
|
168
|
+
throw invalid(pointer, 'exceeds the bounded USD evidence range');
|
|
169
|
+
}
|
|
170
|
+
return nanos;
|
|
171
|
+
}
|
|
172
|
+
function moneyNanosFromNumber(value, pointer) {
|
|
173
|
+
if (typeof value !== 'number' ||
|
|
174
|
+
!Number.isFinite(value) ||
|
|
175
|
+
value < 0 ||
|
|
176
|
+
value > 999_999_999) {
|
|
177
|
+
throw invalid(pointer, 'must be one bounded non-negative USD value');
|
|
178
|
+
}
|
|
179
|
+
const nanos = Math.round(value * MONEY_SCALE);
|
|
180
|
+
if (!Number.isSafeInteger(nanos) ||
|
|
181
|
+
Math.abs(nanos / MONEY_SCALE - value) > Number.EPSILON * 10) {
|
|
182
|
+
throw invalid(pointer, 'must have at most nine fractional digits');
|
|
183
|
+
}
|
|
184
|
+
return nanos;
|
|
185
|
+
}
|
|
186
|
+
function moneyFromNanos(value) {
|
|
187
|
+
return value / MONEY_SCALE;
|
|
188
|
+
}
|
|
189
|
+
function exactResult(response, request, pointer) {
|
|
190
|
+
requiredReference(response.requestId, `${pointer}/requestId`);
|
|
191
|
+
if (!Array.isArray(response.results) || response.results.length !== 1) {
|
|
192
|
+
throw invalid(`${pointer}/results`, 'must contain exactly one result period');
|
|
193
|
+
}
|
|
194
|
+
const result = response.results[0];
|
|
195
|
+
if (!result ||
|
|
196
|
+
result.start !== request.timePeriod.start ||
|
|
197
|
+
result.end !== request.timePeriod.end ||
|
|
198
|
+
result.estimated !== false) {
|
|
199
|
+
throw invalid(`${pointer}/results/0`, 'must be the exact closed, non-estimated query period');
|
|
200
|
+
}
|
|
201
|
+
if (!Array.isArray(result.groups)) {
|
|
202
|
+
throw invalid(`${pointer}/results/0/groups`, 'must be an array');
|
|
203
|
+
}
|
|
204
|
+
return result;
|
|
205
|
+
}
|
|
206
|
+
function allocationInputs(value) {
|
|
207
|
+
if (!Array.isArray(value) ||
|
|
208
|
+
value.length === 0 ||
|
|
209
|
+
value.length > MAX_ALLOCATIONS) {
|
|
210
|
+
throw invalid('collector/allocations', `must contain between one and ${MAX_ALLOCATIONS} allocations`);
|
|
211
|
+
}
|
|
212
|
+
const result = value.map((entry, index) => {
|
|
213
|
+
onlyKeys(entry, ['allocationId', 'capabilityId'], `collector/allocations/${index}`);
|
|
214
|
+
return {
|
|
215
|
+
allocationId: requiredReference(entry.allocationId, `collector/allocations/${index}/allocationId`),
|
|
216
|
+
capabilityId: requiredReference(entry.capabilityId, `collector/allocations/${index}/capabilityId`),
|
|
217
|
+
};
|
|
218
|
+
});
|
|
219
|
+
if (new Set(result.map(({ allocationId }) => allocationId)).size !==
|
|
220
|
+
result.length ||
|
|
221
|
+
new Set(result.map(({ capabilityId }) => capabilityId)).size !==
|
|
222
|
+
result.length) {
|
|
223
|
+
throw invalid('collector/allocations', 'allocation and capability identifiers must each be unique');
|
|
224
|
+
}
|
|
225
|
+
return result.sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(left.allocationId, right.allocationId));
|
|
226
|
+
}
|
|
227
|
+
function aggregateInputs(value) {
|
|
228
|
+
if (!Array.isArray(value) ||
|
|
229
|
+
value.length === 0 ||
|
|
230
|
+
value.length > MAX_ALLOCATIONS) {
|
|
231
|
+
throw invalid('collector/aggregateCounts', `must contain between one and ${MAX_ALLOCATIONS} aggregate counts`);
|
|
232
|
+
}
|
|
233
|
+
const result = value.map((entry, index) => {
|
|
234
|
+
onlyKeys(entry, ['aggregateId', 'capabilityId', 'count', 'evidenceDigest', 'sourceRef'], `collector/aggregateCounts/${index}`);
|
|
235
|
+
const count = entry.count;
|
|
236
|
+
if (typeof count !== 'number' ||
|
|
237
|
+
!Number.isSafeInteger(count) ||
|
|
238
|
+
count <= 0) {
|
|
239
|
+
throw invalid(`collector/aggregateCounts/${index}/count`, 'must be a positive safe integer');
|
|
240
|
+
}
|
|
241
|
+
return {
|
|
242
|
+
aggregateId: requiredReference(entry.aggregateId, `collector/aggregateCounts/${index}/aggregateId`),
|
|
243
|
+
capabilityId: requiredReference(entry.capabilityId, `collector/aggregateCounts/${index}/capabilityId`),
|
|
244
|
+
count,
|
|
245
|
+
evidenceDigest: digest(entry.evidenceDigest, `collector/aggregateCounts/${index}/evidenceDigest`),
|
|
246
|
+
sourceRef: requiredReference(entry.sourceRef, `collector/aggregateCounts/${index}/sourceRef`),
|
|
247
|
+
};
|
|
248
|
+
});
|
|
249
|
+
if (new Set(result.map(({ aggregateId }) => aggregateId)).size !==
|
|
250
|
+
result.length ||
|
|
251
|
+
new Set(result.map(({ capabilityId }) => capabilityId)).size !==
|
|
252
|
+
result.length) {
|
|
253
|
+
throw invalid('collector/aggregateCounts', 'aggregate and capability identifiers must each be unique');
|
|
254
|
+
}
|
|
255
|
+
return result.sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(left.aggregateId, right.aggregateId));
|
|
256
|
+
}
|
|
257
|
+
function aggregateRecords(value, pointer) {
|
|
258
|
+
if (!Array.isArray(value) ||
|
|
259
|
+
value.length === 0 ||
|
|
260
|
+
value.length > MAX_ALLOCATIONS) {
|
|
261
|
+
throw invalid(pointer, `must contain between one and ${MAX_ALLOCATIONS} aggregate counts`);
|
|
262
|
+
}
|
|
263
|
+
const result = value.map((entry, index) => {
|
|
264
|
+
onlyKeys(entry, ['aggregateId', 'capabilityId', 'count', 'sourceRef'], `${pointer}/${index}`);
|
|
265
|
+
if (typeof entry.count !== 'number' ||
|
|
266
|
+
!Number.isSafeInteger(entry.count) ||
|
|
267
|
+
entry.count <= 0) {
|
|
268
|
+
throw invalid(`${pointer}/${index}/count`, 'must be a positive safe integer');
|
|
269
|
+
}
|
|
270
|
+
return {
|
|
271
|
+
aggregateId: requiredReference(entry.aggregateId, `${pointer}/${index}/aggregateId`),
|
|
272
|
+
capabilityId: requiredReference(entry.capabilityId, `${pointer}/${index}/capabilityId`),
|
|
273
|
+
count: entry.count,
|
|
274
|
+
sourceRef: requiredReference(entry.sourceRef, `${pointer}/${index}/sourceRef`),
|
|
275
|
+
};
|
|
276
|
+
});
|
|
277
|
+
if (new Set(result.map(({ aggregateId }) => aggregateId)).size !==
|
|
278
|
+
result.length ||
|
|
279
|
+
new Set(result.map(({ capabilityId }) => capabilityId)).size !==
|
|
280
|
+
result.length) {
|
|
281
|
+
throw invalid(pointer, 'aggregate and capability identifiers must each be unique');
|
|
282
|
+
}
|
|
283
|
+
return result.sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(left.aggregateId, right.aggregateId));
|
|
284
|
+
}
|
|
285
|
+
function createAggregateCountEvidence(input) {
|
|
286
|
+
onlyKeys(input, [
|
|
287
|
+
'collectedAt',
|
|
288
|
+
'counts',
|
|
289
|
+
'environment',
|
|
290
|
+
'kind',
|
|
291
|
+
'period',
|
|
292
|
+
'producer',
|
|
293
|
+
'release',
|
|
294
|
+
'schemaVersion',
|
|
295
|
+
], 'aggregateEvidence');
|
|
296
|
+
if (input.kind !== 'ebk-aggregate-count-evidence' ||
|
|
297
|
+
input.schemaVersion !== 1) {
|
|
298
|
+
throw invalid('aggregateEvidence', 'must identify canonical v1 aggregate-count evidence');
|
|
299
|
+
}
|
|
300
|
+
const environment = exactEnvironment(input.environment, 'aggregateEvidence/environment');
|
|
301
|
+
const period = exactPeriod(input.period, 'aggregateEvidence/period');
|
|
302
|
+
const expectedRelease = release(input.release, 'aggregateEvidence/release');
|
|
303
|
+
if (!(0, model_js_1.isIsoInstant)(input.collectedAt) ||
|
|
304
|
+
Date.parse(input.collectedAt) < Date.parse(period.end)) {
|
|
305
|
+
throw invalid('aggregateEvidence/collectedAt', 'must be an ISO instant at or after the closed aggregate period');
|
|
306
|
+
}
|
|
307
|
+
onlyKeys(input.producer, ['access', 'authority', 'requestId'], 'aggregateEvidence/producer');
|
|
308
|
+
onlyKeys(input.producer.access, ['mode', 'permissionContract'], 'aggregateEvidence/producer/access');
|
|
309
|
+
if (input.producer.access.mode !== 'dedicated-oidc-read-role' ||
|
|
310
|
+
input.producer.access.permissionContract !==
|
|
311
|
+
'adopter-owned-least-privilege-read-v1') {
|
|
312
|
+
throw invalid('aggregateEvidence/producer/access', 'must identify the dedicated adopter-owned least-privilege read authority');
|
|
313
|
+
}
|
|
314
|
+
if (input.producer.authority !== 'adopter-protected-aggregate-v1') {
|
|
315
|
+
throw invalid('aggregateEvidence/producer/authority', 'must identify the adopter protected aggregate authority');
|
|
316
|
+
}
|
|
317
|
+
const unsigned = {
|
|
318
|
+
collectedAt: input.collectedAt,
|
|
319
|
+
counts: aggregateRecords(input.counts, 'aggregateEvidence/counts'),
|
|
320
|
+
environment,
|
|
321
|
+
kind: 'ebk-aggregate-count-evidence',
|
|
322
|
+
period,
|
|
323
|
+
producer: {
|
|
324
|
+
access: {
|
|
325
|
+
mode: 'dedicated-oidc-read-role',
|
|
326
|
+
permissionContract: 'adopter-owned-least-privilege-read-v1',
|
|
327
|
+
},
|
|
328
|
+
authority: 'adopter-protected-aggregate-v1',
|
|
329
|
+
requestId: requiredReference(input.producer.requestId, 'aggregateEvidence/producer/requestId'),
|
|
330
|
+
},
|
|
331
|
+
release: expectedRelease,
|
|
332
|
+
schemaVersion: 1,
|
|
333
|
+
};
|
|
334
|
+
return {
|
|
335
|
+
...unsigned,
|
|
336
|
+
materialDigest: (0, model_js_1.performanceDigest)(unsigned),
|
|
337
|
+
};
|
|
338
|
+
}
|
|
339
|
+
function validateAggregateCountEvidence(value) {
|
|
340
|
+
onlyKeys(value, [
|
|
341
|
+
'collectedAt',
|
|
342
|
+
'counts',
|
|
343
|
+
'environment',
|
|
344
|
+
'kind',
|
|
345
|
+
'materialDigest',
|
|
346
|
+
'period',
|
|
347
|
+
'producer',
|
|
348
|
+
'release',
|
|
349
|
+
'schemaVersion',
|
|
350
|
+
], 'aggregateEvidence');
|
|
351
|
+
digest(value.materialDigest, 'aggregateEvidence/materialDigest');
|
|
352
|
+
const expected = createAggregateCountEvidence({
|
|
353
|
+
collectedAt: value.collectedAt,
|
|
354
|
+
counts: value.counts,
|
|
355
|
+
environment: value.environment,
|
|
356
|
+
kind: value.kind,
|
|
357
|
+
period: value.period,
|
|
358
|
+
producer: value.producer,
|
|
359
|
+
release: value.release,
|
|
360
|
+
schemaVersion: value.schemaVersion,
|
|
361
|
+
});
|
|
362
|
+
if (value.materialDigest !== expected.materialDigest) {
|
|
363
|
+
throw invalid('aggregateEvidence/materialDigest', 'does not match the canonical aggregate-count evidence bytes');
|
|
364
|
+
}
|
|
365
|
+
return expected;
|
|
366
|
+
}
|
|
367
|
+
function assertSameCapabilitySet(allocations, aggregateCounts) {
|
|
368
|
+
const allocationCapabilities = allocations
|
|
369
|
+
.map(({ capabilityId }) => capabilityId)
|
|
370
|
+
.sort();
|
|
371
|
+
const aggregateCapabilities = aggregateCounts
|
|
372
|
+
.map(({ capabilityId }) => capabilityId)
|
|
373
|
+
.sort();
|
|
374
|
+
if (JSON.stringify(allocationCapabilities) !==
|
|
375
|
+
JSON.stringify(aggregateCapabilities)) {
|
|
376
|
+
throw invalid('collector', 'allocations and aggregate counts must name the same exact capabilities');
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
function awsAccountFingerprint(accountId) {
|
|
380
|
+
if (!ACCOUNT_ID.test(accountId)) {
|
|
381
|
+
throw invalid('collector/accountId', 'must be a twelve-digit AWS account ID');
|
|
382
|
+
}
|
|
383
|
+
return `sha256:${(0, node_crypto_1.createHash)('sha256').update(accountId).digest('hex')}`;
|
|
384
|
+
}
|
|
385
|
+
function validateCostAllocationContract(value, options = {}) {
|
|
386
|
+
onlyKeys(value, [
|
|
387
|
+
'actualCostProvider',
|
|
388
|
+
'allocations',
|
|
389
|
+
'forecastProviders',
|
|
390
|
+
'kind',
|
|
391
|
+
'provenanceLabels',
|
|
392
|
+
'resourceTagKey',
|
|
393
|
+
'schemaVersion',
|
|
394
|
+
'sharedCostsRemainExplicit',
|
|
395
|
+
'slice',
|
|
396
|
+
'unitCosts',
|
|
397
|
+
], 'costAllocation');
|
|
398
|
+
if (value.kind !== 'ebk-cost-allocation-contract' ||
|
|
399
|
+
value.schemaVersion !== 1 ||
|
|
400
|
+
value.actualCostProvider !== 'aws-billing-actual' ||
|
|
401
|
+
value.resourceTagKey !== 'ebk:cost-allocation' ||
|
|
402
|
+
value.sharedCostsRemainExplicit !== true ||
|
|
403
|
+
JSON.stringify(value.forecastProviders) !==
|
|
404
|
+
JSON.stringify(['infrastructure-plan', 'aws-price-estimate']) ||
|
|
405
|
+
JSON.stringify(value.provenanceLabels) !==
|
|
406
|
+
JSON.stringify(['estimate', 'test', 'actual'])) {
|
|
407
|
+
throw invalid('costAllocation', 'must identify the exact v1 adopter-owned cost allocation authority');
|
|
408
|
+
}
|
|
409
|
+
const slice = requiredReference(value.slice, 'costAllocation/slice');
|
|
410
|
+
if (!Array.isArray(value.allocations) ||
|
|
411
|
+
value.allocations.length !== 2 ||
|
|
412
|
+
!Array.isArray(value.unitCosts) ||
|
|
413
|
+
value.unitCosts.length !== 2) {
|
|
414
|
+
throw invalid('costAllocation', 'must define exactly two allocation and unit-cost capabilities');
|
|
415
|
+
}
|
|
416
|
+
const allocations = value.allocations
|
|
417
|
+
.map((entry, index) => {
|
|
418
|
+
onlyKeys(entry, ['capabilityId', 'driver', 'id', 'status'], `costAllocation/allocations/${index}`);
|
|
419
|
+
const status = entry.status;
|
|
420
|
+
if (status !== 'adopted' && status !== 'requires-adopter-value') {
|
|
421
|
+
throw invalid(`costAllocation/allocations/${index}/status`, 'must be adopted or require an adopter value');
|
|
422
|
+
}
|
|
423
|
+
return {
|
|
424
|
+
capabilityId: requiredReference(entry.capabilityId, `costAllocation/allocations/${index}/capabilityId`),
|
|
425
|
+
driver: requiredReference(entry.driver, `costAllocation/allocations/${index}/driver`),
|
|
426
|
+
id: requiredReference(entry.id, `costAllocation/allocations/${index}/id`),
|
|
427
|
+
status,
|
|
428
|
+
};
|
|
429
|
+
})
|
|
430
|
+
.sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(left.id, right.id));
|
|
431
|
+
const unitCosts = value.unitCosts
|
|
432
|
+
.map((entry, index) => {
|
|
433
|
+
onlyKeys(entry, [
|
|
434
|
+
'aggregateCountRef',
|
|
435
|
+
'anomalyIncreasePercent',
|
|
436
|
+
'id',
|
|
437
|
+
'ownerRouteRef',
|
|
438
|
+
'status',
|
|
439
|
+
'unit',
|
|
440
|
+
], `costAllocation/unitCosts/${index}`);
|
|
441
|
+
const status = entry.status;
|
|
442
|
+
if (status !== 'adopted' && status !== 'requires-adopter-value') {
|
|
443
|
+
throw invalid(`costAllocation/unitCosts/${index}/status`, 'must be adopted or require an adopter value');
|
|
444
|
+
}
|
|
445
|
+
if (typeof entry.anomalyIncreasePercent !== 'number' ||
|
|
446
|
+
!Number.isFinite(entry.anomalyIncreasePercent) ||
|
|
447
|
+
entry.anomalyIncreasePercent <= 0 ||
|
|
448
|
+
entry.anomalyIncreasePercent > 1_000) {
|
|
449
|
+
throw invalid(`costAllocation/unitCosts/${index}/anomalyIncreasePercent`, 'must be a finite percentage from greater than zero through 1000');
|
|
450
|
+
}
|
|
451
|
+
return {
|
|
452
|
+
aggregateCountRef: requiredReference(entry.aggregateCountRef, `costAllocation/unitCosts/${index}/aggregateCountRef`),
|
|
453
|
+
anomalyIncreasePercent: entry.anomalyIncreasePercent,
|
|
454
|
+
id: requiredReference(entry.id, `costAllocation/unitCosts/${index}/id`),
|
|
455
|
+
ownerRouteRef: requiredReference(entry.ownerRouteRef, `costAllocation/unitCosts/${index}/ownerRouteRef`),
|
|
456
|
+
status,
|
|
457
|
+
unit: requiredReference(entry.unit, `costAllocation/unitCosts/${index}/unit`),
|
|
458
|
+
};
|
|
459
|
+
})
|
|
460
|
+
.sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(left.id, right.id));
|
|
461
|
+
if (new Set(allocations.map(({ id }) => id)).size !== allocations.length ||
|
|
462
|
+
new Set(allocations.map(({ capabilityId }) => capabilityId)).size !==
|
|
463
|
+
allocations.length ||
|
|
464
|
+
new Set(unitCosts.map(({ id }) => id)).size !== unitCosts.length ||
|
|
465
|
+
JSON.stringify(allocations.map(({ capabilityId }) => capabilityId).sort()) !== JSON.stringify(unitCosts.map(({ id }) => id).sort())) {
|
|
466
|
+
throw invalid('costAllocation', 'allocation and unit-cost entries must map each exact capability once');
|
|
467
|
+
}
|
|
468
|
+
if (options.requireAdopted === true &&
|
|
469
|
+
[...allocations, ...unitCosts].some(({ status }) => status !== 'adopted')) {
|
|
470
|
+
throw invalid('costAllocation', 'protected collection requires every allocation and unit-cost capability to be adopted');
|
|
471
|
+
}
|
|
472
|
+
return {
|
|
473
|
+
actualCostProvider: 'aws-billing-actual',
|
|
474
|
+
allocations,
|
|
475
|
+
forecastProviders: ['infrastructure-plan', 'aws-price-estimate'],
|
|
476
|
+
kind: 'ebk-cost-allocation-contract',
|
|
477
|
+
provenanceLabels: ['estimate', 'test', 'actual'],
|
|
478
|
+
resourceTagKey: 'ebk:cost-allocation',
|
|
479
|
+
schemaVersion: 1,
|
|
480
|
+
sharedCostsRemainExplicit: true,
|
|
481
|
+
slice,
|
|
482
|
+
unitCosts,
|
|
483
|
+
};
|
|
484
|
+
}
|
|
485
|
+
function createExternalCostCollectionContract(input) {
|
|
486
|
+
const unsigned = {
|
|
487
|
+
collection: {
|
|
488
|
+
authority: 'aws-billing-actual',
|
|
489
|
+
mode: 'external-read-only',
|
|
490
|
+
period: 'closed-billing-window',
|
|
491
|
+
},
|
|
492
|
+
evidence: {
|
|
493
|
+
outputKind: 'ebk-aws-billing-actual-evidence',
|
|
494
|
+
outputPath: requiredReference(input.outputPath, 'costCollection/evidence/outputPath'),
|
|
495
|
+
provenance: 'actual',
|
|
496
|
+
releaseBindingRequired: true,
|
|
497
|
+
},
|
|
498
|
+
kind: 'ebk-external-cost-collection-contract',
|
|
499
|
+
owner: requiredReference(input.owner, 'costCollection/owner'),
|
|
500
|
+
requiredAllocationDimensions: ['workspace', 'slice', 'stage'],
|
|
501
|
+
schemaVersion: 1,
|
|
502
|
+
slice: requiredReference(input.slice, 'costCollection/slice'),
|
|
503
|
+
status: 'requires-live-external-collector',
|
|
504
|
+
};
|
|
505
|
+
return { ...unsigned, materialDigest: (0, model_js_1.performanceDigest)(unsigned) };
|
|
506
|
+
}
|
|
507
|
+
function validateExternalCostCollectionContract(value) {
|
|
508
|
+
onlyKeys(value, [
|
|
509
|
+
'collection',
|
|
510
|
+
'evidence',
|
|
511
|
+
'kind',
|
|
512
|
+
'materialDigest',
|
|
513
|
+
'owner',
|
|
514
|
+
'requiredAllocationDimensions',
|
|
515
|
+
'schemaVersion',
|
|
516
|
+
'slice',
|
|
517
|
+
'status',
|
|
518
|
+
], 'costCollection');
|
|
519
|
+
const expected = createExternalCostCollectionContract({
|
|
520
|
+
outputPath: value.evidence
|
|
521
|
+
?.outputPath,
|
|
522
|
+
owner: value.owner,
|
|
523
|
+
slice: value.slice,
|
|
524
|
+
});
|
|
525
|
+
if ((0, model_js_1.performanceDigest)(value.collection) !==
|
|
526
|
+
(0, model_js_1.performanceDigest)(expected.collection) ||
|
|
527
|
+
(0, model_js_1.performanceDigest)(value.evidence) !==
|
|
528
|
+
(0, model_js_1.performanceDigest)(expected.evidence) ||
|
|
529
|
+
(0, model_js_1.performanceDigest)(value.requiredAllocationDimensions) !==
|
|
530
|
+
(0, model_js_1.performanceDigest)(expected.requiredAllocationDimensions) ||
|
|
531
|
+
value.kind !== expected.kind ||
|
|
532
|
+
value.schemaVersion !== expected.schemaVersion ||
|
|
533
|
+
value.status !== expected.status ||
|
|
534
|
+
value.materialDigest !== expected.materialDigest) {
|
|
535
|
+
throw invalid('costCollection', 'must match the canonical external AWS billing collection contract');
|
|
536
|
+
}
|
|
537
|
+
return expected;
|
|
538
|
+
}
|
|
539
|
+
/**
|
|
540
|
+
* Runs the read-only evidence adapter outside the unit-cost evaluator. The
|
|
541
|
+
* evaluator receives only the bounded, release-bound result and cannot label
|
|
542
|
+
* arbitrary JSON as AWS billing actuals.
|
|
543
|
+
*/
|
|
544
|
+
async function collectAwsBillingActualEvidence(input) {
|
|
545
|
+
const environment = exactEnvironment(input.environment, 'collector/environment');
|
|
546
|
+
const period = exactPeriod(input.period, 'collector/period');
|
|
547
|
+
const collectedAt = input.collectedAt;
|
|
548
|
+
if (!(0, model_js_1.isIsoInstant)(collectedAt) ||
|
|
549
|
+
Date.parse(collectedAt) < Date.parse(period.end)) {
|
|
550
|
+
throw invalid('collector/collectedAt', 'must be an ISO instant at or after the closed billing period');
|
|
551
|
+
}
|
|
552
|
+
const expectedRelease = release(input.release, 'collector/release');
|
|
553
|
+
const collection = protectedCollectionIdentity(input.collection, 'collector/collection');
|
|
554
|
+
if (collection.sourceCommit !== expectedRelease.sourceCommit) {
|
|
555
|
+
throw invalid('collector/collection/sourceCommit', 'must equal the exact release source commit');
|
|
556
|
+
}
|
|
557
|
+
const allocations = allocationInputs(input.allocations);
|
|
558
|
+
const aggregateEvidence = validateAggregateCountEvidence(input.aggregateEvidence);
|
|
559
|
+
if ((0, model_js_1.performanceDigest)(aggregateEvidence.environment) !==
|
|
560
|
+
(0, model_js_1.performanceDigest)(environment) ||
|
|
561
|
+
(0, model_js_1.performanceDigest)(aggregateEvidence.period) !== (0, model_js_1.performanceDigest)(period) ||
|
|
562
|
+
!releasesEqual(aggregateEvidence.release, expectedRelease)) {
|
|
563
|
+
throw invalid('collector/aggregateEvidence', 'must bind the same exact environment, period, and release as billing collection');
|
|
564
|
+
}
|
|
565
|
+
const aggregateCounts = aggregateEvidence.counts.map((entry) => ({
|
|
566
|
+
...entry,
|
|
567
|
+
evidenceDigest: aggregateEvidence.materialDigest,
|
|
568
|
+
}));
|
|
569
|
+
assertSameCapabilitySet(allocations, aggregateCounts);
|
|
570
|
+
const identity = await input.client.getCallerIdentity();
|
|
571
|
+
requiredReference(identity.requestId, 'collector/identity/requestId');
|
|
572
|
+
const observedFingerprint = awsAccountFingerprint(identity.accountId);
|
|
573
|
+
if (observedFingerprint !== environment.accountFingerprint) {
|
|
574
|
+
throw invalid('collector/environment/accountFingerprint', 'does not match AWS STS caller identity');
|
|
575
|
+
}
|
|
576
|
+
const allocationRequest = canonicalRequest(environment, period, 'allocation');
|
|
577
|
+
const totalRequest = canonicalRequest(environment, period, 'total');
|
|
578
|
+
const allocationResponse = await input.client.getCostAndUsage(allocationRequest);
|
|
579
|
+
const totalResponse = await input.client.getCostAndUsage(totalRequest);
|
|
580
|
+
const allocationResult = exactResult(allocationResponse, allocationRequest, 'collector/allocationResponse');
|
|
581
|
+
const totalResult = exactResult(totalResponse, totalRequest, 'collector/totalResponse');
|
|
582
|
+
if (allocationResult.total !== null || totalResult.groups.length !== 0) {
|
|
583
|
+
throw invalid('collector/responses', 'allocation and total query shapes must remain separate');
|
|
584
|
+
}
|
|
585
|
+
if (!totalResult.total || totalResult.total.currency !== 'USD') {
|
|
586
|
+
throw invalid('collector/totalResponse/results/0/total', 'must contain one USD total');
|
|
587
|
+
}
|
|
588
|
+
const requestedById = new Map(allocations.map((allocation) => [allocation.allocationId, allocation]));
|
|
589
|
+
const seen = new Set();
|
|
590
|
+
const collectedAllocations = allocationResult.groups
|
|
591
|
+
.map((group, index) => {
|
|
592
|
+
if (group.currency !== 'USD' ||
|
|
593
|
+
!requestedById.has(group.allocationId) ||
|
|
594
|
+
seen.has(group.allocationId)) {
|
|
595
|
+
throw invalid(`collector/allocationResponse/results/0/groups/${index}`, 'must be one unique requested USD allocation');
|
|
596
|
+
}
|
|
597
|
+
seen.add(group.allocationId);
|
|
598
|
+
const requested = requestedById.get(group.allocationId);
|
|
599
|
+
if (!requested) {
|
|
600
|
+
throw invalid(`collector/allocationResponse/results/0/groups/${index}`, 'does not match a requested allocation');
|
|
601
|
+
}
|
|
602
|
+
const amountNanos = moneyNanosFromString(group.amountUsd, `collector/allocationResponse/results/0/groups/${index}/amountUsd`);
|
|
603
|
+
if (amountNanos <= 0) {
|
|
604
|
+
throw invalid(`collector/allocationResponse/results/0/groups/${index}/amountUsd`, 'must be positive for a unit-cost capability');
|
|
605
|
+
}
|
|
606
|
+
return {
|
|
607
|
+
allocatedCostUsd: moneyFromNanos(amountNanos),
|
|
608
|
+
allocationId: requested.allocationId,
|
|
609
|
+
capabilityId: requested.capabilityId,
|
|
610
|
+
sourceRowDigest: (0, model_js_1.performanceDigest)(group),
|
|
611
|
+
};
|
|
612
|
+
})
|
|
613
|
+
.sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(left.allocationId, right.allocationId));
|
|
614
|
+
if (collectedAllocations.length !== allocations.length) {
|
|
615
|
+
throw invalid('collector/allocationResponse/results/0/groups', 'must contain every requested allocation exactly once');
|
|
616
|
+
}
|
|
617
|
+
const allocatedNanos = collectedAllocations.reduce((sum, allocation) => sum +
|
|
618
|
+
moneyNanosFromNumber(allocation.allocatedCostUsd, `collector/allocations/${allocation.allocationId}/allocatedCostUsd`), 0);
|
|
619
|
+
const billedNanos = moneyNanosFromString(totalResult.total.amountUsd, 'collector/totalResponse/results/0/total/amountUsd');
|
|
620
|
+
if (allocatedNanos !== billedNanos) {
|
|
621
|
+
throw invalid('collector/reconciliation', 'allocation rows must reconcile exactly to the independently queried total');
|
|
622
|
+
}
|
|
623
|
+
const unsigned = {
|
|
624
|
+
aggregateCounts,
|
|
625
|
+
allocations: collectedAllocations,
|
|
626
|
+
authority: {
|
|
627
|
+
collector: 'ebk-aws-cost-explorer-v1',
|
|
628
|
+
mode: 'external-read-only',
|
|
629
|
+
provider: 'aws-billing-actual',
|
|
630
|
+
},
|
|
631
|
+
collection,
|
|
632
|
+
collectedAt,
|
|
633
|
+
collectorIdentity: {
|
|
634
|
+
callerIdentityRequestId: identity.requestId,
|
|
635
|
+
},
|
|
636
|
+
environment,
|
|
637
|
+
kind: 'ebk-aws-billing-actual-evidence',
|
|
638
|
+
period,
|
|
639
|
+
queries: [
|
|
640
|
+
{
|
|
641
|
+
operation: 'ce:GetCostAndUsage',
|
|
642
|
+
purpose: 'allocation',
|
|
643
|
+
request: allocationRequest,
|
|
644
|
+
requestDigest: (0, model_js_1.performanceDigest)(allocationRequest),
|
|
645
|
+
requestId: allocationResponse.requestId,
|
|
646
|
+
responseDigest: (0, model_js_1.performanceDigest)(allocationResponse),
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
operation: 'ce:GetCostAndUsage',
|
|
650
|
+
purpose: 'total',
|
|
651
|
+
request: totalRequest,
|
|
652
|
+
requestDigest: (0, model_js_1.performanceDigest)(totalRequest),
|
|
653
|
+
requestId: totalResponse.requestId,
|
|
654
|
+
responseDigest: (0, model_js_1.performanceDigest)(totalResponse),
|
|
655
|
+
},
|
|
656
|
+
],
|
|
657
|
+
reconciliation: {
|
|
658
|
+
allocatedCostUsd: moneyFromNanos(allocatedNanos),
|
|
659
|
+
allocationCount: collectedAllocations.length,
|
|
660
|
+
billedCostUsd: moneyFromNanos(billedNanos),
|
|
661
|
+
differenceUsd: 0,
|
|
662
|
+
},
|
|
663
|
+
release: expectedRelease,
|
|
664
|
+
schemaVersion: 1,
|
|
665
|
+
};
|
|
666
|
+
return validateAwsBillingActualEvidence({
|
|
667
|
+
...unsigned,
|
|
668
|
+
materialDigest: (0, model_js_1.performanceDigest)(unsigned),
|
|
669
|
+
});
|
|
670
|
+
}
|
|
671
|
+
function validateAwsBillingActualEvidence(value) {
|
|
672
|
+
onlyKeys(value, [
|
|
673
|
+
'aggregateCounts',
|
|
674
|
+
'allocations',
|
|
675
|
+
'authority',
|
|
676
|
+
'collectedAt',
|
|
677
|
+
'collection',
|
|
678
|
+
'collectorIdentity',
|
|
679
|
+
'environment',
|
|
680
|
+
'kind',
|
|
681
|
+
'materialDigest',
|
|
682
|
+
'period',
|
|
683
|
+
'queries',
|
|
684
|
+
'reconciliation',
|
|
685
|
+
'release',
|
|
686
|
+
'schemaVersion',
|
|
687
|
+
], 'billingEvidence');
|
|
688
|
+
if (value.kind !== 'ebk-aws-billing-actual-evidence' ||
|
|
689
|
+
value.schemaVersion !== 1) {
|
|
690
|
+
throw invalid('billingEvidence', 'must identify canonical v1 AWS billing-actual evidence');
|
|
691
|
+
}
|
|
692
|
+
onlyKeys(value.authority, ['collector', 'mode', 'provider'], 'billingEvidence/authority');
|
|
693
|
+
if (value.authority.collector !== 'ebk-aws-cost-explorer-v1' ||
|
|
694
|
+
value.authority.mode !== 'external-read-only' ||
|
|
695
|
+
value.authority.provider !== 'aws-billing-actual') {
|
|
696
|
+
throw invalid('billingEvidence/authority', 'must identify the managed read-only AWS Cost Explorer collector');
|
|
697
|
+
}
|
|
698
|
+
const environment = exactEnvironment(value.environment, 'billingEvidence/environment');
|
|
699
|
+
const period = exactPeriod(value.period, 'billingEvidence/period');
|
|
700
|
+
if (!(0, model_js_1.isIsoInstant)(value.collectedAt) ||
|
|
701
|
+
Date.parse(value.collectedAt) < Date.parse(period.end)) {
|
|
702
|
+
throw invalid('billingEvidence/collectedAt', 'must be at or after the closed billing period');
|
|
703
|
+
}
|
|
704
|
+
const expectedRelease = release(value.release, 'billingEvidence/release');
|
|
705
|
+
const collection = protectedCollectionIdentity(value.collection, 'billingEvidence/collection');
|
|
706
|
+
if (collection.sourceCommit !== expectedRelease.sourceCommit) {
|
|
707
|
+
throw invalid('billingEvidence/collection/sourceCommit', 'must equal the exact billing release source commit');
|
|
708
|
+
}
|
|
709
|
+
onlyKeys(value.collectorIdentity, ['callerIdentityRequestId'], 'billingEvidence/collectorIdentity');
|
|
710
|
+
requiredReference(value.collectorIdentity.callerIdentityRequestId, 'billingEvidence/collectorIdentity/callerIdentityRequestId');
|
|
711
|
+
if (!Array.isArray(value.queries) || value.queries.length !== 2) {
|
|
712
|
+
throw invalid('billingEvidence/queries', 'must contain exact allocation and total query evidence');
|
|
713
|
+
}
|
|
714
|
+
const expectedPurposes = ['allocation', 'total'];
|
|
715
|
+
const queries = value.queries.map((query, index) => {
|
|
716
|
+
const purpose = expectedPurposes[index];
|
|
717
|
+
onlyKeys(query, [
|
|
718
|
+
'operation',
|
|
719
|
+
'purpose',
|
|
720
|
+
'request',
|
|
721
|
+
'requestDigest',
|
|
722
|
+
'requestId',
|
|
723
|
+
'responseDigest',
|
|
724
|
+
], `billingEvidence/queries/${index}`);
|
|
725
|
+
const expectedRequest = canonicalRequest(environment, period, purpose);
|
|
726
|
+
if (query.operation !== 'ce:GetCostAndUsage' ||
|
|
727
|
+
query.purpose !== purpose ||
|
|
728
|
+
(0, model_js_1.performanceDigest)(query.request) !== (0, model_js_1.performanceDigest)(expectedRequest) ||
|
|
729
|
+
query.requestDigest !== (0, model_js_1.performanceDigest)(expectedRequest)) {
|
|
730
|
+
throw invalid(`billingEvidence/queries/${index}`, 'must bind the canonical exact-scope Cost Explorer request');
|
|
731
|
+
}
|
|
732
|
+
requiredReference(query.requestId, `billingEvidence/queries/${index}/requestId`);
|
|
733
|
+
digest(query.responseDigest, `billingEvidence/queries/${index}/responseDigest`);
|
|
734
|
+
return {
|
|
735
|
+
operation: 'ce:GetCostAndUsage',
|
|
736
|
+
purpose,
|
|
737
|
+
request: expectedRequest,
|
|
738
|
+
requestDigest: query.requestDigest,
|
|
739
|
+
requestId: query.requestId,
|
|
740
|
+
responseDigest: query.responseDigest,
|
|
741
|
+
};
|
|
742
|
+
});
|
|
743
|
+
if (queries[0].requestId === queries[1].requestId ||
|
|
744
|
+
queries[0].responseDigest === queries[1].responseDigest) {
|
|
745
|
+
throw invalid('billingEvidence/queries', 'allocation and total queries must retain distinct request and response identities');
|
|
746
|
+
}
|
|
747
|
+
if (!Array.isArray(value.allocations) ||
|
|
748
|
+
value.allocations.length === 0 ||
|
|
749
|
+
value.allocations.length > MAX_ALLOCATIONS) {
|
|
750
|
+
throw invalid('billingEvidence/allocations', `must contain between one and ${MAX_ALLOCATIONS} allocations`);
|
|
751
|
+
}
|
|
752
|
+
const allocations = value.allocations.map((allocation, index) => {
|
|
753
|
+
onlyKeys(allocation, ['allocatedCostUsd', 'allocationId', 'capabilityId', 'sourceRowDigest'], `billingEvidence/allocations/${index}`);
|
|
754
|
+
const amountNanos = moneyNanosFromNumber(allocation.allocatedCostUsd, `billingEvidence/allocations/${index}/allocatedCostUsd`);
|
|
755
|
+
if (amountNanos <= 0) {
|
|
756
|
+
throw invalid(`billingEvidence/allocations/${index}/allocatedCostUsd`, 'must be positive for a unit-cost capability');
|
|
757
|
+
}
|
|
758
|
+
return {
|
|
759
|
+
allocatedCostUsd: moneyFromNanos(amountNanos),
|
|
760
|
+
allocationId: requiredReference(allocation.allocationId, `billingEvidence/allocations/${index}/allocationId`),
|
|
761
|
+
capabilityId: requiredReference(allocation.capabilityId, `billingEvidence/allocations/${index}/capabilityId`),
|
|
762
|
+
sourceRowDigest: digest(allocation.sourceRowDigest, `billingEvidence/allocations/${index}/sourceRowDigest`),
|
|
763
|
+
};
|
|
764
|
+
});
|
|
765
|
+
if (new Set(allocations.map(({ allocationId }) => allocationId)).size !==
|
|
766
|
+
allocations.length ||
|
|
767
|
+
new Set(allocations.map(({ capabilityId }) => capabilityId)).size !==
|
|
768
|
+
allocations.length) {
|
|
769
|
+
throw invalid('billingEvidence/allocations', 'allocation and capability identifiers must each be unique');
|
|
770
|
+
}
|
|
771
|
+
const sortedAllocations = [...allocations].sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(left.allocationId, right.allocationId));
|
|
772
|
+
if ((0, model_js_1.performanceDigest)(allocations) !== (0, model_js_1.performanceDigest)(sortedAllocations)) {
|
|
773
|
+
throw invalid('billingEvidence/allocations', 'must be sorted by allocation identifier');
|
|
774
|
+
}
|
|
775
|
+
const aggregateCounts = aggregateInputs(value.aggregateCounts);
|
|
776
|
+
assertSameCapabilitySet(sortedAllocations, aggregateCounts);
|
|
777
|
+
onlyKeys(value.reconciliation, ['allocatedCostUsd', 'allocationCount', 'billedCostUsd', 'differenceUsd'], 'billingEvidence/reconciliation');
|
|
778
|
+
const allocatedNanos = sortedAllocations.reduce((sum, allocation, index) => sum +
|
|
779
|
+
moneyNanosFromNumber(allocation.allocatedCostUsd, `billingEvidence/allocations/${index}/allocatedCostUsd`), 0);
|
|
780
|
+
const reportedAllocatedNanos = moneyNanosFromNumber(value.reconciliation.allocatedCostUsd, 'billingEvidence/reconciliation/allocatedCostUsd');
|
|
781
|
+
const billedNanos = moneyNanosFromNumber(value.reconciliation.billedCostUsd, 'billingEvidence/reconciliation/billedCostUsd');
|
|
782
|
+
if (value.reconciliation.allocationCount !== sortedAllocations.length ||
|
|
783
|
+
value.reconciliation.differenceUsd !== 0 ||
|
|
784
|
+
reportedAllocatedNanos !== allocatedNanos ||
|
|
785
|
+
billedNanos !== allocatedNanos) {
|
|
786
|
+
throw invalid('billingEvidence/reconciliation', 'must exactly reconcile every allocation row to the billed total');
|
|
787
|
+
}
|
|
788
|
+
digest(value.materialDigest, 'billingEvidence/materialDigest');
|
|
789
|
+
const unsigned = {
|
|
790
|
+
aggregateCounts,
|
|
791
|
+
allocations: sortedAllocations,
|
|
792
|
+
authority: {
|
|
793
|
+
collector: 'ebk-aws-cost-explorer-v1',
|
|
794
|
+
mode: 'external-read-only',
|
|
795
|
+
provider: 'aws-billing-actual',
|
|
796
|
+
},
|
|
797
|
+
collectedAt: value.collectedAt,
|
|
798
|
+
collection,
|
|
799
|
+
collectorIdentity: {
|
|
800
|
+
callerIdentityRequestId: value.collectorIdentity
|
|
801
|
+
.callerIdentityRequestId,
|
|
802
|
+
},
|
|
803
|
+
environment,
|
|
804
|
+
kind: 'ebk-aws-billing-actual-evidence',
|
|
805
|
+
period,
|
|
806
|
+
queries,
|
|
807
|
+
reconciliation: {
|
|
808
|
+
allocatedCostUsd: moneyFromNanos(allocatedNanos),
|
|
809
|
+
allocationCount: sortedAllocations.length,
|
|
810
|
+
billedCostUsd: moneyFromNanos(billedNanos),
|
|
811
|
+
differenceUsd: 0,
|
|
812
|
+
},
|
|
813
|
+
release: expectedRelease,
|
|
814
|
+
schemaVersion: 1,
|
|
815
|
+
};
|
|
816
|
+
const expected = {
|
|
817
|
+
...unsigned,
|
|
818
|
+
materialDigest: (0, model_js_1.performanceDigest)(unsigned),
|
|
819
|
+
};
|
|
820
|
+
if (value.materialDigest !== expected.materialDigest) {
|
|
821
|
+
throw invalid('billingEvidence/materialDigest', 'does not match the canonical evidence bytes');
|
|
822
|
+
}
|
|
823
|
+
return expected;
|
|
824
|
+
}
|
|
825
|
+
//# sourceMappingURL=cost-collection.js.map
|