@go-to-k/cdkd 0.177.0 → 0.179.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.
@@ -8032,82 +8032,79 @@ const PROPERTY_COVERAGE_BY_TYPE = new Map([
8032
8032
  }],
8033
8033
  ["AWS::ApiGatewayV2::Api", {
8034
8034
  handled: new Set([
8035
+ "ApiKeySelectionExpression",
8035
8036
  "CorsConfiguration",
8036
8037
  "Description",
8038
+ "DisableExecuteApiEndpoint",
8037
8039
  "Name",
8038
8040
  "ProtocolType",
8039
- "Tags"
8041
+ "RouteSelectionExpression",
8042
+ "Tags",
8043
+ "Version"
8040
8044
  ]),
8041
8045
  silentDrop: new Map([
8042
- ["ApiKeySelectionExpression", "not yet implemented by cdkd"],
8043
8046
  ["BasePath", "OpenAPI-import-only basePath override; meaningful only on the ImportApi code path."],
8044
8047
  ["Body", "OpenAPI/Swagger inline spec; routed through ImportApi, not the field-by-field CreateApi path."],
8045
8048
  ["BodyS3Location", "OpenAPI/Swagger spec on S3; routed through ImportApi, not the field-by-field CreateApi path."],
8046
- ["CredentialsArn", "not yet implemented by cdkd"],
8047
- ["DisableExecuteApiEndpoint", "not yet implemented by cdkd"],
8049
+ ["CredentialsArn", "Quick-create shortcut (paired with RouteKey/Target); cdkd models the integration as an explicit AWS::ApiGatewayV2::Integration resource instead."],
8048
8050
  ["DisableSchemaValidation", "Schema-validation toggle on CreateApi/UpdateApi that AWS docs scope to WebSocket APIs using AWS::ApiGatewayV2::Model — that resource type is not yet registered in cdkd, so the toggle has no effect to wire."],
8049
8051
  ["FailOnWarnings", "OpenAPI-import-only flag; meaningful only on the ImportApi code path."],
8050
8052
  ["IpAddressType", "not yet implemented by cdkd"],
8051
- ["RouteKey", "not yet implemented by cdkd"],
8052
- ["RouteSelectionExpression", "not yet implemented by cdkd"],
8053
- ["Target", "not yet implemented by cdkd"],
8054
- ["Version", "not yet implemented by cdkd"]
8053
+ ["RouteKey", "Quick-create shortcut: CreateApi inline-creates a default route+integration from RouteKey/Target/CredentialsArn. cdkd models routes/integrations as explicit AWS::ApiGatewayV2::Route/::Integration resources, so this convenience field is not wired."],
8054
+ ["Target", "Quick-create shortcut (paired with RouteKey/CredentialsArn); cdkd models the integration as an explicit AWS::ApiGatewayV2::Integration resource instead."]
8055
8055
  ])
8056
8056
  }],
8057
8057
  ["AWS::ApiGatewayV2::Authorizer", {
8058
8058
  handled: new Set([
8059
8059
  "ApiId",
8060
8060
  "AuthorizerPayloadFormatVersion",
8061
+ "AuthorizerResultTtlInSeconds",
8061
8062
  "AuthorizerType",
8062
8063
  "AuthorizerUri",
8064
+ "EnableSimpleResponses",
8063
8065
  "IdentitySource",
8064
8066
  "JwtConfiguration",
8065
8067
  "Name"
8066
8068
  ]),
8067
- silentDrop: new Map([
8068
- ["AuthorizerCredentialsArn", "not yet implemented by cdkd"],
8069
- ["AuthorizerResultTtlInSeconds", "not yet implemented by cdkd"],
8070
- ["EnableSimpleResponses", "not yet implemented by cdkd"],
8071
- ["IdentityValidationExpression", "not yet implemented by cdkd"]
8072
- ])
8069
+ silentDrop: new Map([["AuthorizerCredentialsArn", "not yet implemented by cdkd"], ["IdentityValidationExpression", "not yet implemented by cdkd"]])
8073
8070
  }],
