Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion fern/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7684,10 +7684,22 @@ paths:
properties:
code:
type: string
status:
description: Deployment status of the Lambda function.
enum:
- NotDeployed
- Active
- Pending
- Inactive
- Failed
- NotFound
- Error
type: string
required:
- code
- status
type: object
description: Lambda code
description: Lambda code and deployment status
security:
- Token: []
summary: ✨ Get AWS custom metric code
Expand Down Expand Up @@ -19568,14 +19580,18 @@ paths:
components:
schemas:
AWSCustomFunctionUpdateRequest:
description: Serializer for updating AWS Lambda custom metric function.
properties:
code:
description: The Python code for the custom metric function.
minLength: 1
type: string
region:
description: The AWS region for the Lambda function. Uses default if not provided.
nullable: true
type: string
role:
description: The AWS IAM role ARN for the Lambda function. Uses default if not provided.
nullable: true
type: string
required:
Expand Down