@stacksjs/ts-cloud 0.7.108 → 0.7.110
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/alerts/delivery.d.ts +10 -0
- package/dist/alerts/model.d.ts +1 -1
- package/dist/api/client.d.ts +53 -0
- package/dist/api/handler.d.ts +10 -0
- package/dist/api/service.d.ts +1 -0
- package/dist/aws/index.js +10 -10
- package/dist/aws/lambda.d.ts +19 -0
- package/dist/bin/cli.js +1520 -1204
- package/dist/bin/dashboard-server.js +935 -621
- package/dist/chunk-19bs955w.js +12203 -0
- package/dist/{chunk-fmt40tpw.js → chunk-53jatzaw.js} +2 -2
- package/dist/{chunk-ef2dwfrg.js → chunk-8kh577qh.js} +5 -5
- package/dist/{chunk-s9c2x5jv.js → chunk-9v2pwxv9.js} +2 -2
- package/dist/chunk-aa2dkn7b.js +205 -0
- package/dist/{chunk-33sy72r8.js → chunk-d3vx2ekv.js} +71 -25
- package/dist/chunk-d48vtdj4.js +433 -0
- package/dist/{chunk-c6db5m63.js → chunk-t2s3gdq6.js} +253 -8
- package/dist/chunk-va2yd85b.js +200 -0
- package/dist/{chunk-3g4r09dd.js → chunk-wmbep3b5.js} +1 -1
- package/dist/{chunk-eg8ck25v.js → chunk-wmz8x3cy.js} +6935 -15274
- package/dist/{chunk-ybcz6sxc.js → chunk-x6yzgv7y.js} +33 -0
- package/dist/control-plane/types.d.ts +1 -1
- package/dist/deploy/dashboard-protection.test.d.ts +1 -0
- package/dist/deploy/dashboard-spend.test.d.ts +1 -0
- package/dist/deploy/index.js +11 -8
- package/dist/deploy/local-dashboard-server.d.ts +2 -0
- package/dist/drivers/index.js +4 -2
- package/dist/drivers/shared/protection.d.ts +43 -0
- package/dist/drivers/shared/protection.test.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +364 -102
- package/dist/protection/controls.d.ts +127 -0
- package/dist/protection/controls.test.d.ts +1 -0
- package/dist/protection/ddos.d.ts +130 -0
- package/dist/protection/ddos.test.d.ts +1 -0
- package/dist/protection/index.d.ts +11 -0
- package/dist/protection/index.js +89 -0
- package/dist/protection/ratelimit.d.ts +154 -0
- package/dist/protection/ratelimit.test.d.ts +1 -0
- package/dist/protection/waf.d.ts +143 -0
- package/dist/protection/waf.test.d.ts +1 -0
- package/dist/spend/anomaly-config.d.ts +130 -0
- package/dist/spend/anomaly-config.test.d.ts +1 -0
- package/dist/spend/anomaly.d.ts +114 -0
- package/dist/spend/anomaly.test.d.ts +1 -0
- package/dist/spend/api.d.ts +42 -0
- package/dist/spend/api.test.d.ts +1 -0
- package/dist/spend/appliers.d.ts +126 -0
- package/dist/spend/docs.test.d.ts +1 -0
- package/dist/spend/enforcement.d.ts +111 -0
- package/dist/spend/enforcement.integration.test.d.ts +1 -0
- package/dist/spend/evaluator.d.ts +70 -0
- package/dist/spend/evaluator.test.d.ts +1 -0
- package/dist/spend/focus.d.ts +93 -0
- package/dist/spend/focus.test.d.ts +1 -0
- package/dist/spend/gate.d.ts +96 -0
- package/dist/spend/index.d.ts +20 -0
- package/dist/spend/index.js +173 -0
- package/dist/spend/lease.d.ts +54 -0
- package/dist/spend/lease.test.d.ts +1 -0
- package/dist/spend/meter.d.ts +70 -0
- package/dist/spend/meter.test.d.ts +1 -0
- package/dist/spend/model.d.ts +228 -0
- package/dist/spend/notifications.d.ts +58 -0
- package/dist/spend/pricing.d.ts +109 -0
- package/dist/spend/pricing.test.d.ts +1 -0
- package/dist/spend/projection.d.ts +36 -0
- package/dist/spend/runner.d.ts +130 -0
- package/dist/spend/service.d.ts +129 -0
- package/dist/spend/signals.d.ts +131 -0
- package/dist/spend/signals.test.d.ts +1 -0
- package/dist/spend/sms-sdk.test.d.ts +1 -0
- package/dist/spend/spend.integration.test.d.ts +1 -0
- package/dist/spend/store.d.ts +166 -0
- package/dist/spend/transports.d.ts +169 -0
- package/dist/spend/transports.test.d.ts +1 -0
- package/dist/spend/window.d.ts +52 -0
- package/dist/spend/window.test.d.ts +1 -0
- package/dist/ui/404.html +1 -0
- package/dist/ui/access-denied.html +1 -1
- package/dist/ui/account/automation.html +3 -3
- package/dist/ui/account/security.html +2 -2
- package/dist/ui/applications/compose.html +4 -4
- package/dist/ui/applications/new.html +2 -2
- package/dist/ui/data/backups.html +4 -4
- package/dist/ui/data/services.html +4 -4
- package/dist/ui/data/volumes.html +4 -4
- package/dist/ui/index.html +4 -4
- package/dist/ui/infrastructure/topology.html +4 -4
- package/dist/ui/integrations.html +2 -2
- package/dist/ui/operations/alerts.html +4 -4
- package/dist/ui/operations/configuration.html +4 -4
- package/dist/ui/operations/jobs.html +3 -3
- package/dist/ui/operations/maintenance.html +4 -4
- package/dist/ui/operations/observability.html +4 -4
- package/dist/ui/operations/previews.html +4 -4
- package/dist/ui/operations/queue.html +3 -3
- package/dist/ui/operations/regions.html +4 -4
- package/dist/ui/operations/releases.html +4 -4
- package/dist/ui/operations/spend.html +1634 -0
- package/dist/ui/operations/workloads.html +4 -4
- package/dist/ui/security.html +2 -2
- package/dist/ui/server/actions.html +4 -4
- package/dist/ui/server/activity.html +2 -2
- package/dist/ui/server/capacity.html +4 -4
- package/dist/ui/server/database.html +4 -4
- package/dist/ui/server/deployments.html +4 -4
- package/dist/ui/server/diagnostics.html +2 -2
- package/dist/ui/server/firewall.html +100 -161
- package/dist/ui/server/fleet.html +4 -4
- package/dist/ui/server/logs.html +4 -4
- package/dist/ui/server/metrics.html +4 -4
- package/dist/ui/server/security.html +2 -2
- package/dist/ui/server/services.html +2 -2
- package/dist/ui/server/sites.html +4 -4
- package/dist/ui/server/ssh-keys.html +4 -4
- package/dist/ui/server/team.html +4 -4
- package/dist/ui/server/terminal.html +2 -2
- package/dist/ui/serverless/alarms.html +4 -4
- package/dist/ui/serverless/assets.html +2 -2
- package/dist/ui/serverless/cost.html +2 -2
- package/dist/ui/serverless/data.html +4 -4
- package/dist/ui/serverless/deployments.html +1 -1
- package/dist/ui/serverless/firewall.html +2 -2
- package/dist/ui/serverless/functions.html +4 -4
- package/dist/ui/serverless/logs.html +4 -4
- package/dist/ui/serverless/metrics.html +2 -2
- package/dist/ui/serverless/queues.html +4 -4
- package/dist/ui/serverless/secrets.html +4 -4
- package/dist/ui/serverless/traces.html +4 -4
- package/dist/ui/serverless.html +3 -3
- package/dist/ui-src/pages/operations/spend.stx +225 -0
- package/dist/ui-src/pages/partials/nav.stx +2 -0
- package/dist/ui-src/pages/server/firewall.stx +89 -0
- package/package.json +11 -3
package/dist/index.js
CHANGED
|
@@ -3,17 +3,12 @@ import {
|
|
|
3
3
|
API_TOKEN_DEFAULT_TTL_MS,
|
|
4
4
|
API_TOKEN_MAX_TTL_MS,
|
|
5
5
|
API_VERSION,
|
|
6
|
-
AUTHORIZATION_CAPABILITIES,
|
|
7
6
|
AUTH_ACTION_TOKEN_TTL_MS,
|
|
8
7
|
AUTH_MFA_CHALLENGE_TTL_MS,
|
|
9
8
|
AUTH_OIDC_TRANSACTION_TTL_MS,
|
|
10
9
|
AUTH_SESSION_ABSOLUTE_TTL_MS,
|
|
11
10
|
AUTH_SESSION_IDLE_TTL_MS,
|
|
12
|
-
AlertEvaluator,
|
|
13
|
-
AlertStore,
|
|
14
|
-
ApiServiceError,
|
|
15
11
|
AuthenticationStore,
|
|
16
|
-
AutomationApiService,
|
|
17
12
|
AutomationIdentityStore,
|
|
18
13
|
AwsAuroraDataAdapter,
|
|
19
14
|
AwsAuroraTransport,
|
|
@@ -33,27 +28,17 @@ import {
|
|
|
33
28
|
BunDockerRuntime,
|
|
34
29
|
BunDockerVolumeRuntime,
|
|
35
30
|
BunFilesystemArchiveRuntime,
|
|
36
|
-
CONTROL_PLANE_SCHEMA_VERSION,
|
|
37
|
-
CloudBlockVolumeDriver,
|
|
38
|
-
ComposeApplicationService,
|
|
39
|
-
ComposeApplicationStore,
|
|
40
31
|
ConfigurationService,
|
|
41
32
|
ConfigurationStore,
|
|
42
33
|
ContainerDataAdapter,
|
|
43
34
|
ControlPlaneBackupSource,
|
|
44
35
|
ControlPlaneCleanupDriver,
|
|
45
|
-
ControlPlaneStore,
|
|
46
|
-
DEFAULT_TELEMETRY_POLICY,
|
|
47
|
-
DEPLOYMENT_QUEUE_KINDS,
|
|
48
36
|
DIAGNOSTIC_PRESETS,
|
|
49
37
|
DataServiceLifecycle,
|
|
50
38
|
DataServiceStore,
|
|
51
39
|
DockerDataTransport,
|
|
52
40
|
DockerDiscoveryAdapter,
|
|
53
|
-
DockerNamedVolumeDriver,
|
|
54
41
|
DockerVolumeBackupSource,
|
|
55
|
-
DurableOperationQueue,
|
|
56
|
-
DurableQueueWorker,
|
|
57
42
|
EcsRuntimeAdapter,
|
|
58
43
|
EncryptedDataSecretStore,
|
|
59
44
|
EventBridgeJobAdapter,
|
|
@@ -64,34 +49,23 @@ import {
|
|
|
64
49
|
GiteaSourceAdapter,
|
|
65
50
|
GithubSourceAdapter,
|
|
66
51
|
GitlabSourceAdapter,
|
|
67
|
-
HealthCheckRunner,
|
|
68
|
-
InvalidOperationTransitionError,
|
|
69
52
|
JobProviderReconciler,
|
|
70
53
|
JobService,
|
|
71
54
|
JobStore,
|
|
72
55
|
LambdaRuntimeAdapter,
|
|
73
56
|
LocalEncryptedConfigurationBackend,
|
|
74
57
|
LogicalDatabaseBackupSource,
|
|
75
|
-
MAX_CONTROL_PLANE_ERROR_BYTES,
|
|
76
|
-
MAX_CONTROL_PLANE_JSON_BYTES,
|
|
77
58
|
MaintenanceService,
|
|
78
59
|
MaintenanceStore,
|
|
79
|
-
NotificationRouter,
|
|
80
|
-
OptimisticConcurrencyError,
|
|
81
60
|
PlacementService,
|
|
82
61
|
PlacementStore,
|
|
83
62
|
PreDeployScanner,
|
|
84
|
-
PreviewEnvironmentService,
|
|
85
|
-
PreviewEnvironmentStore,
|
|
86
|
-
QueueCancellationError,
|
|
87
|
-
QueueTimeoutError,
|
|
88
63
|
RELEASE_QUEUE_KINDS,
|
|
89
64
|
RegionService,
|
|
90
65
|
RegionStore,
|
|
91
66
|
ReleaseService,
|
|
92
67
|
ReleaseStore,
|
|
93
68
|
RemoteBuildService,
|
|
94
|
-
RetryableOperationError,
|
|
95
69
|
RuntimeOperationService,
|
|
96
70
|
RuntimeStreamRegistry,
|
|
97
71
|
S3BackupDestinationAdapter,
|
|
@@ -101,13 +75,11 @@ import {
|
|
|
101
75
|
SecurityScannerRunner,
|
|
102
76
|
ServerCronJobAdapter,
|
|
103
77
|
ServerDataAdapter,
|
|
104
|
-
ServerPathVolumeDriver,
|
|
105
78
|
SourceConnectionStore,
|
|
106
79
|
SourceProviderError,
|
|
107
80
|
SshFleetDriver,
|
|
108
81
|
SystemFleetSshTransport,
|
|
109
82
|
SystemdDiscoveryAdapter,
|
|
110
|
-
TelemetryStore,
|
|
111
83
|
TransportDisasterRecoveryDriver,
|
|
112
84
|
TransportPlatformMaintenanceDriver,
|
|
113
85
|
TransportRemoteBuildDriver,
|
|
@@ -115,9 +87,6 @@ import {
|
|
|
115
87
|
TsCloudApiError,
|
|
116
88
|
TsCloudClient,
|
|
117
89
|
UnavailableRegionalDriver,
|
|
118
|
-
UnsupportedSchemaVersionError,
|
|
119
|
-
VolumeService,
|
|
120
|
-
VolumeStore,
|
|
121
90
|
activateImmutableRelease,
|
|
122
91
|
ageSeconds,
|
|
123
92
|
assertReleaseStrategy,
|
|
@@ -125,33 +94,23 @@ import {
|
|
|
125
94
|
attachSbomToRelease,
|
|
126
95
|
attachVulnerabilitySummary,
|
|
127
96
|
authEncryptionKeyFile,
|
|
128
|
-
authorizeOrganization,
|
|
129
97
|
authorizeRuntimePath,
|
|
130
98
|
backupCredentialStatus,
|
|
131
99
|
beginOidcAuthorization,
|
|
132
|
-
buildComposeLogsCommand,
|
|
133
|
-
buildComposeRuntimeCommand,
|
|
134
|
-
buildComposeScaleCommand,
|
|
135
|
-
buildComposeShellCommand,
|
|
136
100
|
buildFunctionEnv,
|
|
137
101
|
bytes,
|
|
138
102
|
canonicalJson,
|
|
139
103
|
capabilities,
|
|
140
104
|
capacity,
|
|
141
105
|
cloneSourceBinding,
|
|
142
|
-
completeComposeVolumeDeletion,
|
|
143
106
|
completeOidcAuthorization,
|
|
144
|
-
composeProjectName,
|
|
145
107
|
compressBackup,
|
|
146
108
|
config,
|
|
147
109
|
connectionGuidance,
|
|
148
|
-
controlPlaneDatabaseFile,
|
|
149
|
-
controlPlaneMigrations,
|
|
150
110
|
createApiV1Handler,
|
|
151
111
|
createAsgBuildDriver,
|
|
152
112
|
createBackupQueueHandlers,
|
|
153
113
|
createDataServiceQueueHandlers,
|
|
154
|
-
createDeploymentQueueHandlers,
|
|
155
114
|
createEcsBuildDriver,
|
|
156
115
|
createFleetQueueHandlers,
|
|
157
116
|
createJobQueueHandlers,
|
|
@@ -163,7 +122,6 @@ import {
|
|
|
163
122
|
createRuntimeAdapters,
|
|
164
123
|
createServerBuildDriver,
|
|
165
124
|
createSourceAdapter,
|
|
166
|
-
createVolumeQueueHandlers,
|
|
167
125
|
dashboardActions,
|
|
168
126
|
dataServiceCapabilities,
|
|
169
127
|
decodeBase32,
|
|
@@ -173,34 +131,26 @@ import {
|
|
|
173
131
|
deployServerlessApp,
|
|
174
132
|
deploySite,
|
|
175
133
|
desiredState,
|
|
176
|
-
diffCompose,
|
|
177
134
|
discoverGitRefs,
|
|
178
135
|
discoverOidcProvider,
|
|
179
136
|
discoverRuntimeInventory,
|
|
180
137
|
dockerWorkloads,
|
|
181
138
|
documentDigest,
|
|
182
139
|
ecsWorkloads,
|
|
183
|
-
effectiveCapabilities,
|
|
184
140
|
encodeBase32,
|
|
185
141
|
encryptBackup,
|
|
186
142
|
ensureDefaultSecurityPolicies,
|
|
187
|
-
evaluateTelemetryAlertRules,
|
|
188
143
|
eventBridgeScheduleInput,
|
|
189
|
-
exportCompose,
|
|
190
144
|
formatScanResults,
|
|
191
145
|
generateCycloneDxSbom,
|
|
192
146
|
generateImageSbom,
|
|
193
|
-
getComposeTemplate,
|
|
194
147
|
getConfig,
|
|
195
148
|
hotp,
|
|
196
149
|
infraEnvFromOutputs,
|
|
197
|
-
isQuietHours,
|
|
198
150
|
jobProviderCapability,
|
|
199
151
|
lambdaWorkloads,
|
|
200
|
-
listComposeTemplates,
|
|
201
152
|
listSourceReferences,
|
|
202
153
|
loadCloudConfig,
|
|
203
|
-
loadTelemetryPolicy,
|
|
204
154
|
maintenanceWindowOpen,
|
|
205
155
|
manifestDigest,
|
|
206
156
|
matchTotpCounter,
|
|
@@ -208,15 +158,10 @@ import {
|
|
|
208
158
|
normalizeRuntimeStatus,
|
|
209
159
|
normalizeScheduleExpression,
|
|
210
160
|
normalizeSourceEvent,
|
|
211
|
-
normalizeTelemetryPolicy,
|
|
212
161
|
openApiDocument,
|
|
213
|
-
parseCompose,
|
|
214
|
-
parseComposeCatalog,
|
|
215
162
|
parseDockerInspect,
|
|
216
163
|
parseDotenv,
|
|
217
164
|
parseSystemdRecords,
|
|
218
|
-
pathTemplate,
|
|
219
|
-
planComposeTemplateUpgrade,
|
|
220
165
|
previewSchedule,
|
|
221
166
|
processSourceWebhook,
|
|
222
167
|
productionChangeReview,
|
|
@@ -227,31 +172,21 @@ import {
|
|
|
227
172
|
recordPreDeploySecretScan,
|
|
228
173
|
recordSkippedSecretScan,
|
|
229
174
|
redactRuntimeConfig,
|
|
230
|
-
redactTelemetryText,
|
|
231
|
-
redactTelemetryValue,
|
|
232
175
|
redeployServerlessApp,
|
|
233
176
|
releaseStrategyCapabilities,
|
|
234
177
|
releaseTrafficPlan,
|
|
235
178
|
removeSourceWebhook,
|
|
236
|
-
renderComposeTemplate,
|
|
237
179
|
renderServerCron,
|
|
238
|
-
requestHash,
|
|
239
180
|
resolveAuthEncryptionKey,
|
|
240
181
|
resolveDashboardAction,
|
|
241
|
-
resolveQueuedDeploymentCommand,
|
|
242
182
|
resolveRuntimeInventory,
|
|
243
|
-
roleCapabilities,
|
|
244
183
|
rollbackImmutableRelease,
|
|
245
184
|
rollbackServerlessApp,
|
|
246
185
|
runRemoteCommand,
|
|
247
186
|
runtimeId,
|
|
248
187
|
sanitizeCloudConfig,
|
|
249
|
-
sanitizeControlPlaneValue,
|
|
250
188
|
sanitizeOidcReturnPath,
|
|
251
|
-
saveTelemetryPolicy,
|
|
252
189
|
scanForSecrets,
|
|
253
|
-
scopeContains,
|
|
254
|
-
searchControlPlane,
|
|
255
190
|
secureContainerRelease,
|
|
256
191
|
securityScope,
|
|
257
192
|
sendAuthenticationEmail,
|
|
@@ -259,31 +194,21 @@ import {
|
|
|
259
194
|
setMaintenance,
|
|
260
195
|
startLocalDashboardServer,
|
|
261
196
|
syncSourceRepositories,
|
|
262
|
-
synchronizeComposeVolumes,
|
|
263
197
|
synchronizeConfiguredConfiguration,
|
|
264
198
|
synchronizeConfiguredJobs,
|
|
265
199
|
systemdWorkloads,
|
|
266
|
-
telemetryBucketLabel,
|
|
267
|
-
telemetryCursor,
|
|
268
|
-
telemetryEstimatedMonthlyCost,
|
|
269
|
-
telemetryPercentile,
|
|
270
|
-
telemetryPolicyKey,
|
|
271
200
|
testSourceConnection,
|
|
272
201
|
totp,
|
|
273
202
|
totpUri,
|
|
274
203
|
unsupportedCapabilities,
|
|
275
|
-
unsupportedVolumeCapabilities,
|
|
276
204
|
updateCompatibility,
|
|
277
|
-
validateAttachment,
|
|
278
205
|
validateBackupDestination,
|
|
279
|
-
validateMountPath,
|
|
280
206
|
verifyArtifactSignature,
|
|
281
207
|
verifyTotp,
|
|
282
208
|
verifyUpdateSignature,
|
|
283
|
-
volumeCapabilities,
|
|
284
209
|
webhookEndpoint,
|
|
285
210
|
zeroCapacity
|
|
286
|
-
} from "./chunk-
|
|
211
|
+
} from "./chunk-wmz8x3cy.js";
|
|
287
212
|
import {
|
|
288
213
|
deleteStaticSite,
|
|
289
214
|
deployStaticSite,
|
|
@@ -294,10 +219,10 @@ import {
|
|
|
294
219
|
generateStaticSiteTemplate,
|
|
295
220
|
invalidateCache,
|
|
296
221
|
uploadStaticFiles
|
|
297
|
-
} from "./chunk-
|
|
222
|
+
} from "./chunk-8kh577qh.js";
|
|
298
223
|
import {
|
|
299
224
|
buildAndPushServerlessImage
|
|
300
|
-
} from "./chunk-
|
|
225
|
+
} from "./chunk-wmbep3b5.js";
|
|
301
226
|
import {
|
|
302
227
|
ApplicationAutoScalingClient,
|
|
303
228
|
BedrockClient,
|
|
@@ -335,7 +260,12 @@ import {
|
|
|
335
260
|
providerEndpoint,
|
|
336
261
|
remapKey,
|
|
337
262
|
resolveObjectStorage
|
|
338
|
-
} from "./chunk-
|
|
263
|
+
} from "./chunk-x6yzgv7y.js";
|
|
264
|
+
import {
|
|
265
|
+
EmailClient,
|
|
266
|
+
IAMClient,
|
|
267
|
+
SESClient
|
|
268
|
+
} from "./chunk-hpv68b4a.js";
|
|
339
269
|
import {
|
|
340
270
|
CloudFrontClient
|
|
341
271
|
} from "./chunk-01d86gt1.js";
|
|
@@ -360,6 +290,9 @@ import {
|
|
|
360
290
|
detectDnsProvider,
|
|
361
291
|
dnsProviders
|
|
362
292
|
} from "./chunk-gttvakpv.js";
|
|
293
|
+
import {
|
|
294
|
+
Route53Client
|
|
295
|
+
} from "./chunk-32e7ya18.js";
|
|
363
296
|
import {
|
|
364
297
|
AwsDriver,
|
|
365
298
|
CloudDriverFactory,
|
|
@@ -405,7 +338,213 @@ import {
|
|
|
405
338
|
waitForCloudInit,
|
|
406
339
|
waitForSsh,
|
|
407
340
|
wrapCloudInitUserData
|
|
408
|
-
} from "./chunk-
|
|
341
|
+
} from "./chunk-d3vx2ekv.js";
|
|
342
|
+
import {
|
|
343
|
+
EC2Client,
|
|
344
|
+
SSMClient
|
|
345
|
+
} from "./chunk-7m60qnc8.js";
|
|
346
|
+
import {
|
|
347
|
+
CloudFormationClient
|
|
348
|
+
} from "./chunk-4cjrg98a.js";
|
|
349
|
+
import {
|
|
350
|
+
S3Client
|
|
351
|
+
} from "./chunk-wj3s95p9.js";
|
|
352
|
+
import {
|
|
353
|
+
AWSClient
|
|
354
|
+
} from "./chunk-zqtpg06c.js";
|
|
355
|
+
import {
|
|
356
|
+
AUTHORIZATION_CAPABILITIES,
|
|
357
|
+
AlertEvaluator,
|
|
358
|
+
AlertStore,
|
|
359
|
+
AnomalyConfigStore,
|
|
360
|
+
ApiServiceError,
|
|
361
|
+
AutomationApiService,
|
|
362
|
+
AwsSpendTransport,
|
|
363
|
+
CONTROL_PLANE_SCHEMA_VERSION,
|
|
364
|
+
CloudBlockVolumeDriver,
|
|
365
|
+
ComposeApplicationService,
|
|
366
|
+
ComposeApplicationStore,
|
|
367
|
+
ComputeSpendTransport,
|
|
368
|
+
ControlPlaneStore,
|
|
369
|
+
CounterTracker,
|
|
370
|
+
DEFAULT_METER_MAPPINGS,
|
|
371
|
+
DEFAULT_PRICE_BOOK,
|
|
372
|
+
DEFAULT_TELEMETRY_POLICY,
|
|
373
|
+
DEFAULT_THRESHOLDS,
|
|
374
|
+
DEPLOYMENT_QUEUE_KINDS,
|
|
375
|
+
DETECTABLE_SIGNALS,
|
|
376
|
+
DockerNamedVolumeDriver,
|
|
377
|
+
DurableOperationQueue,
|
|
378
|
+
DurableQueueWorker,
|
|
379
|
+
ENFORCEMENT_ACTIONS,
|
|
380
|
+
ENFORCEMENT_DESCRIPTIONS,
|
|
381
|
+
ENFORCEMENT_SEVERITY,
|
|
382
|
+
FOCUS_VERSION,
|
|
383
|
+
HealthCheckRunner,
|
|
384
|
+
InvalidOperationTransitionError,
|
|
385
|
+
MAX_CONTROL_PLANE_ERROR_BYTES,
|
|
386
|
+
MAX_CONTROL_PLANE_JSON_BYTES,
|
|
387
|
+
METERS,
|
|
388
|
+
METER_KEYS,
|
|
389
|
+
MICRO_CENTS,
|
|
390
|
+
MIN_PROJECTION_CONFIDENCE,
|
|
391
|
+
NotificationRouter,
|
|
392
|
+
OptimisticConcurrencyError,
|
|
393
|
+
PreviewEnvironmentService,
|
|
394
|
+
PreviewEnvironmentStore,
|
|
395
|
+
QueueCancellationError,
|
|
396
|
+
QueueTimeoutError,
|
|
397
|
+
RecordingSpendTransport,
|
|
398
|
+
RetryableOperationError,
|
|
399
|
+
SENSITIVITY_THRESHOLDS,
|
|
400
|
+
SPEND_CYCLE_SECONDS,
|
|
401
|
+
SPEND_GATE_SETTING,
|
|
402
|
+
SPEND_LEASE_SETTING,
|
|
403
|
+
ServerPathVolumeDriver,
|
|
404
|
+
SignalSource,
|
|
405
|
+
SpendCapError,
|
|
406
|
+
SpendGate,
|
|
407
|
+
SpendLoopLease,
|
|
408
|
+
SpendNotificationRouter,
|
|
409
|
+
SpendRunner,
|
|
410
|
+
SpendService,
|
|
411
|
+
SpendStore,
|
|
412
|
+
TelemetryStore,
|
|
413
|
+
URGENT_SPEND_EVENTS,
|
|
414
|
+
USER_VISIBLE_ACTIONS,
|
|
415
|
+
UnsupportedSchemaVersionError,
|
|
416
|
+
VolumeService,
|
|
417
|
+
VolumeStore,
|
|
418
|
+
aggregateDeltas,
|
|
419
|
+
anomalyOptionsForSignal,
|
|
420
|
+
assertSpendAllows,
|
|
421
|
+
authorizeOrganization,
|
|
422
|
+
budgetWindow,
|
|
423
|
+
buildComposeLogsCommand,
|
|
424
|
+
buildComposeRuntimeCommand,
|
|
425
|
+
buildComposeScaleCommand,
|
|
426
|
+
buildComposeShellCommand,
|
|
427
|
+
completeComposeVolumeDeletion,
|
|
428
|
+
composeProjectName,
|
|
429
|
+
compositeSpendTransport,
|
|
430
|
+
controlPlaneDatabaseFile,
|
|
431
|
+
controlPlaneMigrations,
|
|
432
|
+
createDeploymentQueueHandlers,
|
|
433
|
+
createEnforcementHandlers,
|
|
434
|
+
createVolumeQueueHandlers,
|
|
435
|
+
detectAnomalies,
|
|
436
|
+
detectLatestAnomaly,
|
|
437
|
+
diffCompose,
|
|
438
|
+
effectiveCapabilities,
|
|
439
|
+
evaluateBudget,
|
|
440
|
+
evaluateTelemetryAlertRules,
|
|
441
|
+
ewma,
|
|
442
|
+
exportCompose,
|
|
443
|
+
findMapping,
|
|
444
|
+
findPriceEntry,
|
|
445
|
+
formatCents,
|
|
446
|
+
formatTimeToExhaustion,
|
|
447
|
+
getComposeTemplate,
|
|
448
|
+
governingLimitCents,
|
|
449
|
+
handleSpendRequest,
|
|
450
|
+
hourBucket,
|
|
451
|
+
hourBucketsBetween,
|
|
452
|
+
isOperationAllowed,
|
|
453
|
+
isQuietHours,
|
|
454
|
+
isValidTimeZone,
|
|
455
|
+
listComposeTemplates,
|
|
456
|
+
loadTelemetryPolicy,
|
|
457
|
+
lookbackHoursForSignal,
|
|
458
|
+
median,
|
|
459
|
+
medianAbsoluteDeviation,
|
|
460
|
+
mergeDecisions,
|
|
461
|
+
mergePriceBooks,
|
|
462
|
+
meterTelemetry,
|
|
463
|
+
normalizeTelemetryPolicy,
|
|
464
|
+
optionsForSignal,
|
|
465
|
+
parseCompose,
|
|
466
|
+
parseComposeCatalog,
|
|
467
|
+
pathTemplate,
|
|
468
|
+
percentOfLimit,
|
|
469
|
+
planComposeTemplateUpgrade,
|
|
470
|
+
planEnforcement,
|
|
471
|
+
previousBudgetWindow,
|
|
472
|
+
priceUsage,
|
|
473
|
+
priceUsageLines,
|
|
474
|
+
projectSpend,
|
|
475
|
+
redactTelemetryText,
|
|
476
|
+
redactTelemetryValue,
|
|
477
|
+
renderComposeTemplate,
|
|
478
|
+
requestHash,
|
|
479
|
+
resolveQueuedDeploymentCommand,
|
|
480
|
+
robustZScore,
|
|
481
|
+
roleCapabilities,
|
|
482
|
+
roundCents,
|
|
483
|
+
routeMatches,
|
|
484
|
+
runEnforcement,
|
|
485
|
+
sanitizeControlPlaneValue,
|
|
486
|
+
saveTelemetryPolicy,
|
|
487
|
+
scopeContains,
|
|
488
|
+
scopeKey,
|
|
489
|
+
searchControlPlane,
|
|
490
|
+
signalDefinition,
|
|
491
|
+
spendNotificationText,
|
|
492
|
+
spendOpenApiPaths,
|
|
493
|
+
startSpendLoop,
|
|
494
|
+
streamFocusJsonl,
|
|
495
|
+
strongestActiveAction,
|
|
496
|
+
synchronizeComposeVolumes,
|
|
497
|
+
telemetryBucketLabel,
|
|
498
|
+
telemetryCursor,
|
|
499
|
+
telemetryEstimatedMonthlyCost,
|
|
500
|
+
telemetryPercentile,
|
|
501
|
+
telemetryPolicyKey,
|
|
502
|
+
tieredMicroCents,
|
|
503
|
+
toFocusJsonl,
|
|
504
|
+
toFocusRecords,
|
|
505
|
+
unsupportedVolumeCapabilities,
|
|
506
|
+
usageDeltaKey,
|
|
507
|
+
utcInstantOfLocal,
|
|
508
|
+
validateAttachment,
|
|
509
|
+
validateMountPath,
|
|
510
|
+
volumeCapabilities,
|
|
511
|
+
zeroFill,
|
|
512
|
+
zoneOffsetMs,
|
|
513
|
+
zonedParts
|
|
514
|
+
} from "./chunk-19bs955w.js";
|
|
515
|
+
import {
|
|
516
|
+
DEFAULT_ATTACK_MODE_HOURS,
|
|
517
|
+
MAX_CONTROL_HOURS,
|
|
518
|
+
ProtectionControlStore,
|
|
519
|
+
RATE_LIMIT_KEY_SEPARATOR,
|
|
520
|
+
RateLimiter as RateLimiter2,
|
|
521
|
+
applyControlsToDdos,
|
|
522
|
+
applyControlsToRateLimits,
|
|
523
|
+
defaultRateLimitRules,
|
|
524
|
+
describePosture,
|
|
525
|
+
globMatches,
|
|
526
|
+
rateLimitHeaders,
|
|
527
|
+
rateLimitKey,
|
|
528
|
+
ruleMatches
|
|
529
|
+
} from "./chunk-d48vtdj4.js";
|
|
530
|
+
import {
|
|
531
|
+
escapeSecLang,
|
|
532
|
+
globToRegex,
|
|
533
|
+
isSafePattern,
|
|
534
|
+
renderWafConfig,
|
|
535
|
+
renderWafInstallScript,
|
|
536
|
+
wafEventTelemetry
|
|
537
|
+
} from "./chunk-va2yd85b.js";
|
|
538
|
+
import {
|
|
539
|
+
DEFAULT_DDOS_THRESHOLDS,
|
|
540
|
+
applyMitigationFactor,
|
|
541
|
+
isValidCidr,
|
|
542
|
+
planMitigation,
|
|
543
|
+
renderDdosInstallScript,
|
|
544
|
+
renderNftablesRuleset,
|
|
545
|
+
renderSysctlFile,
|
|
546
|
+
sysctlHardening
|
|
547
|
+
} from "./chunk-aa2dkn7b.js";
|
|
409
548
|
import {
|
|
410
549
|
ABTestManager,
|
|
411
550
|
AI,
|
|
@@ -423,6 +562,7 @@ import {
|
|
|
423
562
|
BounceComplaintHandler,
|
|
424
563
|
BuildOptimizationManager,
|
|
425
564
|
CDN,
|
|
565
|
+
CHAIN_HEADER,
|
|
426
566
|
COMMON_CROSS_ACCOUNT_ROLES,
|
|
427
567
|
Cache,
|
|
428
568
|
CanaryManager,
|
|
@@ -441,8 +581,10 @@ import {
|
|
|
441
581
|
DASHBOARD_PORT_BASE,
|
|
442
582
|
DASHBOARD_PORT_SPAN,
|
|
443
583
|
DASHBOARD_STATE_DIR,
|
|
584
|
+
DEFAULT_RECURSION_LIMITS,
|
|
444
585
|
DEFAULT_SERVICE_LIMITS,
|
|
445
586
|
DEFAULT_STATE_DIR,
|
|
587
|
+
DEPTH_HEADER,
|
|
446
588
|
DLQMonitoringManager,
|
|
447
589
|
DNS,
|
|
448
590
|
DNSSECManager,
|
|
@@ -511,6 +653,7 @@ import {
|
|
|
511
653
|
REPLContext,
|
|
512
654
|
RateLimiter,
|
|
513
655
|
RealtimePresets,
|
|
656
|
+
RecursionGuard,
|
|
514
657
|
Redirects,
|
|
515
658
|
RegionPairManager,
|
|
516
659
|
Registry,
|
|
@@ -538,6 +681,7 @@ import {
|
|
|
538
681
|
Storage,
|
|
539
682
|
StorageAdvancedManager,
|
|
540
683
|
SyntheticsManager,
|
|
684
|
+
TRACE_HEADER,
|
|
541
685
|
TaskList,
|
|
542
686
|
TemplateBuilder,
|
|
543
687
|
TemplateCache,
|
|
@@ -563,6 +707,7 @@ import {
|
|
|
563
707
|
categorizeChanges,
|
|
564
708
|
certificateManager,
|
|
565
709
|
checkIAMPermissions,
|
|
710
|
+
checkInvocation,
|
|
566
711
|
checkServiceQuotas,
|
|
567
712
|
chunk,
|
|
568
713
|
clearSigningKeyCache,
|
|
@@ -645,6 +790,7 @@ import {
|
|
|
645
790
|
fromEnvironment,
|
|
646
791
|
fromSharedCredentials,
|
|
647
792
|
fromWebIdentity,
|
|
793
|
+
functionFingerprint,
|
|
648
794
|
generateAppImageDockerfile,
|
|
649
795
|
generateApprovalConfig,
|
|
650
796
|
generateBootstrap,
|
|
@@ -704,6 +850,9 @@ import {
|
|
|
704
850
|
hashString,
|
|
705
851
|
healthCheckManager,
|
|
706
852
|
imageScanningManager,
|
|
853
|
+
inspectInvocation,
|
|
854
|
+
installRecursionFetch,
|
|
855
|
+
invocationContext,
|
|
707
856
|
isLikelyTypo,
|
|
708
857
|
isLocalDevelopment,
|
|
709
858
|
isManagementDashboardSiteName,
|
|
@@ -735,6 +884,7 @@ import {
|
|
|
735
884
|
parallel,
|
|
736
885
|
parallelMap,
|
|
737
886
|
parallelWithRetry,
|
|
887
|
+
parseChain,
|
|
738
888
|
parseJSONResponse,
|
|
739
889
|
parseXMLResponse,
|
|
740
890
|
performanceManager,
|
|
@@ -745,11 +895,14 @@ import {
|
|
|
745
895
|
previewNotifications,
|
|
746
896
|
processInChunks,
|
|
747
897
|
progressiveDeploymentManager,
|
|
898
|
+
propagationHeaders,
|
|
748
899
|
queueManagementManager,
|
|
749
900
|
quickHash,
|
|
901
|
+
recursionBlockedResponse,
|
|
750
902
|
regionPairManager,
|
|
751
903
|
replicaManager,
|
|
752
904
|
requiresReplacement,
|
|
905
|
+
resetRecursionRuntime,
|
|
753
906
|
resolveApp,
|
|
754
907
|
resolveAppDatabase,
|
|
755
908
|
resolveCloudProvider,
|
|
@@ -763,6 +916,7 @@ import {
|
|
|
763
916
|
resolveProjectStackName,
|
|
764
917
|
resolveQueueNames,
|
|
765
918
|
resolveQueues,
|
|
919
|
+
resolveRecursionConfig,
|
|
766
920
|
resolveRegion,
|
|
767
921
|
resolveServerlessAppStackName,
|
|
768
922
|
resolveServerlessArtifactBucketName,
|
|
@@ -790,6 +944,7 @@ import {
|
|
|
790
944
|
serviceMeshManager,
|
|
791
945
|
setStateDir,
|
|
792
946
|
sha256,
|
|
947
|
+
sharedRecursionGuard,
|
|
793
948
|
sharedRuntimeLoop,
|
|
794
949
|
signRequest,
|
|
795
950
|
signRequestAsync,
|
|
@@ -814,33 +969,13 @@ import {
|
|
|
814
969
|
withCDN,
|
|
815
970
|
withCache,
|
|
816
971
|
withDatabase,
|
|
972
|
+
withInvocation,
|
|
817
973
|
withMonitoring,
|
|
818
974
|
withQueue,
|
|
819
975
|
withSecurity,
|
|
820
976
|
withTimeout,
|
|
821
977
|
xrayManager
|
|
822
|
-
} from "./chunk-
|
|
823
|
-
import {
|
|
824
|
-
EC2Client,
|
|
825
|
-
SSMClient
|
|
826
|
-
} from "./chunk-7m60qnc8.js";
|
|
827
|
-
import {
|
|
828
|
-
CloudFormationClient
|
|
829
|
-
} from "./chunk-4cjrg98a.js";
|
|
830
|
-
import {
|
|
831
|
-
EmailClient,
|
|
832
|
-
IAMClient,
|
|
833
|
-
SESClient
|
|
834
|
-
} from "./chunk-hpv68b4a.js";
|
|
835
|
-
import {
|
|
836
|
-
Route53Client
|
|
837
|
-
} from "./chunk-32e7ya18.js";
|
|
838
|
-
import {
|
|
839
|
-
S3Client
|
|
840
|
-
} from "./chunk-wj3s95p9.js";
|
|
841
|
-
import {
|
|
842
|
-
AWSClient
|
|
843
|
-
} from "./chunk-zqtpg06c.js";
|
|
978
|
+
} from "./chunk-t2s3gdq6.js";
|
|
844
979
|
import {
|
|
845
980
|
__require
|
|
846
981
|
} from "./chunk-v0bahtg2.js";
|
|
@@ -5113,6 +5248,9 @@ class AcmeClient {
|
|
|
5113
5248
|
}
|
|
5114
5249
|
}
|
|
5115
5250
|
export {
|
|
5251
|
+
zonedParts,
|
|
5252
|
+
zoneOffsetMs,
|
|
5253
|
+
zeroFill,
|
|
5116
5254
|
zeroCapacity,
|
|
5117
5255
|
xrayManager,
|
|
5118
5256
|
wrapCloudInitUserData,
|
|
@@ -5120,12 +5258,14 @@ export {
|
|
|
5120
5258
|
withSecurity,
|
|
5121
5259
|
withQueue,
|
|
5122
5260
|
withMonitoring,
|
|
5261
|
+
withInvocation,
|
|
5123
5262
|
withDatabase,
|
|
5124
5263
|
withCache,
|
|
5125
5264
|
withCDN,
|
|
5126
5265
|
webhookEndpoint,
|
|
5127
5266
|
waitForSsh,
|
|
5128
5267
|
waitForCloudInit,
|
|
5268
|
+
wafEventTelemetry,
|
|
5129
5269
|
volumeCapabilities,
|
|
5130
5270
|
verifyUpdateSignature,
|
|
5131
5271
|
verifyTotp,
|
|
@@ -5144,12 +5284,17 @@ export {
|
|
|
5144
5284
|
validateAttachment,
|
|
5145
5285
|
validateAgainstSchema,
|
|
5146
5286
|
validateAccountStructure,
|
|
5287
|
+
utcInstantOfLocal,
|
|
5288
|
+
usageDeltaKey,
|
|
5147
5289
|
uploadStaticFiles,
|
|
5148
5290
|
updateCompatibility,
|
|
5149
5291
|
unsupportedVolumeCapabilities,
|
|
5150
5292
|
unsupportedCapabilities,
|
|
5151
5293
|
totpUri,
|
|
5152
5294
|
totp,
|
|
5295
|
+
toFocusRecords,
|
|
5296
|
+
toFocusJsonl,
|
|
5297
|
+
tieredMicroCents,
|
|
5153
5298
|
testSourceConnection,
|
|
5154
5299
|
templateCache,
|
|
5155
5300
|
telemetryPolicyKey,
|
|
@@ -5158,6 +5303,7 @@ export {
|
|
|
5158
5303
|
telemetryCursor,
|
|
5159
5304
|
telemetryBucketLabel,
|
|
5160
5305
|
systemdWorkloads,
|
|
5306
|
+
sysctlHardening,
|
|
5161
5307
|
syntheticsManager,
|
|
5162
5308
|
synchronizeConfiguredJobs,
|
|
5163
5309
|
synchronizeConfiguredConfiguration,
|
|
@@ -5169,19 +5315,26 @@ export {
|
|
|
5169
5315
|
suggestIAMPolicy,
|
|
5170
5316
|
suggestFlags,
|
|
5171
5317
|
suggestCommand,
|
|
5318
|
+
strongestActiveAction,
|
|
5319
|
+
streamFocusJsonl,
|
|
5172
5320
|
storageAdvancedManager,
|
|
5173
5321
|
staticSiteManager,
|
|
5174
5322
|
statePath,
|
|
5175
5323
|
stateDir,
|
|
5324
|
+
startSpendLoop,
|
|
5176
5325
|
startLocalDashboardServer,
|
|
5177
5326
|
stackDependencyManager,
|
|
5178
5327
|
sshExecOrThrow,
|
|
5179
5328
|
sshExec,
|
|
5329
|
+
spendOpenApiPaths,
|
|
5330
|
+
spendNotificationText,
|
|
5331
|
+
signalDefinition,
|
|
5180
5332
|
signRequestAsync,
|
|
5181
5333
|
signRequest,
|
|
5182
5334
|
signCloudFrontUrl,
|
|
5183
5335
|
signCloudFrontCookies,
|
|
5184
5336
|
sharedRuntimeLoop,
|
|
5337
|
+
sharedRecursionGuard,
|
|
5185
5338
|
sha256,
|
|
5186
5339
|
setupDns01Challenge,
|
|
5187
5340
|
setStateDir,
|
|
@@ -5201,6 +5354,7 @@ export {
|
|
|
5201
5354
|
searchControlPlane,
|
|
5202
5355
|
searchCommands,
|
|
5203
5356
|
scpUpload,
|
|
5357
|
+
scopeKey,
|
|
5204
5358
|
scopeContains,
|
|
5205
5359
|
scanForSecrets,
|
|
5206
5360
|
saveTelemetryPolicy,
|
|
@@ -5211,12 +5365,17 @@ export {
|
|
|
5211
5365
|
runtimeId,
|
|
5212
5366
|
runRemoteCommand,
|
|
5213
5367
|
runPhpBuildHooks,
|
|
5368
|
+
runEnforcement,
|
|
5214
5369
|
runBuildHooks,
|
|
5370
|
+
ruleMatches,
|
|
5371
|
+
routeMatches,
|
|
5215
5372
|
route53RoutingManager,
|
|
5216
5373
|
route53ResolverManager,
|
|
5374
|
+
roundCents,
|
|
5217
5375
|
rollbackServerlessApp,
|
|
5218
5376
|
rollbackImmutableRelease,
|
|
5219
5377
|
roleCapabilities,
|
|
5378
|
+
robustZScore,
|
|
5220
5379
|
responseToResult,
|
|
5221
5380
|
resourceManagementManager,
|
|
5222
5381
|
resolveUiSource,
|
|
@@ -5233,6 +5392,7 @@ export {
|
|
|
5233
5392
|
resolveServerlessAppStackName,
|
|
5234
5393
|
resolveRuntimeInventory,
|
|
5235
5394
|
resolveRegion,
|
|
5395
|
+
resolveRecursionConfig,
|
|
5236
5396
|
resolveQueues,
|
|
5237
5397
|
resolveQueuedDeploymentCommand,
|
|
5238
5398
|
resolveQueueNames,
|
|
@@ -5253,11 +5413,17 @@ export {
|
|
|
5253
5413
|
resolveAuthEncryptionKey,
|
|
5254
5414
|
resolveAppDatabase,
|
|
5255
5415
|
resolveApp,
|
|
5416
|
+
resetRecursionRuntime,
|
|
5256
5417
|
requiresReplacement,
|
|
5257
5418
|
requestHash,
|
|
5258
5419
|
replicaManager,
|
|
5259
5420
|
renewRpxCertificates,
|
|
5421
|
+
renderWafInstallScript,
|
|
5422
|
+
renderWafConfig,
|
|
5423
|
+
renderSysctlFile,
|
|
5260
5424
|
renderServerCron,
|
|
5425
|
+
renderNftablesRuleset,
|
|
5426
|
+
renderDdosInstallScript,
|
|
5261
5427
|
renderComposeTemplate,
|
|
5262
5428
|
removeStaleServerAddressRecords,
|
|
5263
5429
|
removeSourceWebhook,
|
|
@@ -5270,28 +5436,39 @@ export {
|
|
|
5270
5436
|
redactTelemetryValue,
|
|
5271
5437
|
redactTelemetryText,
|
|
5272
5438
|
redactRuntimeConfig,
|
|
5439
|
+
recursionBlockedResponse,
|
|
5273
5440
|
recordSkippedSecretScan,
|
|
5274
5441
|
recordPreDeploySecretScan,
|
|
5275
5442
|
recordDashboardHostPosture,
|
|
5276
5443
|
reconcileSourceWebhook,
|
|
5277
5444
|
reconcileJobObservation,
|
|
5278
5445
|
reconcileAddressRecords,
|
|
5446
|
+
rateLimitKey,
|
|
5447
|
+
rateLimitHeaders,
|
|
5279
5448
|
quickHash,
|
|
5280
5449
|
queueManagementManager,
|
|
5281
5450
|
publicKeyFingerprint,
|
|
5282
5451
|
providerEndpoint,
|
|
5452
|
+
propagationHeaders,
|
|
5453
|
+
projectSpend,
|
|
5283
5454
|
progressiveDeploymentManager,
|
|
5284
5455
|
productionChangeReview,
|
|
5285
5456
|
processSourceWebhook,
|
|
5286
5457
|
processInChunks,
|
|
5458
|
+
priceUsageLines,
|
|
5459
|
+
priceUsage,
|
|
5460
|
+
previousBudgetWindow,
|
|
5287
5461
|
previewSchedule,
|
|
5288
5462
|
previewNotifications,
|
|
5289
5463
|
previewManager,
|
|
5464
|
+
planMitigation,
|
|
5465
|
+
planEnforcement,
|
|
5290
5466
|
planComposeTemplateUpgrade,
|
|
5291
5467
|
phpRuntimeLayerAssets,
|
|
5292
5468
|
phpLayerPackages,
|
|
5293
5469
|
phpLayerBuildStage,
|
|
5294
5470
|
performanceManager,
|
|
5471
|
+
percentOfLimit,
|
|
5295
5472
|
pathTemplate,
|
|
5296
5473
|
parseXMLResponse,
|
|
5297
5474
|
parseSystemdRecords,
|
|
@@ -5300,12 +5477,14 @@ export {
|
|
|
5300
5477
|
parseDockerInspect,
|
|
5301
5478
|
parseComposeCatalog,
|
|
5302
5479
|
parseCompose,
|
|
5480
|
+
parseChain,
|
|
5303
5481
|
parallelWithRetry,
|
|
5304
5482
|
parallelMap,
|
|
5305
5483
|
parallel,
|
|
5306
5484
|
packageServerlessApp,
|
|
5307
5485
|
packagePhpApp,
|
|
5308
5486
|
organizationManager,
|
|
5487
|
+
optionsForSignal,
|
|
5309
5488
|
openApiDocument,
|
|
5310
5489
|
normalizeTelemetryPolicy,
|
|
5311
5490
|
normalizeSshPublicKey,
|
|
@@ -5321,7 +5500,12 @@ export {
|
|
|
5321
5500
|
migrationManager,
|
|
5322
5501
|
migrateObjectStorage,
|
|
5323
5502
|
metricsManager,
|
|
5503
|
+
meterTelemetry,
|
|
5504
|
+
mergePriceBooks,
|
|
5324
5505
|
mergeInfrastructure,
|
|
5506
|
+
mergeDecisions,
|
|
5507
|
+
medianAbsoluteDeviation,
|
|
5508
|
+
median,
|
|
5325
5509
|
mediaObjectHeaders,
|
|
5326
5510
|
matchTotpCounter,
|
|
5327
5511
|
manifestDigest,
|
|
@@ -5330,6 +5514,7 @@ export {
|
|
|
5330
5514
|
makeAWSRequestAsync,
|
|
5331
5515
|
makeAWSRequest,
|
|
5332
5516
|
maintenanceWindowOpen,
|
|
5517
|
+
lookbackHoursForSignal,
|
|
5333
5518
|
logsManager,
|
|
5334
5519
|
loadTelemetryPolicy,
|
|
5335
5520
|
loadCloudConfig,
|
|
@@ -5346,16 +5531,25 @@ export {
|
|
|
5346
5531
|
keyMatchesFilters,
|
|
5347
5532
|
jobProviderCapability,
|
|
5348
5533
|
isWebCryptoAvailable,
|
|
5534
|
+
isValidTimeZone,
|
|
5349
5535
|
isValidRegion,
|
|
5536
|
+
isValidCidr,
|
|
5350
5537
|
isStatePath,
|
|
5538
|
+
isSafePattern,
|
|
5351
5539
|
isQuietHours,
|
|
5540
|
+
isOperationAllowed,
|
|
5352
5541
|
isNodeCryptoAvailable,
|
|
5353
5542
|
isManagementDashboardSiteName,
|
|
5354
5543
|
isLocalDevelopment,
|
|
5355
5544
|
isLikelyTypo,
|
|
5545
|
+
invocationContext,
|
|
5356
5546
|
invalidateCache,
|
|
5547
|
+
installRecursionFetch,
|
|
5548
|
+
inspectInvocation,
|
|
5357
5549
|
infraEnvFromOutputs,
|
|
5358
5550
|
imageScanningManager,
|
|
5551
|
+
hourBucketsBetween,
|
|
5552
|
+
hourBucket,
|
|
5359
5553
|
hotp,
|
|
5360
5554
|
hostAcceptsIpv6,
|
|
5361
5555
|
healthCheckManager,
|
|
@@ -5365,8 +5559,12 @@ export {
|
|
|
5365
5559
|
hashDirectory,
|
|
5366
5560
|
hashBuffer,
|
|
5367
5561
|
hasManagementDashboardSite,
|
|
5562
|
+
handleSpendRequest,
|
|
5368
5563
|
guardDutyManager,
|
|
5564
|
+
governingLimitCents,
|
|
5369
5565
|
globalResourceManager,
|
|
5566
|
+
globToRegex,
|
|
5567
|
+
globMatches,
|
|
5370
5568
|
getTimestamp,
|
|
5371
5569
|
getSigningKeyCacheSize,
|
|
5372
5570
|
getRequiredPermissions,
|
|
@@ -5425,12 +5623,14 @@ export {
|
|
|
5425
5623
|
generateBootstrap,
|
|
5426
5624
|
generateApprovalConfig,
|
|
5427
5625
|
generateAppImageDockerfile,
|
|
5626
|
+
functionFingerprint,
|
|
5428
5627
|
fromWebIdentity,
|
|
5429
5628
|
fromSharedCredentials,
|
|
5430
5629
|
fromEnvironment,
|
|
5431
5630
|
fromECSMetadata,
|
|
5432
5631
|
fromEC2Metadata,
|
|
5433
5632
|
formatTree,
|
|
5633
|
+
formatTimeToExhaustion,
|
|
5434
5634
|
formatTable,
|
|
5435
5635
|
formatSuggestion,
|
|
5436
5636
|
formatScanResults,
|
|
@@ -5444,15 +5644,21 @@ export {
|
|
|
5444
5644
|
formatFlagSuggestions,
|
|
5445
5645
|
formatDuration,
|
|
5446
5646
|
formatDiff,
|
|
5647
|
+
formatCents,
|
|
5447
5648
|
formatBytes,
|
|
5448
5649
|
formatAccountStructure,
|
|
5650
|
+
findPriceEntry,
|
|
5651
|
+
findMapping,
|
|
5449
5652
|
findChangedFiles,
|
|
5450
5653
|
fifoQueueManager,
|
|
5451
5654
|
extendPreset,
|
|
5452
5655
|
exportCompose,
|
|
5656
|
+
ewma,
|
|
5453
5657
|
eventToRequest,
|
|
5454
5658
|
eventBridgeScheduleInput,
|
|
5455
5659
|
evaluateTelemetryAlertRules,
|
|
5660
|
+
evaluateBudget,
|
|
5661
|
+
escapeSecLang,
|
|
5456
5662
|
ensureSshKey,
|
|
5457
5663
|
ensureServer,
|
|
5458
5664
|
ensureManagementDashboard,
|
|
@@ -5477,9 +5683,12 @@ export {
|
|
|
5477
5683
|
diffCompose,
|
|
5478
5684
|
detectServiceRegion,
|
|
5479
5685
|
detectMisconfigurations,
|
|
5686
|
+
detectLatestAnomaly,
|
|
5480
5687
|
detectDnsProvider,
|
|
5481
5688
|
detectDeploymentTargets,
|
|
5689
|
+
detectAnomalies,
|
|
5482
5690
|
desiredState as desiredJobProviderState,
|
|
5691
|
+
describePosture,
|
|
5483
5692
|
deriveManagementDashboardPort,
|
|
5484
5693
|
deploymentCoexistenceError,
|
|
5485
5694
|
deployStaticSiteWithExternalDnsFull,
|
|
@@ -5491,6 +5700,7 @@ export {
|
|
|
5491
5700
|
deployServerlessApp,
|
|
5492
5701
|
deployAllComputeSites,
|
|
5493
5702
|
deleteStaticSite,
|
|
5703
|
+
defaultRateLimitRules,
|
|
5494
5704
|
defaultLocalConfig,
|
|
5495
5705
|
defaultConfig,
|
|
5496
5706
|
decryptBackup,
|
|
@@ -5541,6 +5751,7 @@ export {
|
|
|
5541
5751
|
createFleetQueueHandlers,
|
|
5542
5752
|
createExistingStaticFullStackPreset,
|
|
5543
5753
|
createError,
|
|
5754
|
+
createEnforcementHandlers,
|
|
5544
5755
|
createEcsBuildDriver,
|
|
5545
5756
|
createDnsProvider,
|
|
5546
5757
|
createDeploymentQueueHandlers,
|
|
@@ -5561,6 +5772,7 @@ export {
|
|
|
5561
5772
|
connectionGuidance,
|
|
5562
5773
|
config,
|
|
5563
5774
|
compressBackup,
|
|
5775
|
+
compositeSpendTransport,
|
|
5564
5776
|
composeServerlessAppTemplate,
|
|
5565
5777
|
composeProjectName,
|
|
5566
5778
|
composePresets,
|
|
@@ -5576,6 +5788,7 @@ export {
|
|
|
5576
5788
|
cleanupDns01Challenge,
|
|
5577
5789
|
chunk,
|
|
5578
5790
|
checkServiceQuotas,
|
|
5791
|
+
checkInvocation,
|
|
5579
5792
|
checkIAMPermissions,
|
|
5580
5793
|
certificateManager,
|
|
5581
5794
|
categorizeChanges,
|
|
@@ -5601,6 +5814,7 @@ export {
|
|
|
5601
5814
|
buildCloudFormationTemplate,
|
|
5602
5815
|
buildBunRuntimeLayerZip,
|
|
5603
5816
|
buildAndPushServerlessImage,
|
|
5817
|
+
budgetWindow,
|
|
5604
5818
|
bounceComplaintHandler,
|
|
5605
5819
|
blueGreenManager,
|
|
5606
5820
|
beginOidcAuthorization,
|
|
@@ -5616,9 +5830,15 @@ export {
|
|
|
5616
5830
|
attachVulnerabilitySummary,
|
|
5617
5831
|
attachSbomToRelease,
|
|
5618
5832
|
attachProvenanceToRelease,
|
|
5833
|
+
assertSpendAllows,
|
|
5619
5834
|
assertReleaseStrategy,
|
|
5620
5835
|
artifactKey,
|
|
5836
|
+
applyMitigationFactor,
|
|
5837
|
+
applyControlsToRateLimits,
|
|
5838
|
+
applyControlsToDdos,
|
|
5839
|
+
anomalyOptionsForSignal,
|
|
5621
5840
|
analyzeStackDiff,
|
|
5841
|
+
aggregateDeltas,
|
|
5622
5842
|
ageSeconds,
|
|
5623
5843
|
activateImmutableRelease,
|
|
5624
5844
|
abTestManager,
|
|
@@ -5631,6 +5851,8 @@ export {
|
|
|
5631
5851
|
UnsupportedSchemaVersionError,
|
|
5632
5852
|
UnifiedDnsValidator,
|
|
5633
5853
|
UnavailableRegionalDriver,
|
|
5854
|
+
USER_VISIBLE_ACTIONS,
|
|
5855
|
+
URGENT_SPEND_EVENTS,
|
|
5634
5856
|
TsCloudClient,
|
|
5635
5857
|
TsCloudApiError,
|
|
5636
5858
|
TrivyImageScanner,
|
|
@@ -5644,6 +5866,7 @@ export {
|
|
|
5644
5866
|
TemplateBuilder,
|
|
5645
5867
|
TelemetryStore,
|
|
5646
5868
|
TaskList,
|
|
5869
|
+
TRACE_HEADER,
|
|
5647
5870
|
SystemdDiscoveryAdapter,
|
|
5648
5871
|
SystemFleetSshTransport,
|
|
5649
5872
|
SyntheticsManager,
|
|
@@ -5655,11 +5878,19 @@ export {
|
|
|
5655
5878
|
StackDependencyManager,
|
|
5656
5879
|
SshFleetDriver,
|
|
5657
5880
|
Spinner,
|
|
5881
|
+
SpendStore,
|
|
5882
|
+
SpendService,
|
|
5883
|
+
SpendRunner,
|
|
5884
|
+
SpendNotificationRouter,
|
|
5885
|
+
SpendLoopLease,
|
|
5886
|
+
SpendGate,
|
|
5887
|
+
SpendCapError,
|
|
5658
5888
|
SourceProviderError,
|
|
5659
5889
|
SourceConnectionStore,
|
|
5660
5890
|
exports_send as SmsHandlers,
|
|
5661
5891
|
SmsClient,
|
|
5662
5892
|
exports_advanced3 as SmsAdvanced,
|
|
5893
|
+
SignalSource,
|
|
5663
5894
|
Sftp,
|
|
5664
5895
|
ServiceMeshManager,
|
|
5665
5896
|
ServerPathVolumeDriver,
|
|
@@ -5682,9 +5913,13 @@ export {
|
|
|
5682
5913
|
STATE_DIR_ENV_VAR,
|
|
5683
5914
|
SSMClient,
|
|
5684
5915
|
SQSClient,
|
|
5916
|
+
SPEND_LEASE_SETTING,
|
|
5917
|
+
SPEND_GATE_SETTING,
|
|
5918
|
+
SPEND_CYCLE_SECONDS,
|
|
5685
5919
|
SNSClient,
|
|
5686
5920
|
SMS,
|
|
5687
5921
|
SESClient,
|
|
5922
|
+
SENSITIVITY_THRESHOLDS,
|
|
5688
5923
|
SECRET_PATTERNS,
|
|
5689
5924
|
S3Error,
|
|
5690
5925
|
S3Client,
|
|
@@ -5708,6 +5943,8 @@ export {
|
|
|
5708
5943
|
RegionService,
|
|
5709
5944
|
RegionPairManager,
|
|
5710
5945
|
Redirects,
|
|
5946
|
+
RecursionGuard,
|
|
5947
|
+
RecordingSpendTransport,
|
|
5711
5948
|
RealtimePresets,
|
|
5712
5949
|
RateLimiter,
|
|
5713
5950
|
REPLContext,
|
|
@@ -5717,12 +5954,14 @@ export {
|
|
|
5717
5954
|
RECOMMENDED_SCPS,
|
|
5718
5955
|
RECOMMENDED_ACCOUNT_STRUCTURES,
|
|
5719
5956
|
RDSClient,
|
|
5957
|
+
RATE_LIMIT_KEY_SEPARATOR,
|
|
5720
5958
|
QueueTimeoutError,
|
|
5721
5959
|
QueuePresets,
|
|
5722
5960
|
QueueManagementManager,
|
|
5723
5961
|
QueueCancellationError,
|
|
5724
5962
|
Queue,
|
|
5725
5963
|
Pseudo,
|
|
5964
|
+
ProtectionControlStore,
|
|
5726
5965
|
ProgressiveDeploymentManager,
|
|
5727
5966
|
ProgressBar,
|
|
5728
5967
|
PreviewNotificationService,
|
|
@@ -5761,8 +6000,13 @@ export {
|
|
|
5761
6000
|
Messaging,
|
|
5762
6001
|
MaintenanceStore,
|
|
5763
6002
|
MaintenanceService,
|
|
6003
|
+
MIN_PROJECTION_CONFIDENCE,
|
|
6004
|
+
MICRO_CENTS,
|
|
6005
|
+
METER_KEYS,
|
|
6006
|
+
METERS,
|
|
5764
6007
|
MAX_CONTROL_PLANE_JSON_BYTES,
|
|
5765
6008
|
MAX_CONTROL_PLANE_ERROR_BYTES,
|
|
6009
|
+
MAX_CONTROL_HOURS,
|
|
5766
6010
|
MANAGEMENT_DASHBOARD_SITE_PREFIX,
|
|
5767
6011
|
MANAGEMENT_DASHBOARD_SITE,
|
|
5768
6012
|
MANAGED_NODE_VERSIONS,
|
|
@@ -5805,6 +6049,7 @@ export {
|
|
|
5805
6049
|
FilesystemBackupSource,
|
|
5806
6050
|
FileSystem,
|
|
5807
6051
|
FileCache,
|
|
6052
|
+
FOCUS_VERSION,
|
|
5808
6053
|
FIFOQueueManager,
|
|
5809
6054
|
ExternalConfigurationBackend,
|
|
5810
6055
|
EventBridgeJobAdapter,
|
|
@@ -5818,7 +6063,11 @@ export {
|
|
|
5818
6063
|
exports_advanced as EmailAdvanced,
|
|
5819
6064
|
Email,
|
|
5820
6065
|
ElastiCacheClient,
|
|
6066
|
+
RateLimiter2 as EdgeRateLimiter,
|
|
5821
6067
|
EcsRuntimeAdapter,
|
|
6068
|
+
ENFORCEMENT_SEVERITY,
|
|
6069
|
+
ENFORCEMENT_DESCRIPTIONS,
|
|
6070
|
+
ENFORCEMENT_ACTIONS,
|
|
5822
6071
|
ELBv2Client,
|
|
5823
6072
|
EFSClient,
|
|
5824
6073
|
ECSClient,
|
|
@@ -5845,16 +6094,25 @@ export {
|
|
|
5845
6094
|
DNS,
|
|
5846
6095
|
DLQMonitoringManager,
|
|
5847
6096
|
DIAGNOSTIC_PRESETS,
|
|
6097
|
+
DETECTABLE_SIGNALS,
|
|
6098
|
+
DEPTH_HEADER,
|
|
5848
6099
|
DEPLOYMENT_QUEUE_KINDS,
|
|
6100
|
+
DEFAULT_THRESHOLDS,
|
|
5849
6101
|
DEFAULT_TELEMETRY_POLICY,
|
|
5850
6102
|
DEFAULT_STATE_DIR,
|
|
5851
6103
|
DEFAULT_SERVICE_LIMITS,
|
|
6104
|
+
DEFAULT_RECURSION_LIMITS,
|
|
6105
|
+
DEFAULT_PRICE_BOOK,
|
|
6106
|
+
DEFAULT_METER_MAPPINGS,
|
|
6107
|
+
DEFAULT_DDOS_THRESHOLDS,
|
|
6108
|
+
DEFAULT_ATTACK_MODE_HOURS,
|
|
5852
6109
|
DASHBOARD_STATE_DIR,
|
|
5853
6110
|
DASHBOARD_PORT_SPAN,
|
|
5854
6111
|
DASHBOARD_PORT_BASE,
|
|
5855
6112
|
DASHBOARD_ENTRY,
|
|
5856
6113
|
CrossRegionReferenceManager,
|
|
5857
6114
|
CredentialError,
|
|
6115
|
+
CounterTracker,
|
|
5858
6116
|
ControlPlaneStore,
|
|
5859
6117
|
ControlPlaneCleanupDriver,
|
|
5860
6118
|
ControlPlaneBackupSource,
|
|
@@ -5864,6 +6122,7 @@ export {
|
|
|
5864
6122
|
ConfigurationStore,
|
|
5865
6123
|
ConfigurationService,
|
|
5866
6124
|
ConfigurationError,
|
|
6125
|
+
ComputeSpendTransport,
|
|
5867
6126
|
Compute,
|
|
5868
6127
|
ComprehendClient,
|
|
5869
6128
|
ComposeApplicationStore,
|
|
@@ -5883,6 +6142,7 @@ export {
|
|
|
5883
6142
|
Cache,
|
|
5884
6143
|
CONTROL_PLANE_SCHEMA_VERSION,
|
|
5885
6144
|
COMMON_CROSS_ACCOUNT_ROLES,
|
|
6145
|
+
CHAIN_HEADER,
|
|
5886
6146
|
CDN,
|
|
5887
6147
|
BunFilesystemArchiveRuntime,
|
|
5888
6148
|
BunDockerVolumeRuntime,
|
|
@@ -5898,6 +6158,7 @@ export {
|
|
|
5898
6158
|
BackupManager,
|
|
5899
6159
|
BackupCoordinator,
|
|
5900
6160
|
AwsSsmConfigurationBackend,
|
|
6161
|
+
AwsSpendTransport,
|
|
5901
6162
|
AwsSecretsManagerConfigurationBackend,
|
|
5902
6163
|
AwsRegionalDriver,
|
|
5903
6164
|
AwsRdsTransport,
|
|
@@ -5919,6 +6180,7 @@ export {
|
|
|
5919
6180
|
ApplicationAutoScalingClient,
|
|
5920
6181
|
ApiServiceError,
|
|
5921
6182
|
ApiGateway,
|
|
6183
|
+
AnomalyConfigStore,
|
|
5922
6184
|
AlertStore,
|
|
5923
6185
|
AlertEvaluator,
|
|
5924
6186
|
AcmeClient,
|