@go-to-k/cdkd 0.230.32 → 0.231.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.
|
@@ -6086,6 +6086,13 @@ const AWS_NO_VALUE = Symbol("AWS::NoValue");
|
|
|
6086
6086
|
* - AWS::ApiGateway::Stage `<restApiId>|<stageName>` -> stage name
|
|
6087
6087
|
* - AWS::ApiGateway::Resource `<restApiId>|<resourceId>` -> resource id
|
|
6088
6088
|
* - AWS::ApiGateway::Authorizer `<restApiId>|<authorizerId>` -> authorizer id
|
|
6089
|
+
* - AWS::ApiGatewayV2::Stage `<apiId>|<stageName>` -> stage name
|
|
6090
|
+
* - AWS::ApiGatewayV2::Route `<apiId>|<routeId>` -> route id
|
|
6091
|
+
* - AWS::ApiGatewayV2::Integration `<apiId>|<integrationId>` -> integration id
|
|
6092
|
+
* - AWS::ApiGatewayV2::Model `<apiId>|<modelId>` -> model id
|
|
6093
|
+
* - AWS::ApiGatewayV2::Deployment `<apiId>|<deploymentId>` -> deployment id
|
|
6094
|
+
* - AWS::ApiGatewayV2::RouteResponse `<apiId>|<routeId>|<respId>` -> route response id
|
|
6095
|
+
* - AWS::ApiGatewayV2::IntegrationResponse `<apiId>|<intId>|<respId>` -> integration response id
|
|
6089
6096
|
* - AWS::Cognito::UserPoolClient `<userPoolId>|<clientId>` -> client id
|
|
6090
6097
|
* - AWS::Cognito::UserPoolResourceServer `<userPoolId>|<identifier>` -> resource-server identifier
|
|
6091
6098
|
* - AWS::Cognito::UserPoolGroup `<userPoolId>|<groupName>` -> group name
|
|
@@ -6135,6 +6142,13 @@ const REF_RETURNS_SEGMENT_AFTER_PIPE = new Set([
|
|
|
6135
6142
|
"AWS::ApiGateway::Stage",
|
|
6136
6143
|
"AWS::ApiGateway::Resource",
|
|
6137
6144
|
"AWS::ApiGateway::Authorizer",
|
|
6145
|
+
"AWS::ApiGatewayV2::Stage",
|
|
6146
|
+
"AWS::ApiGatewayV2::Route",
|
|
6147
|
+
"AWS::ApiGatewayV2::Integration",
|
|
6148
|
+
"AWS::ApiGatewayV2::Model",
|
|
6149
|
+
"AWS::ApiGatewayV2::Deployment",
|
|
6150
|
+
"AWS::ApiGatewayV2::RouteResponse",
|
|
6151
|
+
"AWS::ApiGatewayV2::IntegrationResponse",
|
|
6138
6152
|
"AWS::Cognito::UserPoolClient",
|
|
6139
6153
|
"AWS::Cognito::UserPoolResourceServer",
|
|
6140
6154
|
"AWS::Cognito::UserPoolGroup",
|
|
@@ -6155,14 +6169,30 @@ const REF_RETURNS_SEGMENT_AFTER_PIPE = new Set([
|
|
|
6155
6169
|
* section):
|
|
6156
6170
|
* - AWS::ApiGateway::Deployment `<deploymentId>|<restApiId>` -> deployment id
|
|
6157
6171
|
* - AWS::ApiGateway::DocumentationPart `<docPartId>|<restApiId>` -> documentation part id
|
|
6172
|
+
* - AWS::ApiGatewayV2::Authorizer `<authorizerId>|<apiId>` -> authorizer id
|
|
6173
|
+
* - AWS::ApiGatewayV2::ApiMapping `<apiMappingId>|<domainName>` -> api mapping id
|
|
6158
6174
|
*
|
|
6159
6175
|
* Deployment matters in practice: every CDK-generated template wires the
|
|
6160
6176
|
* Stage's `DeploymentId` as `{ Ref: <Deployment> }`, so a CC-routed
|
|
6161
|
-
* Deployment would otherwise hand the Stage a compound id AWS rejects
|
|
6162
|
-
*
|
|
6177
|
+
* Deployment would otherwise hand the Stage a compound id AWS rejects; the V2
|
|
6178
|
+
* Authorizer matters the same way (a Route's `AuthorizerId` is
|
|
6179
|
+
* `{ Ref: <Authorizer> }` in every CDK HTTP-API-with-authorizer template).
|
|
6180
|
+
* Same maintenance rules as the after-pipe Set (docs-verified Ref semantics +
|
|
6163
6181
|
* a pinning unit test per entry).
|
|
6164
|
-
|
|
6165
|
-
|
|
6182
|
+
*
|
|
6183
|
+
* WARNING — the V1 and V2 families are CROSS-WIRED, do not pattern-match one
|
|
6184
|
+
* from the other: V1 Authorizer is `[RestApiId, AuthorizerId]` (after-pipe)
|
|
6185
|
+
* while V2 Authorizer is `[AuthorizerId, ApiId]` (before-first-pipe), and V1
|
|
6186
|
+
* Deployment is `[DeploymentId, RestApiId]` (before-first-pipe) while V2
|
|
6187
|
+
* Deployment is `[ApiId, DeploymentId]` (after-pipe). Always re-check the
|
|
6188
|
+
* type's own `describe-type` primaryIdentifier.
|
|
6189
|
+
*/
|
|
6190
|
+
const REF_RETURNS_SEGMENT_BEFORE_FIRST_PIPE = new Set([
|
|
6191
|
+
"AWS::ApiGateway::Deployment",
|
|
6192
|
+
"AWS::ApiGateway::DocumentationPart",
|
|
6193
|
+
"AWS::ApiGatewayV2::Authorizer",
|
|
6194
|
+
"AWS::ApiGatewayV2::ApiMapping"
|
|
6195
|
+
]);
|
|
6166
6196
|
/**
|
|
6167
6197
|
* SDK-provisioned types whose provider stores the resource ARN as the physical
|
|
6168
6198
|
* id (their delete / update paths need the ARN), while CloudFormation's `Ref`
|
|
@@ -9414,6 +9444,7 @@ const PROPERTY_COVERAGE_BY_TYPE = new Map([
|
|
|
9414
9444
|
handled: new Set([
|
|
9415
9445
|
"DeploymentId",
|
|
9416
9446
|
"Description",
|
|
9447
|
+
"MethodSettings",
|
|
9417
9448
|
"RestApiId",
|
|
9418
9449
|
"StageName",
|
|
9419
9450
|
"Tags",
|
|
@@ -9426,8 +9457,7 @@ const PROPERTY_COVERAGE_BY_TYPE = new Map([
|
|
|
9426
9457
|
["CacheClusterSize", "not yet implemented by cdkd"],
|
|
9427
9458
|
["CanarySetting", "not yet implemented by cdkd"],
|
|
9428
9459
|
["ClientCertificateId", "not yet implemented by cdkd"],
|
|
9429
|
-
["DocumentationVersion", "not yet implemented by cdkd"]
|
|
9430
|
-
["MethodSettings", "not yet implemented by cdkd"]
|
|
9460
|
+
["DocumentationVersion", "not yet implemented by cdkd"]
|
|
9431
9461
|
])
|
|
9432
9462
|
}],
|
|
9433
9463
|
["AWS::ApiGatewayV2::Api", {
|
|
@@ -14478,4 +14508,4 @@ var DeployEngine = class {
|
|
|
14478
14508
|
|
|
14479
14509
|
//#endregion
|
|
14480
14510
|
export { resolveStateBucketWithDefaultAndSource as $, TemplateParser as A, getDockerCmd as B, findActionableSilentDrops as C, applyRoleArnIfSet as D, cfnRefValueFromPhysicalId as E, AssetPublisher as F, Synthesizer as G, runDockerStreaming as H, stringifyValue as I, getLegacyStateBucketName as J, synthesisStatusMessage as K, WorkGraph as L, S3StateBackend as M, rebuildClientForBucketRegion as N, DiffCalculator as O, shouldRetainResource as P, resolveStateBucketWithDefault as Q, buildDockerImage as R, ProviderRegistry as S, IntrinsicFunctionResolver as T, AssetManifestLoader as U, runDockerForeground as V, getDockerImageBySourceHash as W, resolveCaptureObservedState as X, resolveApp as Y, resolveSkipPrefix as Z, green as _, withRetry as a, uploadCfnTemplate as at, IAMRoleProvider as b, computeImplicitDeleteEdges as c, resolveBucketRegion as ct, isStatefulRecreateTargetSync as d, warnDeprecatedNoPrefixCliFlag as et, renderStatefulReason as f, gray as g, cyan as h, withResourceDeadline as i, findLargeInlineResources as it, LockManager as j, DagBuilder as k, extractDeploymentEventError as l, bold as m, DEFAULT_RESOURCE_WARN_AFTER_MS as n, CFN_TEMPLATE_URL_LIMIT as nt, isRetryableTransientError as o, AssemblyReader as ot, formatResourceLine as p, getDefaultStateBucketName as q, DeployEngine as r, MIGRATE_TMP_PREFIX as rt, IMPLICIT_DELETE_DEPENDENCIES as s, clearBucketRegionCache as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, CFN_TEMPLATE_BODY_LIMIT as tt, MULTI_REGION_RECREATE_BLOCKED_TYPES as u, red as v, CloudControlProvider as w, collectInlinePolicyNamesManagedBySiblings as x, yellow as y, formatDockerLoginError as z };
|
|
14481
|
-
//# sourceMappingURL=deploy-engine-
|
|
14511
|
+
//# sourceMappingURL=deploy-engine-IqXCHYxE.js.map
|