@epilot/blueprint-manifest-client 4.3.1 → 4.3.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/openapi.d.ts +6 -2
- package/dist/openapi.json +11 -2
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -259,7 +259,11 @@ declare namespace Components {
|
|
|
259
259
|
* c2d6cac8-bdd5-4ea2-8a6c-1cbdbe77b341
|
|
260
260
|
*/
|
|
261
261
|
BlueprintResourceID[];
|
|
262
|
-
|
|
262
|
+
/**
|
|
263
|
+
* Terraform addresses this resource references (for dependency-aware ignore)
|
|
264
|
+
*/
|
|
265
|
+
depends_on_addresses?: string[];
|
|
266
|
+
impact_on_install?: ("create" | "update" | "internal-update" | "no-op" | "delete" | "ignored")[];
|
|
263
267
|
/**
|
|
264
268
|
* Fields causing the updates / internal updates on a resource install
|
|
265
269
|
*/
|
|
@@ -1358,7 +1362,7 @@ declare namespace Components {
|
|
|
1358
1362
|
*/
|
|
1359
1363
|
installation_link?: string;
|
|
1360
1364
|
}
|
|
1361
|
-
export type PlanChanges = ("create" | "update" | "internal-update" | "no-op" | "delete")[];
|
|
1365
|
+
export type PlanChanges = ("create" | "update" | "internal-update" | "no-op" | "delete" | "ignored")[];
|
|
1362
1366
|
/**
|
|
1363
1367
|
* List of feature settings that must be enabled before installing the blueprint
|
|
1364
1368
|
* example:
|
package/dist/openapi.json
CHANGED
|
@@ -1789,6 +1789,13 @@
|
|
|
1789
1789
|
"$ref": "#/components/schemas/BlueprintResourceID"
|
|
1790
1790
|
}
|
|
1791
1791
|
},
|
|
1792
|
+
"depends_on_addresses": {
|
|
1793
|
+
"type": "array",
|
|
1794
|
+
"description": "Terraform addresses this resource references (for dependency-aware ignore)",
|
|
1795
|
+
"items": {
|
|
1796
|
+
"type": "string"
|
|
1797
|
+
}
|
|
1798
|
+
},
|
|
1792
1799
|
"impact_on_install": {
|
|
1793
1800
|
"type": "array",
|
|
1794
1801
|
"items": {
|
|
@@ -1798,7 +1805,8 @@
|
|
|
1798
1805
|
"update",
|
|
1799
1806
|
"internal-update",
|
|
1800
1807
|
"no-op",
|
|
1801
|
-
"delete"
|
|
1808
|
+
"delete",
|
|
1809
|
+
"ignored"
|
|
1802
1810
|
]
|
|
1803
1811
|
}
|
|
1804
1812
|
},
|
|
@@ -2437,7 +2445,8 @@
|
|
|
2437
2445
|
"update",
|
|
2438
2446
|
"internal-update",
|
|
2439
2447
|
"no-op",
|
|
2440
|
-
"delete"
|
|
2448
|
+
"delete",
|
|
2449
|
+
"ignored"
|
|
2441
2450
|
]
|
|
2442
2451
|
}
|
|
2443
2452
|
},
|