sim-setup 1.0.4 → 1.0.5-preview.60.1
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/index.js +220 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1570,7 +1570,7 @@ var init_env_capabilities = __esm(() => {
|
|
|
1570
1570
|
var integrations_default;
|
|
1571
1571
|
var init_integrations = __esm(() => {
|
|
1572
1572
|
integrations_default = {
|
|
1573
|
-
updatedAt: "2026-08-
|
|
1573
|
+
updatedAt: "2026-08-28",
|
|
1574
1574
|
integrations: [
|
|
1575
1575
|
{
|
|
1576
1576
|
type: "onepassword",
|
|
@@ -14190,6 +14190,225 @@ var init_integrations = __esm(() => {
|
|
|
14190
14190
|
integrationType: "security",
|
|
14191
14191
|
tags: ["identity"]
|
|
14192
14192
|
},
|
|
14193
|
+
{
|
|
14194
|
+
type: "lambda",
|
|
14195
|
+
slug: "lambda",
|
|
14196
|
+
name: "Lambda",
|
|
14197
|
+
description: "Invoke, deploy, and manage AWS Lambda functions",
|
|
14198
|
+
longDescription: "Integrate AWS Lambda into workflows. Invoke functions and read their response payload, create and update functions from Amazon S3 packages or container images, publish versions and aliases, wire up event source mappings, manage concurrency, function URLs, layers, permissions, and tags. Requires an AWS access key and secret access key.",
|
|
14199
|
+
bgColor: "linear-gradient(45deg, #C8511B 0%, #FF9900 100%)",
|
|
14200
|
+
iconName: "LambdaIcon",
|
|
14201
|
+
docsUrl: "https://docs.sim.ai/integrations/lambda",
|
|
14202
|
+
operations: [
|
|
14203
|
+
{
|
|
14204
|
+
name: "Invoke Function",
|
|
14205
|
+
description: "Invoke a Lambda function synchronously or asynchronously and return its response"
|
|
14206
|
+
},
|
|
14207
|
+
{
|
|
14208
|
+
name: "List Functions",
|
|
14209
|
+
description: "List Lambda functions with the version-specific configuration of each"
|
|
14210
|
+
},
|
|
14211
|
+
{
|
|
14212
|
+
name: "Get Function",
|
|
14213
|
+
description: "Get a function's configuration, code location, tags, and reserved concurrency"
|
|
14214
|
+
},
|
|
14215
|
+
{
|
|
14216
|
+
name: "Get Function Configuration",
|
|
14217
|
+
description: "Get a function's version-specific configuration"
|
|
14218
|
+
},
|
|
14219
|
+
{
|
|
14220
|
+
name: "Create Function",
|
|
14221
|
+
description: "Create a Lambda function from a deployment package in Amazon S3 or a container image"
|
|
14222
|
+
},
|
|
14223
|
+
{
|
|
14224
|
+
name: "Update Function Code",
|
|
14225
|
+
description: "Update a function's deployment package from Amazon S3 or a container image"
|
|
14226
|
+
},
|
|
14227
|
+
{
|
|
14228
|
+
name: "Update Function Configuration",
|
|
14229
|
+
description: "Update a function's settings such as memory, timeout, role, and environment variables"
|
|
14230
|
+
},
|
|
14231
|
+
{
|
|
14232
|
+
name: "Delete Function",
|
|
14233
|
+
description: "Delete a Lambda function, or a single published version of it"
|
|
14234
|
+
},
|
|
14235
|
+
{
|
|
14236
|
+
name: "Publish Version",
|
|
14237
|
+
description: "Publish an immutable version from the current code and configuration of a function"
|
|
14238
|
+
},
|
|
14239
|
+
{
|
|
14240
|
+
name: "List Function Versions",
|
|
14241
|
+
description: "List the published versions of a Lambda function, plus $LATEST"
|
|
14242
|
+
},
|
|
14243
|
+
{
|
|
14244
|
+
name: "Create Alias",
|
|
14245
|
+
description: "Create an alias that points to a published function version"
|
|
14246
|
+
},
|
|
14247
|
+
{
|
|
14248
|
+
name: "Get Alias",
|
|
14249
|
+
description: "Get details about a Lambda function alias"
|
|
14250
|
+
},
|
|
14251
|
+
{
|
|
14252
|
+
name: "Update Alias",
|
|
14253
|
+
description: "Update the target version, description, or traffic weights of an alias"
|
|
14254
|
+
},
|
|
14255
|
+
{
|
|
14256
|
+
name: "Delete Alias",
|
|
14257
|
+
description: "Delete a Lambda function alias"
|
|
14258
|
+
},
|
|
14259
|
+
{
|
|
14260
|
+
name: "List Aliases",
|
|
14261
|
+
description: "List the aliases of a Lambda function"
|
|
14262
|
+
},
|
|
14263
|
+
{
|
|
14264
|
+
name: "Add Permission",
|
|
14265
|
+
description: "Grant an AWS service, account, or organization permission to use a function"
|
|
14266
|
+
},
|
|
14267
|
+
{
|
|
14268
|
+
name: "Remove Permission",
|
|
14269
|
+
description: "Remove a statement from a function's resource-based policy"
|
|
14270
|
+
},
|
|
14271
|
+
{
|
|
14272
|
+
name: "Get Policy",
|
|
14273
|
+
description: "Get the resource-based IAM policy attached to a function, version, or alias"
|
|
14274
|
+
},
|
|
14275
|
+
{
|
|
14276
|
+
name: "Create Event Source Mapping",
|
|
14277
|
+
description: "Map an event source such as SQS, Kinesis, DynamoDB Streams, or Kafka to a function"
|
|
14278
|
+
},
|
|
14279
|
+
{
|
|
14280
|
+
name: "Get Event Source Mapping",
|
|
14281
|
+
description: "Get details about an event source mapping"
|
|
14282
|
+
},
|
|
14283
|
+
{
|
|
14284
|
+
name: "Update Event Source Mapping",
|
|
14285
|
+
description: "Update the batching, retry, filtering, or enabled state of an event source mapping"
|
|
14286
|
+
},
|
|
14287
|
+
{
|
|
14288
|
+
name: "Delete Event Source Mapping",
|
|
14289
|
+
description: "Delete an event source mapping"
|
|
14290
|
+
},
|
|
14291
|
+
{
|
|
14292
|
+
name: "List Event Source Mappings",
|
|
14293
|
+
description: "List event source mappings, optionally filtered by function or event source"
|
|
14294
|
+
},
|
|
14295
|
+
{
|
|
14296
|
+
name: "Get Function Concurrency",
|
|
14297
|
+
description: "Get the reserved concurrency configured for a function"
|
|
14298
|
+
},
|
|
14299
|
+
{
|
|
14300
|
+
name: "Set Function Concurrency",
|
|
14301
|
+
description: "Reserve a share of the account concurrency limit for a function"
|
|
14302
|
+
},
|
|
14303
|
+
{
|
|
14304
|
+
name: "Delete Function Concurrency",
|
|
14305
|
+
description: "Remove the reserved concurrency configuration from a function"
|
|
14306
|
+
},
|
|
14307
|
+
{
|
|
14308
|
+
name: "Get Provisioned Concurrency",
|
|
14309
|
+
description: "Get the provisioned concurrency configuration of a function version or alias"
|
|
14310
|
+
},
|
|
14311
|
+
{
|
|
14312
|
+
name: "Set Provisioned Concurrency",
|
|
14313
|
+
description: "Allocate provisioned concurrency to a function version or alias"
|
|
14314
|
+
},
|
|
14315
|
+
{
|
|
14316
|
+
name: "Delete Provisioned Concurrency",
|
|
14317
|
+
description: "Remove the provisioned concurrency configuration from a function version or alias"
|
|
14318
|
+
},
|
|
14319
|
+
{
|
|
14320
|
+
name: "List Provisioned Concurrency",
|
|
14321
|
+
description: "List the provisioned concurrency configurations of a function"
|
|
14322
|
+
},
|
|
14323
|
+
{
|
|
14324
|
+
name: "Create Function URL",
|
|
14325
|
+
description: "Create a dedicated HTTPS endpoint for a function"
|
|
14326
|
+
},
|
|
14327
|
+
{
|
|
14328
|
+
name: "Get Function URL",
|
|
14329
|
+
description: "Get details about a function URL"
|
|
14330
|
+
},
|
|
14331
|
+
{
|
|
14332
|
+
name: "Update Function URL",
|
|
14333
|
+
description: "Update the auth type, invoke mode, or CORS settings of a function URL"
|
|
14334
|
+
},
|
|
14335
|
+
{
|
|
14336
|
+
name: "Delete Function URL",
|
|
14337
|
+
description: "Delete the URL configuration of a function"
|
|
14338
|
+
},
|
|
14339
|
+
{
|
|
14340
|
+
name: "List Function URLs",
|
|
14341
|
+
description: "List the URL configurations of a function"
|
|
14342
|
+
},
|
|
14343
|
+
{
|
|
14344
|
+
name: "Get Async Invoke Config",
|
|
14345
|
+
description: "Get the asynchronous invocation retry and destination settings of a function"
|
|
14346
|
+
},
|
|
14347
|
+
{
|
|
14348
|
+
name: "Set Async Invoke Config",
|
|
14349
|
+
description: "Configure retry limits and destinations for asynchronous invocations of a function"
|
|
14350
|
+
},
|
|
14351
|
+
{
|
|
14352
|
+
name: "Delete Async Invoke Config",
|
|
14353
|
+
description: "Remove the asynchronous invocation configuration of a function"
|
|
14354
|
+
},
|
|
14355
|
+
{
|
|
14356
|
+
name: "List Async Invoke Configs",
|
|
14357
|
+
description: "List the asynchronous invocation configurations of a function"
|
|
14358
|
+
},
|
|
14359
|
+
{
|
|
14360
|
+
name: "List Layers",
|
|
14361
|
+
description: "List Lambda layers and the latest version of each"
|
|
14362
|
+
},
|
|
14363
|
+
{
|
|
14364
|
+
name: "List Layer Versions",
|
|
14365
|
+
description: "List the versions of a Lambda layer"
|
|
14366
|
+
},
|
|
14367
|
+
{
|
|
14368
|
+
name: "Get Layer Version",
|
|
14369
|
+
description: "Get details and a download link for a specific layer version"
|
|
14370
|
+
},
|
|
14371
|
+
{
|
|
14372
|
+
name: "List Tags",
|
|
14373
|
+
description: "List the tags applied to a Lambda function"
|
|
14374
|
+
},
|
|
14375
|
+
{
|
|
14376
|
+
name: "Tag Resource",
|
|
14377
|
+
description: "Add tags to a Lambda function"
|
|
14378
|
+
},
|
|
14379
|
+
{
|
|
14380
|
+
name: "Untag Resource",
|
|
14381
|
+
description: "Remove tags from a Lambda function"
|
|
14382
|
+
},
|
|
14383
|
+
{
|
|
14384
|
+
name: "Get Account Settings",
|
|
14385
|
+
description: "Get the Lambda limits and usage of the current AWS account and region"
|
|
14386
|
+
},
|
|
14387
|
+
{
|
|
14388
|
+
name: "Get Recursion Config",
|
|
14389
|
+
description: "Get the recursive loop detection setting of a function"
|
|
14390
|
+
},
|
|
14391
|
+
{
|
|
14392
|
+
name: "Set Recursion Config",
|
|
14393
|
+
description: "Set whether Lambda stops a function that invokes itself recursively"
|
|
14394
|
+
},
|
|
14395
|
+
{
|
|
14396
|
+
name: "Get Runtime Management Config",
|
|
14397
|
+
description: "Get the runtime update policy of a function version"
|
|
14398
|
+
},
|
|
14399
|
+
{
|
|
14400
|
+
name: "Set Runtime Management Config",
|
|
14401
|
+
description: "Set how and when Lambda applies runtime updates to a function version"
|
|
14402
|
+
}
|
|
14403
|
+
],
|
|
14404
|
+
operationCount: 50,
|
|
14405
|
+
triggers: [],
|
|
14406
|
+
triggerCount: 0,
|
|
14407
|
+
authType: "api-key",
|
|
14408
|
+
category: "tools",
|
|
14409
|
+
integrationType: "devops",
|
|
14410
|
+
tags: ["cloud"]
|
|
14411
|
+
},
|
|
14193
14412
|
{
|
|
14194
14413
|
type: "langsmith",
|
|
14195
14414
|
slug: "langsmith",
|