@go-to-k/cdkd 0.231.10 → 0.231.12
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/cli.js +5 -3
- package/dist/cli.js.map +1 -1
- package/dist/{deploy-engine-CINi8mJy.js → deploy-engine-BkPZar1R.js} +9 -5
- package/dist/deploy-engine-BkPZar1R.js.map +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/deploy-engine-CINi8mJy.js.map +0 -1
|
@@ -6631,6 +6631,10 @@ function cfnRefValueFromPhysicalId(resourceType, physicalId, stateLookup) {
|
|
|
6631
6631
|
const tableName = stateLookup(["TableName", "Name"]);
|
|
6632
6632
|
if (tableName) return tableName;
|
|
6633
6633
|
}
|
|
6634
|
+
if (resourceType === "AWS::Backup::BackupSelection" && stateLookup) {
|
|
6635
|
+
const selectionId = stateLookup(["SelectionId"]);
|
|
6636
|
+
if (selectionId) return selectionId;
|
|
6637
|
+
}
|
|
6634
6638
|
if (resourceType === "AWS::WAFv2::WebACL" && physicalId.startsWith("arn:")) {
|
|
6635
6639
|
const { id, name, scope } = parseWebACLArn(physicalId);
|
|
6636
6640
|
if (name && id) return `${name}|${id}|${scope}`;
|
|
@@ -9038,10 +9042,10 @@ var CloudControlProvider = class {
|
|
|
9038
9042
|
break;
|
|
9039
9043
|
case "AWS::Backup::BackupSelection":
|
|
9040
9044
|
if (!enriched["SelectionId"] || !enriched["BackupPlanId"]) {
|
|
9041
|
-
const
|
|
9042
|
-
if (
|
|
9043
|
-
if (!enriched["SelectionId"]) enriched["SelectionId"] =
|
|
9044
|
-
if (!enriched["BackupPlanId"]) enriched["BackupPlanId"] =
|
|
9045
|
+
const firstUnderscore = physicalId.indexOf("_");
|
|
9046
|
+
if (firstUnderscore > 0) {
|
|
9047
|
+
if (!enriched["SelectionId"]) enriched["SelectionId"] = physicalId.substring(0, firstUnderscore);
|
|
9048
|
+
if (!enriched["BackupPlanId"]) enriched["BackupPlanId"] = physicalId.substring(firstUnderscore + 1);
|
|
9045
9049
|
}
|
|
9046
9050
|
const model = await this.readBackupResourceModel(resourceType, physicalId);
|
|
9047
9051
|
if (model) {
|
|
@@ -14997,4 +15001,4 @@ var DeployEngine = class {
|
|
|
14997
15001
|
|
|
14998
15002
|
//#endregion
|
|
14999
15003
|
export { resolveSkipPrefix as $, DiffCalculator as A, buildDockerImage as B, findActionableSilentDrops as C, refStateLookupFromResource as D, cfnRefValueFromPhysicalId as E, rebuildClientForBucketRegion as F, AssetManifestLoader as G, getDockerCmd as H, shouldRetainResource as I, synthesisStatusMessage as J, getDockerImageBySourceHash as K, AssetPublisher as L, TemplateParser as M, LockManager as N, WAFv2WebACLProvider as O, S3StateBackend as P, resolveCaptureObservedState as Q, stringifyValue as R, ProviderRegistry as S, IntrinsicFunctionResolver as T, runDockerForeground as U, formatDockerLoginError as V, runDockerStreaming as W, getLegacyStateBucketName as X, getDefaultStateBucketName as Y, resolveApp as Z, green as _, withRetry as a, MIGRATE_TMP_PREFIX as at, IAMRoleProvider as b, computeImplicitDeleteEdges as c, AssemblyReader as ct, isStatefulRecreateTargetSync as d, resolveStateBucketWithDefault as et, renderStatefulReason as f, gray as g, cyan as h, withResourceDeadline as i, CFN_TEMPLATE_URL_LIMIT as it, DagBuilder as j, applyRoleArnIfSet as k, extractDeploymentEventError as l, clearBucketRegionCache as lt, bold as m, DEFAULT_RESOURCE_WARN_AFTER_MS as n, warnDeprecatedNoPrefixCliFlag as nt, isRetryableTransientError as o, findLargeInlineResources as ot, formatResourceLine as p, Synthesizer as q, DeployEngine as r, CFN_TEMPLATE_BODY_LIMIT as rt, IMPLICIT_DELETE_DEPENDENCIES as s, uploadCfnTemplate as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, resolveStateBucketWithDefaultAndSource as tt, MULTI_REGION_RECREATE_BLOCKED_TYPES as u, resolveBucketRegion as ut, red as v, CloudControlProvider as w, collectInlinePolicyNamesManagedBySiblings as x, yellow as y, WorkGraph as z };
|
|
15000
|
-
//# sourceMappingURL=deploy-engine-
|
|
15004
|
+
//# sourceMappingURL=deploy-engine-BkPZar1R.js.map
|