@go-to-k/cdkd 0.241.0 → 0.243.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.
|
@@ -8163,9 +8163,16 @@ var IntrinsicFunctionResolver = class {
|
|
|
8163
8163
|
case "ApiId": return physicalId;
|
|
8164
8164
|
default: return physicalId;
|
|
8165
8165
|
}
|
|
8166
|
-
if (resourceType === "AWS::ServiceDiscovery::PrivateDnsNamespace") switch (attributeName) {
|
|
8166
|
+
if (resourceType === "AWS::ServiceDiscovery::PrivateDnsNamespace" || resourceType === "AWS::ServiceDiscovery::HttpNamespace" || resourceType === "AWS::ServiceDiscovery::PublicDnsNamespace") switch (attributeName) {
|
|
8167
8167
|
case "Arn": return `arn:${partition}:servicediscovery:${region}:${accountId}:namespace/${physicalId}`;
|
|
8168
8168
|
case "Id": return physicalId;
|
|
8169
|
+
case "HostedZoneId": try {
|
|
8170
|
+
const { ServiceDiscoveryClient, GetNamespaceCommand } = await import("@aws-sdk/client-servicediscovery");
|
|
8171
|
+
return (await new ServiceDiscoveryClient({ region: this.resolverRegion }).send(new GetNamespaceCommand({ Id: physicalId }))).Namespace?.Properties?.DnsProperties?.HostedZoneId;
|
|
8172
|
+
} catch (error) {
|
|
8173
|
+
this.logger.warn(`Failed to fetch HostedZoneId for namespace ${physicalId}: ${error instanceof Error ? error.message : String(error)}`);
|
|
8174
|
+
return;
|
|
8175
|
+
}
|
|
8169
8176
|
default: return physicalId;
|
|
8170
8177
|
}
|
|
8171
8178
|
if (resourceType === "AWS::ServiceDiscovery::Service") switch (attributeName) {
|
|
@@ -9295,8 +9302,6 @@ const NON_PROVISIONABLE_TYPES = new Set([
|
|
|
9295
9302
|
"AWS::AppSync::ApiCache",
|
|
9296
9303
|
"AWS::AutoScalingPlans::ScalingPlan",
|
|
9297
9304
|
"AWS::Bedrock::ModelInvocationJob",
|
|
9298
|
-
"AWS::BedrockAgentCore::Browser",
|
|
9299
|
-
"AWS::BedrockAgentCore::CodeInterpreter",
|
|
9300
9305
|
"AWS::BedrockAgentCore::TokenVault",
|
|
9301
9306
|
"AWS::Cloud9::EnvironmentEC2",
|
|
9302
9307
|
"AWS::CloudFormation::Macro",
|
|
@@ -9425,9 +9430,7 @@ const NON_PROVISIONABLE_TYPES = new Set([
|
|
|
9425
9430
|
"AWS::SageMaker::NotebookInstanceLifecycleConfig",
|
|
9426
9431
|
"AWS::SageMaker::Workteam",
|
|
9427
9432
|
"AWS::SDB::Domain",
|
|
9428
|
-
"AWS::ServiceDiscovery::HttpNamespace",
|
|
9429
9433
|
"AWS::ServiceDiscovery::Instance",
|
|
9430
|
-
"AWS::ServiceDiscovery::PublicDnsNamespace",
|
|
9431
9434
|
"AWS::SES::ReceiptFilter",
|
|
9432
9435
|
"AWS::SES::ReceiptRule",
|
|
9433
9436
|
"AWS::SES::ReceiptRuleSet",
|
|
@@ -11160,6 +11163,25 @@ const PROPERTY_COVERAGE_BY_TYPE = new Map([
|
|
|
11160
11163
|
["PlacementGroup", "not yet implemented by cdkd"]
|
|
11161
11164
|
])
|
|
11162
11165
|
}],
|
|
11166
|
+
["AWS::BedrockAgentCore::Browser", {
|
|
11167
|
+
handled: /* @__PURE__ */ new Set(),
|
|
11168
|
+
silentDrop: /* @__PURE__ */ new Map()
|
|
11169
|
+
}],
|
|
11170
|
+
["AWS::BedrockAgentCore::CodeInterpreter", {
|
|
11171
|
+
handled: /* @__PURE__ */ new Set(),
|
|
11172
|
+
silentDrop: /* @__PURE__ */ new Map()
|
|
11173
|
+
}],
|
|
11174
|
+
["AWS::BedrockAgentCore::Evaluator", {
|
|
11175
|
+
handled: new Set([
|
|
11176
|
+
"Description",
|
|
11177
|
+
"EvaluatorConfig",
|
|
11178
|
+
"EvaluatorName",
|
|
11179
|
+
"KmsKeyArn",
|
|
11180
|
+
"Level",
|
|
11181
|
+
"Tags"
|
|
11182
|
+
]),
|
|
11183
|
+
silentDrop: /* @__PURE__ */ new Map()
|
|
11184
|
+
}],
|
|
11163
11185
|
["AWS::BedrockAgentCore::Runtime", {
|
|
11164
11186
|
handled: new Set([
|
|
11165
11187
|
"AgentRuntimeArtifact",
|
|
@@ -12691,6 +12713,14 @@ const PROPERTY_COVERAGE_BY_TYPE = new Map([
|
|
|
12691
12713
|
]),
|
|
12692
12714
|
silentDrop: /* @__PURE__ */ new Map()
|
|
12693
12715
|
}],
|
|
12716
|
+
["AWS::ServiceDiscovery::HttpNamespace", {
|
|
12717
|
+
handled: new Set([
|
|
12718
|
+
"Description",
|
|
12719
|
+
"Name",
|
|
12720
|
+
"Tags"
|
|
12721
|
+
]),
|
|
12722
|
+
silentDrop: /* @__PURE__ */ new Map()
|
|
12723
|
+
}],
|
|
12694
12724
|
["AWS::ServiceDiscovery::PrivateDnsNamespace", {
|
|
12695
12725
|
handled: new Set([
|
|
12696
12726
|
"Description",
|
|
@@ -12701,6 +12731,15 @@ const PROPERTY_COVERAGE_BY_TYPE = new Map([
|
|
|
12701
12731
|
]),
|
|
12702
12732
|
silentDrop: /* @__PURE__ */ new Map()
|
|
12703
12733
|
}],
|
|
12734
|
+
["AWS::ServiceDiscovery::PublicDnsNamespace", {
|
|
12735
|
+
handled: new Set([
|
|
12736
|
+
"Description",
|
|
12737
|
+
"Name",
|
|
12738
|
+
"Properties",
|
|
12739
|
+
"Tags"
|
|
12740
|
+
]),
|
|
12741
|
+
silentDrop: /* @__PURE__ */ new Map()
|
|
12742
|
+
}],
|
|
12704
12743
|
["AWS::ServiceDiscovery::Service", {
|
|
12705
12744
|
handled: new Set([
|
|
12706
12745
|
"Description",
|
|
@@ -16053,4 +16092,4 @@ var DeployEngine = class {
|
|
|
16053
16092
|
|
|
16054
16093
|
//#endregion
|
|
16055
16094
|
export { getDockerCmd as $, DiffCalculator as A, buildAssetRedirectMap as B, findActionableSilentDrops as C, resolveBucketRegion as Ct, refStateLookupFromResource as D, cfnRefValueFromPhysicalId as E, rebuildClientForBucketRegion as F, BOOTSTRAP_MARKER_PREFIX as G, loadPublishableAssetManifest as H, shouldRetainResource as I, parseBootstrapMarker as J, ensureAssetStorage as K, AssetPublisher as L, TemplateParser as M, LockManager as N, WAFv2WebACLProvider as O, S3StateBackend as P, formatDockerLoginError as Q, stringifyValue as R, ProviderRegistry as S, clearBucketRegionCache as St, IntrinsicFunctionResolver as T, rewriteTemplateAssetReferences as U, createAssetRedirectResolver as V, AssetModeResolver as W, validateContainerRepoName as X, validateAssetBucketName as Y, buildDockerImage as Z, green as _, CFN_TEMPLATE_URL_LIMIT as _t, withRetry as a, synthesisStatusMessage as at, IAMRoleProvider as b, uploadCfnTemplate as bt, computeImplicitDeleteEdges as c, resolveApp as ct, isStatefulRecreateTargetSync as d, resolveSkipPrefix as dt, runDockerForeground as et, renderStatefulReason as f, resolveStateBucketWithDefault as ft, gray as g, CFN_TEMPLATE_BODY_LIMIT as gt, cyan as h, warnDeprecatedNoPrefixCliFlag as ht, withResourceDeadline as i, Synthesizer as it, DagBuilder as j, applyRoleArnIfSet as k, extractDeploymentEventError as l, resolveAutoAssetStorage as lt, bold as m, resolveUseCdkBootstrapAssets as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, AssetManifestLoader as nt, isRetryableTransientError as o, getDefaultStateBucketName as ot, formatResourceLine as p, resolveStateBucketWithDefaultAndSource as pt, getBootstrapMarkerKey as q, DeployEngine as r, getDockerImageBySourceHash as rt, IMPLICIT_DELETE_DEPENDENCIES as s, getLegacyStateBucketName as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, runDockerStreaming as tt, MULTI_REGION_RECREATE_BLOCKED_TYPES as u, resolveCaptureObservedState as ut, red as v, MIGRATE_TMP_PREFIX as vt, CloudControlProvider as w, collectInlinePolicyNamesManagedBySiblings as x, AssemblyReader as xt, yellow as y, findLargeInlineResources as yt, WorkGraph as z };
|
|
16056
|
-
//# sourceMappingURL=deploy-engine-
|
|
16095
|
+
//# sourceMappingURL=deploy-engine-DNqZHDA5.js.map
|