@go-to-k/cdkd 0.184.0 → 0.185.1
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.
|
@@ -5894,6 +5894,19 @@ var IntrinsicFunctionResolver = class {
|
|
|
5894
5894
|
case "Arn": return `arn:${partition}:ecs:${region}:${accountId}:cluster/${physicalId}`;
|
|
5895
5895
|
default: return physicalId;
|
|
5896
5896
|
}
|
|
5897
|
+
if (resourceType === "AWS::ECS::Service") switch (attributeName) {
|
|
5898
|
+
case "Name": {
|
|
5899
|
+
const pipeIdx = physicalId.indexOf("|");
|
|
5900
|
+
const left = pipeIdx >= 0 ? physicalId.substring(0, pipeIdx) : physicalId;
|
|
5901
|
+
if (left.includes(":service/")) {
|
|
5902
|
+
const lastSlash = left.lastIndexOf("/");
|
|
5903
|
+
return lastSlash >= 0 ? left.substring(lastSlash + 1) : physicalId;
|
|
5904
|
+
}
|
|
5905
|
+
if (pipeIdx >= 0) return physicalId.substring(pipeIdx + 1);
|
|
5906
|
+
return physicalId;
|
|
5907
|
+
}
|
|
5908
|
+
default: return physicalId;
|
|
5909
|
+
}
|
|
5897
5910
|
if (resourceType === "AWS::EC2::SecurityGroup") switch (attributeName) {
|
|
5898
5911
|
case "GroupId": return physicalId;
|
|
5899
5912
|
case "VpcId": return;
|
|
@@ -9292,12 +9305,13 @@ const PROPERTY_COVERAGE_BY_TYPE = new Map([
|
|
|
9292
9305
|
"EventSourceToken",
|
|
9293
9306
|
"FunctionName",
|
|
9294
9307
|
"FunctionUrlAuthType",
|
|
9308
|
+
"InvokedViaFunctionUrl",
|
|
9295
9309
|
"Principal",
|
|
9296
9310
|
"PrincipalOrgID",
|
|
9297
9311
|
"SourceAccount",
|
|
9298
9312
|
"SourceArn"
|
|
9299
9313
|
]),
|
|
9300
|
-
silentDrop: new Map(
|
|
9314
|
+
silentDrop: /* @__PURE__ */ new Map()
|
|
9301
9315
|
}],
|
|
9302
9316
|
["AWS::Lambda::Url", {
|
|
9303
9317
|
handled: new Set([
|
|
@@ -11193,7 +11207,8 @@ const RETRYABLE_ERROR_MESSAGE_PATTERNS = [
|
|
|
11193
11207
|
"Please ensure the role can perform",
|
|
11194
11208
|
"KMS key is invalid for CreateGrant",
|
|
11195
11209
|
"Could not deliver test message",
|
|
11196
|
-
"wait 60 seconds"
|
|
11210
|
+
"wait 60 seconds",
|
|
11211
|
+
"concurrent update operation"
|
|
11197
11212
|
];
|
|
11198
11213
|
/**
|
|
11199
11214
|
* HTTP status codes that always indicate a transient failure worth retrying.
|
|
@@ -12573,4 +12588,4 @@ var DeployEngine = class {
|
|
|
12573
12588
|
|
|
12574
12589
|
//#endregion
|
|
12575
12590
|
export { AssetError as $, S3StateBackend as A, resolveCaptureObservedState as B, assertRegionMatch as C, DagBuilder as D, DiffCalculator as E, buildDockerImage as F, CFN_TEMPLATE_BODY_LIMIT as G, resolveStateBucketWithDefault as H, Synthesizer as I, findLargeInlineResources as J, CFN_TEMPLATE_URL_LIMIT as K, getDefaultStateBucketName as L, AssetPublisher as M, stringifyValue as N, TemplateParser as O, WorkGraph as P, resolveBucketRegion as Q, getLegacyStateBucketName as R, CloudControlProvider as S, applyRoleArnIfSet as T, resolveStateBucketWithDefaultAndSource as U, resolveSkipPrefix as V, warnDeprecatedNoPrefixCliFlag as W, AssemblyReader as X, uploadCfnTemplate as Y, clearBucketRegionCache as Z, matchesCdkPath as _, formatError as _t, withRetry as a, LocalStartServiceError as at, ProviderRegistry as b, withErrorHandling as bt, bold as c, NestedStackChildDirectDestroyError as ct, green as d, ResourceTimeoutError as dt, CdkdError as et, red as f, ResourceUpdateNotSupportedError as ft, CDK_PATH_TAG as g, SynthesisError as gt, collectInlinePolicyNamesManagedBySiblings as h, StateError as ht, withResourceDeadline as i, LocalMigrateError as it, shouldRetainResource as j, LockManager as k, cyan as l, PartialFailureError as lt, IAMRoleProvider as m, StackTerminationProtectionError as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, DependencyError as nt, IMPLICIT_DELETE_DEPENDENCIES as o, LockError as ot, yellow as p, StackHasActiveImportsError as pt, MIGRATE_TMP_PREFIX as q, DeployEngine as r, LocalInvokeBuildError as rt, formatResourceLine as s, MissingCdkCliError as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, ConfigError as tt, gray as u, ProvisioningError as ut, normalizeAwsTagsToCfn as v, isCdkdError as vt, IntrinsicFunctionResolver as w, findActionableSilentDrops as x, resolveExplicitPhysicalId as y, normalizeAwsError as yt, resolveApp as z };
|
|
12576
|
-
//# sourceMappingURL=deploy-engine-
|
|
12591
|
+
//# sourceMappingURL=deploy-engine-CQoRvaHv.js.map
|