@stacksjs/ts-cloud 0.5.8 → 0.5.10
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/aws/lambda.d.ts +12 -0
- package/dist/bin/cli.js +551 -551
- package/dist/deploy/serverless-app.d.ts +29 -0
- package/dist/index.js +86 -5
- package/package.json +3 -3
package/dist/aws/lambda.d.ts
CHANGED
|
@@ -198,6 +198,18 @@ export declare class LambdaClient {
|
|
|
198
198
|
Name?: string;
|
|
199
199
|
FunctionVersion?: string;
|
|
200
200
|
}>;
|
|
201
|
+
/** Read an alias (e.g. the version `live` points at). Returns null if absent. */
|
|
202
|
+
getAlias(functionName: string, name: string): Promise<{
|
|
203
|
+
Name?: string;
|
|
204
|
+
FunctionVersion?: string;
|
|
205
|
+
AliasArn?: string;
|
|
206
|
+
} | null>;
|
|
207
|
+
/** Read a provisioned-concurrency config for a qualifier. Returns null if none. */
|
|
208
|
+
getProvisionedConcurrencyConfig(functionName: string, qualifier: string): Promise<{
|
|
209
|
+
Status?: string;
|
|
210
|
+
RequestedProvisionedConcurrentExecutions?: number;
|
|
211
|
+
AllocatedProvisionedConcurrentExecutions?: number;
|
|
212
|
+
} | null>;
|
|
201
213
|
/** Pre-provision N warm execution environments on a function version/alias. */
|
|
202
214
|
putProvisionedConcurrencyConfig(params: {
|
|
203
215
|
FunctionName: string;
|