8074
8071
  ["AWS::ApiGatewayV2::Integration", {
8075
8072
  handled: new Set([
8076
8073
  "ApiId",
8074
+ "Description",
8077
8075
  "IntegrationMethod",
8078
8076
  "IntegrationType",
8079
8077
  "IntegrationUri",
8080
- "PayloadFormatVersion"
8078
+ "PayloadFormatVersion",
8079
+ "RequestParameters",
8080
+ "TimeoutInMillis"
8081
8081
  ]),
8082
8082
  silentDrop: new Map([
8083
8083
  ["ConnectionId", "not yet implemented by cdkd"],
8084
8084
  ["ConnectionType", "not yet implemented by cdkd"],
8085
8085
  ["ContentHandlingStrategy", "not yet implemented by cdkd"],
8086
8086
  ["CredentialsArn", "not yet implemented by cdkd"],
8087
- ["Description", "not yet implemented by cdkd"],
8088
8087
  ["IntegrationSubtype", "not yet implemented by cdkd"],
8089
8088
  ["PassthroughBehavior", "not yet implemented by cdkd"],
8090
- ["RequestParameters", "not yet implemented by cdkd"],
8091
8089
  ["RequestTemplates", "not yet implemented by cdkd"],
8092
8090
  ["ResponseParameters", "not yet implemented by cdkd"],
8093
8091
  ["TemplateSelectionExpression", "not yet implemented by cdkd"],
8094
- ["TimeoutInMillis", "not yet implemented by cdkd"],
8095
8092
  ["TlsConfig", "not yet implemented by cdkd"]
8096
8093
  ])
8097
8094
  }],
8098
8095
  ["AWS::ApiGatewayV2::Route", {
8099
8096
  handled: new Set([
8100
8097
  "ApiId",
8098
+ "AuthorizationScopes",
8101
8099
  "AuthorizationType",
8102
8100
  "AuthorizerId",
8101
+ "OperationName",
8103
8102
  "RouteKey",
8104
8103
  "Target"
8105
8104
  ]),
8106
8105
  silentDrop: new Map([
8107
8106
  ["ApiKeyRequired", "not yet implemented by cdkd"],
8108
- ["AuthorizationScopes", "not yet implemented by cdkd"],
8109
8107
  ["ModelSelectionExpression", "not yet implemented by cdkd"],
8110
- ["OperationName", "not yet implemented by cdkd"],
8111
8108
  ["RequestModels", "not yet implemented by cdkd"],
8112
8109
  ["RequestParameters", "not yet implemented by cdkd"],
8113
8110
  ["RouteResponseSelectionExpression", "not yet implemented by cdkd"]
@@ -8117,17 +8114,17 @@ const PROPERTY_COVERAGE_BY_TYPE = new Map([
8117
8114
  handled: new Set([
8118
8115
  "ApiId",
8119
8116
  "AutoDeploy",
8117
+ "DefaultRouteSettings",
8120
8118
  "Description",
8121
8119
  "StageName",
8120
+ "StageVariables",
8122
8121
  "Tags"
8123
8122
  ]),
8124
8123
  silentDrop: new Map([
8125
8124
  ["AccessLogSettings", "not yet implemented by cdkd"],
8126
8125
  ["ClientCertificateId", "not yet implemented by cdkd"],
8127
- ["DefaultRouteSettings", "not yet implemented by cdkd"],
8128
8126
  ["DeploymentId", "not yet implemented by cdkd"],
8129
- ["RouteSettings", "not yet implemented by cdkd"],
8130
- ["StageVariables", "not yet implemented by cdkd"]
8127
+ ["RouteSettings", "not yet implemented by cdkd"]
8131
8128
  ])
8132
8129
  }],
8133
8130
  ["AWS::AppSync::ApiKey", {
@@ -12572,4 +12569,4 @@ var DeployEngine = class {
12572
12569
 
12573
12570
  //#endregion
12574
12571
  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 };
12575
- //# sourceMappingURL=deploy-engine-C4CvmQbh.js.map
12572
+ //# sourceMappingURL=deploy-engine-CTfmNriv.js.map