@go-to-k/cdkd 0.283.36 → 0.284.0

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.
@@ -15269,7 +15269,7 @@ var CloudControlProvider = class {
15269
15269
  if (context?.finalSnapshotIdentifier !== void 0) throw new ProvisioningError(`${logicalId} (${resourceType}) requires a final snapshot (DeletionPolicy: Snapshot), but the Cloud Control API delete route has no final-snapshot parameter. Re-run with --skip-final-snapshot after snapshotting manually, or retain the resource.`, resourceType, logicalId, physicalId);
15270
15270
  if (context?.removeProtection === true && resourceType === "AWS::AutoScaling::AutoScalingGroup") {
15271
15271
  this.logger.debug(`Delegating protected AutoScalingGroup ${logicalId} delete to the SDK ASGProvider (Cloud Control cannot force-delete a protected ASG)`);
15272
- const { ASGProvider } = await import("./asg-provider-BruE_3F2.js").then((n) => n.n);
15272
+ const { ASGProvider } = await import("./asg-provider-CMvwsTc7.js").then((n) => n.n);
15273
15273
  return await new ASGProvider().delete(logicalId, physicalId, resourceType, _properties, context);
15274
15274
  }
15275
15275
  const isProtectedEc2Instance = context?.removeProtection === true && resourceType === "AWS::EC2::Instance";
@@ -19839,18 +19839,27 @@ var IAMRoleProvider = class {
19839
19839
  const reason = newRoleName !== physicalId ? "RoleName" : "Path";
19840
19840
  this.logger.debug(`${reason} changed, replacing role: ${physicalId} (${reason}: ${reason === "RoleName" ? `${physicalId} -> ${newRoleName}` : `${oldPath} -> ${newPath}`})`);
19841
19841
  const createResult = await this.create(logicalId, resourceType, properties);
19842
+ let orphanReason;
19842
19843
  try {
19843
19844
  const deleteResult = await this.delete(logicalId, physicalId, resourceType);
19844
- if (deleteResult?.outcome === "skipped") this.logger.warn(`Skipped deleting old role ${physicalId} during replacement: ${deleteResult.reason}. The old role may be orphaned and require manual cleanup.`);
19845
+ if (deleteResult?.outcome === "skipped") {
19846
+ orphanReason = `old role ${physicalId} was not deleted: ${deleteResult.reason}`;
19847
+ this.logger.warn(`Skipped deleting old role ${physicalId} during replacement: ${deleteResult.reason}. The old role may be orphaned and require manual cleanup.`);
19848
+ }
19845
19849
  } catch (error) {
19850
+ orphanReason = `old role ${physicalId} could not be deleted: ${String(error)}`;
19846
19851
  this.logger.warn(`Failed to delete old role ${physicalId} during replacement: ${String(error)}. The old role may be orphaned and require manual cleanup.`);
19847
19852
  }
19848
- const result = {
19853
+ const base = {
19849
19854
  physicalId: createResult.physicalId,
19850
- wasReplaced: true
19855
+ wasReplaced: true,
19856
+ ...createResult.attributes ? { attributes: createResult.attributes } : {}
19851
19857
  };
19852
- if (createResult.attributes) result.attributes = createResult.attributes;
19853
- return result;
19858
+ return orphanReason !== void 0 ? {
19859
+ ...base,
19860
+ outcome: "partial",
19861
+ reason: orphanReason
19862
+ } : base;
19854
19863
  }
19855
19864
  try {
19856
19865
  const updateParams = { RoleName: physicalId };
@@ -21775,6 +21784,62 @@ function deleteSkippedMessage(logicalId, physicalId, reason, duringClause) {
21775
21784
  return `cdkd could not address ${logicalId} (${physicalId}) ${duringClause}, so it was NOT deleted and may still exist: ${reason}`;
21776
21785
  }
21777
21786
 
21787
+ //#endregion
21788
+ //#region src/deployment/update-outcome.ts
21789
+ /**
21790
+ * Consumption of {@link ResourceUpdateResult}'s `'partial'` arm (issue
21791
+ * [#1819](https://github.com/go-to-k/cdkd/issues/1819)) — the twin of
21792
+ * {@link ./delete-outcome.ts} for the UPDATE verb.
21793
+ *
21794
+ * `ResourceProvider.update` gained an outcome channel whose `'partial'` arm
21795
+ * means **the resource was updated, and something the update was responsible
21796
+ * for retiring survives and is no longer tracked by cdkd**. The four providers
21797
+ * that implement a REPLACEMENT inside `update()` by pairing create and delete
21798
+ * are the producers; before the channel existed they emitted a `logger.warn`
21799
+ * and the deploy exited 0 with the old resource alive and out of state.
21800
+ *
21801
+ * **The module must stay a LEAF — no imports beyond the type, ever.** Same
21802
+ * reason as `delete-outcome.ts`: the deploy engine, the drift-revert command
21803
+ * and the rollback executor all consume it, and those already sit on a dense
21804
+ * import ring. A helper that pulled anything else in would close it.
21805
+ */
21806
+ /**
21807
+ * The `reason` of a `'partial'` update outcome, or `undefined` when the
21808
+ * provider reported a clean update (`{ outcome: 'updated' }` or the
21809
+ * back-compat omission ~80 providers still use).
21810
+ *
21811
+ * A function rather than an inline `result.outcome === 'partial'` test at
21812
+ * three call sites, so the back-compat reading lives in ONE place — the same
21813
+ * call {@link ./delete-outcome.ts} made, and for the same reason: the arm is
21814
+ * optional, so a caller comparing by hand can silently test nothing.
21815
+ */
21816
+ function updatePartialReason(result) {
21817
+ if (!result || result.outcome !== "partial") return void 0;
21818
+ if (typeof result.reason !== "string") return UNSPECIFIED_PARTIAL_REASON;
21819
+ const trimmed = result.reason.trim();
21820
+ return trimmed === "" ? UNSPECIFIED_PARTIAL_REASON : trimmed;
21821
+ }
21822
+ /**
21823
+ * The one-line status suffix for a partial update, matching the destroy path's
21824
+ * `skipped (<reason>)` shape so the two verbs read the same way.
21825
+ *
21826
+ * Deliberately NOT the word `skipped`: the row's own resource WAS updated, and
21827
+ * `RESOURCE_SKIPPED`'s documented invariant is "the resource this row names was
21828
+ * not destroyed". Calling the row skipped would be false and would put the
21829
+ * event store at odds with its own contract.
21830
+ */
21831
+ /**
21832
+ * Stand-in for a `'partial'` outcome whose producer supplied no usable reason.
21833
+ *
21834
+ * Says the cause is unknown rather than inventing one: the row still has to
21835
+ * announce that something survived, and a confident-sounding wrong cause is
21836
+ * worse than an admitted gap.
21837
+ */
21838
+ const UNSPECIFIED_PARTIAL_REASON = "provider reported a partial update without a reason";
21839
+ function updatePartialMessage(reason) {
21840
+ return `partial (${reason})`;
21841
+ }
21842
+
21778
21843
  //#endregion
21779
21844
  //#region src/deployment/rollback-executor.ts
21780
21845
  /**
@@ -22478,7 +22543,9 @@ async function replaySingle(op, stateResources, stackName, ctx, resolver, orphan
22478
22543
  currentProps ?? {}
22479
22544
  ], op.logicalId, logger, isInterrupted);
22480
22545
  stateResources[op.logicalId] = redactRollbackRecord(recordAfterRollbackUpdate(previousState, revertResult), secrets, previousState.properties);
22481
- logger.info(` Rollback: ${op.logicalId} restored successfully`);
22546
+ const rollbackPartial = updatePartialReason(revertResult);
22547
+ if (rollbackPartial !== void 0) logger.warn(` Rollback: ${op.logicalId} restored, ${updatePartialMessage(rollbackPartial)}`);
22548
+ else logger.info(` Rollback: ${op.logicalId} restored successfully`);
22482
22549
  await afterOp?.(op.logicalId);
22483
22550
  ctx.recordEvent?.({
22484
22551
  eventType: "ROLLBACK_RESOURCE_SUCCEEDED",
@@ -22486,7 +22553,8 @@ async function replaySingle(op, stateResources, stackName, ctx, resolver, orphan
22486
22553
  operation: "UPDATE",
22487
22554
  logicalId: op.logicalId,
22488
22555
  resourceType: op.resourceType,
22489
- ...op.provisionedBy && { provisionedBy: op.provisionedBy }
22556
+ ...op.provisionedBy && { provisionedBy: op.provisionedBy },
22557
+ ...rollbackPartial !== void 0 && { reason: rollbackPartial }
22490
22558
  });
22491
22559
  return;
22492
22560
  }
@@ -22618,7 +22686,9 @@ async function replayFailedOperations(failedOps, stateResources, stackName, ctx,
22618
22686
  attemptedProps ?? {}
22619
22687
  ], op.logicalId, logger, options.isInterrupted);
22620
22688
  stateResources[op.logicalId] = redactRollbackRecord(recordAfterRollbackUpdate(prev, revertFailedResult), secrets, prev.properties);
22621
- logger.info(` Rollback: ${op.logicalId} reverted successfully`);
22689
+ const revertFailedPartial = updatePartialReason(revertFailedResult);
22690
+ if (revertFailedPartial !== void 0) logger.warn(` Rollback: ${op.logicalId} reverted, ${updatePartialMessage(revertFailedPartial)}`);
22691
+ else logger.info(` Rollback: ${op.logicalId} reverted successfully`);
22622
22692
  await options.afterOp?.(op.logicalId);
22623
22693
  ctx.recordEvent?.({
22624
22694
  eventType: "ROLLBACK_RESOURCE_SUCCEEDED",
@@ -22626,7 +22696,8 @@ async function replayFailedOperations(failedOps, stateResources, stackName, ctx,
22626
22696
  operation: "UPDATE",
22627
22697
  logicalId: op.logicalId,
22628
22698
  resourceType: op.resourceType,
22629
- ...op.provisionedBy && { provisionedBy: op.provisionedBy }
22699
+ ...op.provisionedBy && { provisionedBy: op.provisionedBy },
22700
+ ...revertFailedPartial !== void 0 && { reason: revertFailedPartial }
22630
22701
  });
22631
22702
  break;
22632
22703
  }
@@ -22743,7 +22814,7 @@ const FLUSH_INTERVAL_MS = 2e3;
22743
22814
  const FLUSH_EVENT_THRESHOLD = 50;
22744
22815
  /** Build-time cdkd version, with a dev fallback for non-built contexts. */
22745
22816
  function getCdkdVersion() {
22746
- return "0.283.36";
22817
+ return "0.284.0";
22747
22818
  }
22748
22819
  /**
22749
22820
  * Generate a time-sortable unique run id, e.g.
@@ -23854,6 +23925,7 @@ var DeployEngine = class {
23854
23925
  updated: 0,
23855
23926
  deleted: 0,
23856
23927
  deleteSkipped: 0,
23928
+ updatePartial: 0,
23857
23929
  unchanged: Object.keys(currentState.resources).length,
23858
23930
  durationMs: Date.now() - startTime,
23859
23931
  outputs: this.buildDisplayOutputs(template, persistedOutputs),
@@ -23872,6 +23944,7 @@ var DeployEngine = class {
23872
23944
  updated: updateChanges.length,
23873
23945
  deleted: deleteChanges.length,
23874
23946
  deleteSkipped: 0,
23947
+ updatePartial: 0,
23875
23948
  unchanged: this.diffCalculator.filterByType(changes, "NO_CHANGE").length,
23876
23949
  durationMs: Date.now() - startTime,
23877
23950
  attributeFallbackCount: this.resolver.getPhysicalIdFallbackCount()
@@ -23895,6 +23968,7 @@ var DeployEngine = class {
23895
23968
  updated: actualCounts.updated,
23896
23969
  deleted: actualCounts.deleted,
23897
23970
  deleteSkipped: actualCounts.deleteSkipped,
23971
+ updatePartial: actualCounts.updatePartial,
23898
23972
  unchanged: unchangedCount,
23899
23973
  durationMs,
23900
23974
  outputs: this.buildDisplayOutputs(template, newState.outputs ?? {}),
@@ -23929,7 +24003,8 @@ var DeployEngine = class {
23929
24003
  updated: 0,
23930
24004
  deleted: 0,
23931
24005
  skipped: 0,
23932
- deleteSkipped: 0
24006
+ deleteSkipped: 0,
24007
+ updatePartial: 0
23933
24008
  };
23934
24009
  const completedOperations = [];
23935
24010
  const failedOperations = [];
@@ -24348,9 +24423,14 @@ var DeployEngine = class {
24348
24423
  ...labelRouting && { provisionedBy: labelRouting }
24349
24424
  });
24350
24425
  let deleteSkipped;
24426
+ let updatePartial;
24427
+ const physicalIdBeforeUpdate = stateResources[logicalId]?.physicalId;
24428
+ const provisionedByBeforeUpdate = stateResources[logicalId]?.provisionedBy;
24351
24429
  try {
24352
24430
  await withResourceDeadline(async () => {
24353
- deleteSkipped = (await this.provisionResourceBody(logicalId, change, stateResources, stackName, template, parameterValues, conditions, counts, progress))?.deleteSkipped;
24431
+ const bodyResult = await this.provisionResourceBody(logicalId, change, stateResources, stackName, template, parameterValues, conditions, counts, progress);
24432
+ deleteSkipped = bodyResult?.deleteSkipped;
24433
+ updatePartial = bodyResult?.updatePartial;
24354
24434
  }, {
24355
24435
  warnAfterMs,
24356
24436
  timeoutMs,
@@ -24378,6 +24458,17 @@ var DeployEngine = class {
24378
24458
  });
24379
24459
  return { deleteSkipped };
24380
24460
  }
24461
+ if (updatePartial !== void 0) this.recordEvent({
24462
+ eventType: "RESOURCE_SKIPPED",
24463
+ stackName,
24464
+ operation: eventOp,
24465
+ logicalId,
24466
+ resourceType,
24467
+ ...provisionedByBeforeUpdate ? { provisionedBy: provisionedByBeforeUpdate } : labelRouting && { provisionedBy: labelRouting },
24468
+ ...physicalIdBeforeUpdate && { physicalId: physicalIdBeforeUpdate },
24469
+ reason: updatePartial,
24470
+ durationMs: Date.now() - resourceStartedAt
24471
+ });
24381
24472
  this.recordEvent({
24382
24473
  eventType: "RESOURCE_SUCCEEDED",
24383
24474
  stackName,
@@ -24809,10 +24900,16 @@ var DeployEngine = class {
24809
24900
  };
24810
24901
  const updateCaptureSiblings = await this.buildObservedCaptureSiblings(resourceType, logicalId, result.physicalId, template, stateResources, stackName, parameterValues, conditions);
24811
24902
  this.kickOffObservedCapture(updateProvider, logicalId, result.physicalId, resourceType, resolvedProps, updateCaptureSiblings);
24812
- if (counts) counts.updated++;
24903
+ const updatePartial = updatePartialReason(result);
24904
+ if (counts) if (updatePartial !== void 0) counts.updatePartial++;
24905
+ else counts.updated++;
24813
24906
  if (progress) progress.current++;
24814
24907
  const updatePrefix = progress ? `[${progress.current}/${progress.total}] ` : " ";
24815
24908
  renderer.removeTask(logicalId);
24909
+ if (updatePartial !== void 0) {
24910
+ this.logger.warn(`${updatePrefix}${formatResourceLine("updated", logicalId, resourceType)} ` + updatePartialMessage(updatePartial));
24911
+ return { updatePartial };
24912
+ }
24816
24913
  this.logger.info(`${updatePrefix}${formatResourceLine("updated", logicalId, resourceType)}`);
24817
24914
  }
24818
24915
  break;
@@ -25184,5 +25281,5 @@ var DeployEngine = class {
25184
25281
  };
25185
25282
 
25186
25283
  //#endregion
25187
- export { getAccountInfo as $, SynthesisError as $n, formatDockerLoginError as $t, cyan as A, resolveBucketRegion as An, TemplateParser as At, stateKeySecretExposure as B, LocalInvokeBuildError as Bn, loadPublishableAssetManifest as Bt, makeCanonicalizePropertiesFn as C, expectedOwnerParam as Cn, s3BucketWebsiteUrl as Ct, renderStatefulReason as D, AssemblyReader as Dn, describeTypeWithThrottleRetry as Dt, isStatefulRecreateTargetSync as E, derivePartitionAndUrlSuffix as En, INTRINSIC_KEYS as Et, collectDeclaredOutputNames as F, AssetError as Fn, AssetPublisher as Ft, findActionableSilentDrops as G, NestedStackChildDirectDestroyError as Gn, BOOTSTRAP_MARKER_PREFIX as Gt, collectInlinePolicyNamesManagedBySiblings as H, LocalStartServiceError as Hn, escapeRegExp$1 as Ht, collectPublishedOutputNames as I, CdkdError as In, stringifyValue as It, slowCcOperationTimeoutMs as J, ResourceTimeoutError as Jn, parseBootstrapMarker as Jt, findSilentDropProperties as K, PartialFailureError as Kn, ensureAssetStorage as Kt, exportAliasCollisionScrubWarning as L, ConfigError as Ln, WorkGraph as Lt, green as M, getAwsClients as Mn, S3StateBackend as Mt, red as N, resetAwsClients as Nn, rebuildClientForBucketRegion as Nt, formatResourceLine as O, processStackMessages as On, withRetry as Ot, yellow as P, setAwsClients as Pn, shouldRetainResource as Pt, cfnRefValueFromPhysicalId as Q, StateError as Qn, buildDockerImage as Qt, isExportAliasCollision as R, DependencyError as Rn, buildAssetRedirectMap as Rt, unsupportedFinalSnapshotError as S, uploadCfnTemplate as Sn, s3BucketRegionalDomainName as St, MULTI_REGION_RECREATE_BLOCKED_TYPES as T, canonicalizeRegion as Tn, DiffCalculator as Tt, clearOnUpdateRemoval as U, LockError as Un, stripControlChars as Ut, IAMRoleProvider as V, LocalMigrateError as Vn, rewriteTemplateAssetReferences as Vt, ProviderRegistry as W, MissingCdkCliError as Wn, AssetModeResolver as Wt, isTerminationProtectionPropagationError as X, StackHasActiveImportsError as Xn, validateContainerRepoName as Xt, disableInstanceApiTermination as Y, ResourceUpdateNotSupportedError as Yn, validateAssetBucketName as Yt, IntrinsicFunctionResolver as Z, StackTerminationProtectionError as Zn, buildDenyExternalAccessPolicy as Zt, buildFinalSnapshotIdentifier as _, warnDeprecatedNoPrefixCliFlag as _n, redactSecretsForState as _t, DeploymentEventsStore as a, Synthesizer as an, isRetryableTransientError as ar, coerceCfnBoolean as at, isFinalSnapshotError as b, MIGRATE_TMP_PREFIX as bn, s3BucketDomainName as bt, replayFailedOperations as c, getLegacyStateBucketName as cn, __exportAll as cr, readConfigString as ct, deleteSkipReason as d, resolveCaptureObservedState as dn, requireConfigObject as dt, getDockerCmd as en, formatError as er, refStateLookupFromResource as et, withResourceDeadline as f, resolveSkipPrefix as fn, requireConfigString as ft, PRE_DELETE_SNAPSHOT_TYPES as g, stateBucketExistenceConfirmed as gn, maskSecretsInText as gt, ATOMIC_FINAL_SNAPSHOT_TYPES as h, resolveUseCdkBootstrapAssets as hn, TEMPLATE_SOURCED_RULES as ht, DeploymentEventsReader as i, getDockerImageBySourceHash as in, isMarkedNonRetryable as ir, assertRegionMatch as it, gray as j, AwsClients as jn, LockManager as jt, bold as k, clearBucketRegionCache as kn, DagBuilder as kt, replayRollback as l, resolveApp as ln, replayWarn as lt, computeImplicitDeleteEdges as m, resolveStateBucketWithDefaultAndSource as mn, STATE_SOURCED_READBACK_RULES as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, runDockerStreaming as nn, normalizeAwsError as nr, normalizeAwsTagsToCfn as nt, planFailedOps as o, synthesisStatusMessage as on, isThrottlingError as or, configBooleanRefusal as ot, IMPLICIT_DELETE_DEPENDENCIES as p, resolveStateBucketWithDefault as pn, STATE_SOURCED_CROSS_GENERATION_RULES as pt, CloudControlProvider as q, ProvisioningError as qn, getBootstrapMarkerKey as qt, DeployEngine as r, AssetManifestLoader as rn, withErrorHandling as rr, resolveExplicitPhysicalId as rt, planRollback as s, getDefaultStateBucketName as sn, markNonRetryable as sr, configStringRefusal as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, runDockerForeground as tn, isCdkdError as tr, WAFv2WebACLProvider as tt, UNSPECIFIED_SKIP_REASON as u, resolveAutoAssetStorage as un, requireConfigArray as ut, ccRoutedFinalSnapshotError as v, CFN_TEMPLATE_BODY_LIMIT as vn, scrubResourceRecord as vt, extractDeploymentEventError as w, PARTITION_TABLE as wn, applyRoleArnIfSet as wt, refusesFinalSnapshot as x, findLargeInlineResources as xn, s3BucketDualStackDomainName as xt, createPreDeleteFinalSnapshot as y, CFN_TEMPLATE_URL_LIMIT as yn, s3BucketArn as yt, secretBearingStateKeyWarning as z, DeployCancelledError as zn, createAssetRedirectResolver as zt };
25188
- //# sourceMappingURL=deploy-engine-Bhq_JPCc.js.map
25284
+ export { IntrinsicFunctionResolver as $, StackTerminationProtectionError as $n, buildDenyExternalAccessPolicy as $t, formatResourceLine as A, processStackMessages as An, withRetry as At, isExportAliasCollision as B, DependencyError as Bn, buildAssetRedirectMap as Bt, refusesFinalSnapshot as C, findLargeInlineResources as Cn, s3BucketDualStackDomainName as Ct, MULTI_REGION_RECREATE_BLOCKED_TYPES as D, canonicalizeRegion as Dn, DiffCalculator as Dt, extractDeploymentEventError as E, PARTITION_TABLE as En, applyRoleArnIfSet as Et, red as F, resetAwsClients as Fn, rebuildClientForBucketRegion as Ft, clearOnUpdateRemoval as G, LockError as Gn, stripControlChars as Gt, stateKeySecretExposure as H, LocalInvokeBuildError as Hn, loadPublishableAssetManifest as Ht, yellow as I, setAwsClients as In, shouldRetainResource as It, findSilentDropProperties as J, PartialFailureError as Jn, ensureAssetStorage as Jt, ProviderRegistry as K, MissingCdkCliError as Kn, AssetModeResolver as Kt, collectDeclaredOutputNames as L, AssetError as Ln, AssetPublisher as Lt, cyan as M, resolveBucketRegion as Mn, TemplateParser as Mt, gray as N, AwsClients as Nn, LockManager as Nt, isStatefulRecreateTargetSync as O, derivePartitionAndUrlSuffix as On, INTRINSIC_KEYS as Ot, green as P, getAwsClients as Pn, S3StateBackend as Pt, isTerminationProtectionPropagationError as Q, StackHasActiveImportsError as Qn, validateContainerRepoName as Qt, collectPublishedOutputNames as R, CdkdError as Rn, stringifyValue as Rt, isFinalSnapshotError as S, MIGRATE_TMP_PREFIX as Sn, s3BucketDomainName as St, makeCanonicalizePropertiesFn as T, expectedOwnerParam as Tn, s3BucketWebsiteUrl as Tt, IAMRoleProvider as U, LocalMigrateError as Un, rewriteTemplateAssetReferences as Ut, secretBearingStateKeyWarning as V, DeployCancelledError as Vn, createAssetRedirectResolver as Vt, collectInlinePolicyNamesManagedBySiblings as W, LocalStartServiceError as Wn, escapeRegExp$1 as Wt, slowCcOperationTimeoutMs as X, ResourceTimeoutError as Xn, parseBootstrapMarker as Xt, CloudControlProvider as Y, ProvisioningError as Yn, getBootstrapMarkerKey as Yt, disableInstanceApiTermination as Z, ResourceUpdateNotSupportedError as Zn, validateAssetBucketName as Zt, ATOMIC_FINAL_SNAPSHOT_TYPES as _, resolveUseCdkBootstrapAssets as _n, TEMPLATE_SOURCED_RULES as _t, DeploymentEventsStore as a, AssetManifestLoader as an, withErrorHandling as ar, resolveExplicitPhysicalId as at, ccRoutedFinalSnapshotError as b, CFN_TEMPLATE_BODY_LIMIT as bn, scrubResourceRecord as bt, replayFailedOperations as c, synthesisStatusMessage as cn, isThrottlingError as cr, configBooleanRefusal as ct, updatePartialReason as d, resolveApp as dn, replayWarn as dt, buildDockerImage as en, StateError as er, cfnRefValueFromPhysicalId as et, UNSPECIFIED_SKIP_REASON as f, resolveAutoAssetStorage as fn, requireConfigArray as ft, computeImplicitDeleteEdges as g, resolveStateBucketWithDefaultAndSource as gn, STATE_SOURCED_READBACK_RULES as gt, IMPLICIT_DELETE_DEPENDENCIES as h, resolveStateBucketWithDefault as hn, STATE_SOURCED_CROSS_GENERATION_RULES as ht, DeploymentEventsReader as i, runDockerStreaming as in, normalizeAwsError as ir, normalizeAwsTagsToCfn as it, bold as j, clearBucketRegionCache as jn, DagBuilder as jt, renderStatefulReason as k, AssemblyReader as kn, describeTypeWithThrottleRetry as kt, replayRollback as l, getDefaultStateBucketName as ln, markNonRetryable as lr, configStringRefusal as lt, withResourceDeadline as m, resolveSkipPrefix as mn, requireConfigString as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, getDockerCmd as nn, formatError as nr, refStateLookupFromResource as nt, planFailedOps as o, getDockerImageBySourceHash as on, isMarkedNonRetryable as or, assertRegionMatch as ot, deleteSkipReason as p, resolveCaptureObservedState as pn, requireConfigObject as pt, findActionableSilentDrops as q, NestedStackChildDirectDestroyError as qn, BOOTSTRAP_MARKER_PREFIX as qt, DeployEngine as r, runDockerForeground as rn, isCdkdError as rr, WAFv2WebACLProvider as rt, planRollback as s, Synthesizer as sn, isRetryableTransientError as sr, coerceCfnBoolean as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, formatDockerLoginError as tn, SynthesisError as tr, getAccountInfo as tt, updatePartialMessage as u, getLegacyStateBucketName as un, __exportAll as ur, readConfigString as ut, PRE_DELETE_SNAPSHOT_TYPES as v, stateBucketExistenceConfirmed as vn, maskSecretsInText as vt, unsupportedFinalSnapshotError as w, uploadCfnTemplate as wn, s3BucketRegionalDomainName as wt, createPreDeleteFinalSnapshot as x, CFN_TEMPLATE_URL_LIMIT as xn, s3BucketArn as xt, buildFinalSnapshotIdentifier as y, warnDeprecatedNoPrefixCliFlag as yn, redactSecretsForState as yt, exportAliasCollisionScrubWarning as z, ConfigError as zn, WorkGraph as zt };
25285
+ //# sourceMappingURL=deploy-engine-C7JEL0Mg.js.map