@intentius/chant-lexicon-azure 0.15.0 → 0.15.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/dist/integrity.json +2 -2
- package/dist/manifest.json +1 -1
- package/dist/op/activities/az-apply.d.ts +92 -24
- package/dist/op/activities/az-apply.d.ts.map +1 -1
- package/dist/op/activities/floci-az.d.ts +44 -0
- package/dist/op/activities/floci-az.d.ts.map +1 -0
- package/dist/op/activities/index.d.ts +4 -2
- package/dist/op/activities/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/op/activities/az-apply.test.ts +257 -41
- package/src/op/activities/az-apply.ts +315 -81
- package/src/op/activities/floci-az.test.ts +29 -0
- package/src/op/activities/floci-az.ts +123 -0
- package/src/op/activities/index.ts +29 -2
|
@@ -6,5 +6,32 @@
|
|
|
6
6
|
export { azGroupEnsure, azGroupDelete, azGroupEnsureCommand, azGroupDeleteCommand } from "./azure";
|
|
7
7
|
export type { AzGroupEnsureArgs, AzGroupDeleteArgs } from "./azure";
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
// floci-az (Azure emulator) lifecycle — the typed twin of aws's flociUp/Down, so
|
|
10
|
+
// the trio's Azure op boots/tears down the emulator as a modeled step, not a shell.
|
|
11
|
+
export {
|
|
12
|
+
flociAzUp,
|
|
13
|
+
flociAzDown,
|
|
14
|
+
flociAzRunCommand,
|
|
15
|
+
flociAzRmCommand,
|
|
16
|
+
flociAzExistsCommand,
|
|
17
|
+
flociAzHealthUrl,
|
|
18
|
+
flociAzEndpoint,
|
|
19
|
+
} from "./floci-az";
|
|
20
|
+
export type { FlociAzUpArgs, FlociAzDownArgs } from "./floci-az";
|
|
21
|
+
|
|
22
|
+
export {
|
|
23
|
+
azApply,
|
|
24
|
+
azDelete,
|
|
25
|
+
pruneArmOrphans,
|
|
26
|
+
deleteArmResource,
|
|
27
|
+
listGroupResources,
|
|
28
|
+
chantOwnershipTags,
|
|
29
|
+
isChantOwned,
|
|
30
|
+
evalArm,
|
|
31
|
+
evalArmString,
|
|
32
|
+
armResourceUrl,
|
|
33
|
+
armResourceBody,
|
|
34
|
+
armDependencies,
|
|
35
|
+
orderArmResources,
|
|
36
|
+
} from "./az-apply";
|
|
37
|
+
export type { AzApplyArgs, ArmEvalCtx, ArmResource, ArmListItem, AzHttp } from "./az-apply";
|