@go-to-k/cdkd 0.280.9 → 0.280.11
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/{asg-provider-Bme2nsK8.js → asg-provider-CN0zTvF5.js} +2 -2
- package/dist/{asg-provider-Bme2nsK8.js.map → asg-provider-CN0zTvF5.js.map} +1 -1
- package/dist/cli.js +181 -15
- package/dist/cli.js.map +1 -1
- package/dist/{deploy-engine-DyvrbmXh.js → deploy-engine-DHGLmPWH.js} +29 -18
- package/dist/deploy-engine-DHGLmPWH.js.map +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/deploy-engine-DyvrbmXh.js.map +0 -1
|
@@ -7843,7 +7843,8 @@ const OTHER_TRANSIENT_ERROR_MESSAGE_PATTERNS = [
|
|
|
7843
7843
|
"because it is in use",
|
|
7844
7844
|
"Rate exceeded",
|
|
7845
7845
|
"is marked disabled for mutation",
|
|
7846
|
-
"There is an operation running on the Cluster"
|
|
7846
|
+
"There is an operation running on the Cluster",
|
|
7847
|
+
"Unable to complete operation due to concurrent modification"
|
|
7847
7848
|
];
|
|
7848
7849
|
/**
|
|
7849
7850
|
* Patterns that mark an AWS error as a transient/retryable failure.
|
|
@@ -9364,6 +9365,17 @@ function requireConfigArray(value, path, options) {
|
|
|
9364
9365
|
}
|
|
9365
9366
|
return value;
|
|
9366
9367
|
}
|
|
9368
|
+
function requireConfigObject(value, path, options) {
|
|
9369
|
+
if (!isPlainObject$1(value)) {
|
|
9370
|
+
const detail = `(got ${describe(value)}) — check for an unresolved intrinsic or a mis-nested template value`;
|
|
9371
|
+
if (options?.onUnusable) {
|
|
9372
|
+
options.onUnusable(`${path} must be an object ${detail}. Leaving this configuration unapplied here; the same value is REFUSED on a template-path create`);
|
|
9373
|
+
return;
|
|
9374
|
+
}
|
|
9375
|
+
throw new Error(`${path} must be an object ${detail}`);
|
|
9376
|
+
}
|
|
9377
|
+
return value;
|
|
9378
|
+
}
|
|
9367
9379
|
/**
|
|
9368
9380
|
* A plain object, i.e. something a CFn config block can legitimately be.
|
|
9369
9381
|
* Arrays are excluded on purpose: an array where an object belongs is one of
|
|
@@ -12744,7 +12756,7 @@ var CloudControlProvider = class {
|
|
|
12744
12756
|
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);
|
|
12745
12757
|
if (context?.removeProtection === true && resourceType === "AWS::AutoScaling::AutoScalingGroup") {
|
|
12746
12758
|
this.logger.debug(`Delegating protected AutoScalingGroup ${logicalId} delete to the SDK ASGProvider (Cloud Control cannot force-delete a protected ASG)`);
|
|
12747
|
-
const { ASGProvider } = await import("./asg-provider-
|
|
12759
|
+
const { ASGProvider } = await import("./asg-provider-CN0zTvF5.js").then((n) => n.n);
|
|
12748
12760
|
await new ASGProvider().delete(logicalId, physicalId, resourceType, _properties, context);
|
|
12749
12761
|
return;
|
|
12750
12762
|
}
|
|
@@ -14253,26 +14265,25 @@ const PROPERTY_COVERAGE_BY_TYPE = /* @__PURE__ */ new Map([
|
|
|
14253
14265
|
["AWS::ApiGatewayV2::Integration", {
|
|
14254
14266
|
handled: /* @__PURE__ */ new Set([
|
|
14255
14267
|
"ApiId",
|
|
14268
|
+
"ConnectionId",
|
|
14269
|
+
"ConnectionType",
|
|
14270
|
+
"ContentHandlingStrategy",
|
|
14271
|
+
"CredentialsArn",
|
|
14256
14272
|
"Description",
|
|
14257
14273
|
"IntegrationMethod",
|
|
14274
|
+
"IntegrationSubtype",
|
|
14258
14275
|
"IntegrationType",
|
|
14259
14276
|
"IntegrationUri",
|
|
14277
|
+
"PassthroughBehavior",
|
|
14260
14278
|
"PayloadFormatVersion",
|
|
14261
14279
|
"RequestParameters",
|
|
14262
|
-
"
|
|
14280
|
+
"RequestTemplates",
|
|
14281
|
+
"ResponseParameters",
|
|
14282
|
+
"TemplateSelectionExpression",
|
|
14283
|
+
"TimeoutInMillis",
|
|
14284
|
+
"TlsConfig"
|
|
14263
14285
|
]),
|
|
14264
|
-
silentDrop: /* @__PURE__ */ new Map(
|
|
14265
|
-
["ConnectionId", "not yet implemented by cdkd"],
|
|
14266
|
-
["ConnectionType", "not yet implemented by cdkd"],
|
|
14267
|
-
["ContentHandlingStrategy", "not yet implemented by cdkd"],
|
|
14268
|
-
["CredentialsArn", "not yet implemented by cdkd"],
|
|
14269
|
-
["IntegrationSubtype", "not yet implemented by cdkd"],
|
|
14270
|
-
["PassthroughBehavior", "not yet implemented by cdkd"],
|
|
14271
|
-
["RequestTemplates", "not yet implemented by cdkd"],
|
|
14272
|
-
["ResponseParameters", "not yet implemented by cdkd"],
|
|
14273
|
-
["TemplateSelectionExpression", "not yet implemented by cdkd"],
|
|
14274
|
-
["TlsConfig", "not yet implemented by cdkd"]
|
|
14275
|
-
])
|
|
14286
|
+
silentDrop: /* @__PURE__ */ new Map()
|
|
14276
14287
|
}],
|
|
14277
14288
|
["AWS::ApiGatewayV2::Route", {
|
|
14278
14289
|
handled: /* @__PURE__ */ new Set([
|
|
@@ -19236,7 +19247,7 @@ const FLUSH_INTERVAL_MS = 2e3;
|
|
|
19236
19247
|
const FLUSH_EVENT_THRESHOLD = 50;
|
|
19237
19248
|
/** Build-time cdkd version, with a dev fallback for non-built contexts. */
|
|
19238
19249
|
function getCdkdVersion() {
|
|
19239
|
-
return "0.280.
|
|
19250
|
+
return "0.280.11";
|
|
19240
19251
|
}
|
|
19241
19252
|
/**
|
|
19242
19253
|
* Generate a time-sortable unique run id, e.g.
|
|
@@ -21347,5 +21358,5 @@ var DeployEngine = class {
|
|
|
21347
21358
|
};
|
|
21348
21359
|
|
|
21349
21360
|
//#endregion
|
|
21350
|
-
export {
|
|
21351
|
-
//# sourceMappingURL=deploy-engine-
|
|
21361
|
+
export { applyRoleArnIfSet as $, clearBucketRegionCache as $t, red as A, AssetManifestLoader as At, isTerminationProtectionPropagationError as B, resolveStateBucketWithDefault as Bt, isStatefulRecreateTargetSync as C, SynthesisError as Cn, validateAssetBucketName as Ct, cyan as D, withErrorHandling as Dn, getDockerCmd as Dt, bold as E, normalizeAwsError as En, formatDockerLoginError as Et, ProviderRegistry as F, getLegacyStateBucketName as Ft, normalizeAwsTagsToCfn as G, CFN_TEMPLATE_BODY_LIMIT as Gt, cfnRefValueFromPhysicalId as H, resolveUseCdkBootstrapAssets as Ht, findActionableSilentDrops as I, resolveApp as It, readConfigString as J, findLargeInlineResources as Jt, resolveExplicitPhysicalId as K, CFN_TEMPLATE_URL_LIMIT as Kt, CloudControlProvider as L, resolveAutoAssetStorage as Lt, IAMRoleProvider as M, Synthesizer as Mt, collectInlinePolicyNamesManagedBySiblings as N, synthesisStatusMessage as Nt, gray as O, __exportAll as On, runDockerForeground as Ot, clearOnUpdateRemoval as P, getDefaultStateBucketName as Pt, requireConfigString as Q, processStackMessages as Qt, slowCcOperationTimeoutMs as R, resolveCaptureObservedState as Rt, MULTI_REGION_RECREATE_BLOCKED_TYPES as S, StateError as Sn, parseBootstrapMarker as St, formatResourceLine as T, isCdkdError as Tn, buildDockerImage as Tt, refStateLookupFromResource as U, stateBucketExistenceConfirmed as Ut, IntrinsicFunctionResolver as V, resolveStateBucketWithDefaultAndSource as Vt, WAFv2WebACLProvider as W, warnDeprecatedNoPrefixCliFlag as Wt, requireConfigArray as X, expectedOwnerParam as Xt, replayWarn as Y, uploadCfnTemplate as Yt, requireConfigObject as Z, AssemblyReader as Zt, createPreDeleteFinalSnapshot as _, ProvisioningError as _n, rewriteTemplateAssetReferences as _t, DeploymentEventsStore as a, AssetError as an, DagBuilder as at, unsupportedFinalSnapshotError as b, StackHasActiveImportsError as bn, ensureAssetStorage as bt, replayFailedOperations as c, DependencyError as cn, S3StateBackend as ct, IMPLICIT_DELETE_DEPENDENCIES as d, LocalMigrateError as dn, AssetPublisher as dt, resolveBucketRegion as en, DiffCalculator as et, computeImplicitDeleteEdges as f, LocalStartServiceError as fn, stringifyValue as ft, ccRoutedFinalSnapshotError as g, PartialFailureError as gn, loadPublishableAssetManifest as gt, buildFinalSnapshotIdentifier as h, NestedStackChildDirectDestroyError as hn, createAssetRedirectResolver as ht, DeploymentEventsReader as i, setAwsClients as in, isThrottlingError as it, yellow as j, getDockerImageBySourceHash as jt, green as k, runDockerStreaming as kt, replayRollback as l, DeployCancelledError as ln, rebuildClientForBucketRegion as lt, PRE_DELETE_SNAPSHOT_TYPES as m, MissingCdkCliError as mn, buildAssetRedirectMap as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, getAwsClients as nn, withRetry as nt, planFailedOps as o, CdkdError as on, TemplateParser as ot, ATOMIC_FINAL_SNAPSHOT_TYPES as p, LockError as pn, WorkGraph as pt, assertRegionMatch as q, MIGRATE_TMP_PREFIX as qt, DeployEngine as r, resetAwsClients as rn, isRetryableTransientError as rt, planRollback as s, ConfigError as sn, LockManager as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, AwsClients as tn, describeTypeWithThrottleRetry as tt, withResourceDeadline as u, LocalInvokeBuildError as un, shouldRetainResource as ut, isFinalSnapshotError as v, ResourceTimeoutError as vn, AssetModeResolver as vt, renderStatefulReason as w, formatError as wn, validateContainerRepoName as wt, extractDeploymentEventError as x, StackTerminationProtectionError as xn, getBootstrapMarkerKey as xt, refusesFinalSnapshot as y, ResourceUpdateNotSupportedError as yn, BOOTSTRAP_MARKER_PREFIX as yt, disableInstanceApiTermination as z, resolveSkipPrefix as zt };
|
|
21362
|
+
//# sourceMappingURL=deploy-engine-DHGLmPWH.js.map
|