6️⃣ Secret management
Key Class
public class KeylessSecret(
public val id: Identifier, // Unique identifier for the secret
public val value: Value // The actual secret content
)public struct KeylessSecret {
public let id: Identifier // Unique identifier for the secret
public let value: Value // The actual secret content
}Configuration Parameters
Parameter
Type
Description
Operations
Create/Update a Secret
Retrieve a Secret
Delete a Secret
List All Secret IDs
Combining Operations
Result Objects
Error Handling
Last updated
Was this helpful?