action rumble_create_account_credential { label: "Create a new credential" provider: rumble method: PUT path: "/account/credentials" encoding: json input: { type: "object" properties: { acl: { type: "object" } cidrs: { type: "string" } global: { type: "boolean" } name: { type: "string" } secret: { type: "object" } type: { type: "string" enum: ["miradore_api_key_v1", "aws_access_secret"] } } } output: { type: "object" required: ["id"] properties: { acl: { type: "object" } cidrs: { type: "array" items: { type: "string" } } client_id: { type: "string" format: "uuid" } created_at: { type: "integer" format: "int64" } created_by_email: { type: "string" format: "email" } created_by_id: { type: "string" format: "uuid" } global: { type: "boolean" } id: { type: "string" format: "uuid" } last_used_at: { type: "integer" format: "int64" } last_used_by_id: { type: "string" format: "uuid" } name: { type: "string" } type: { type: "string" description: "The service the credentials are for." enum: ["miradore_api_key_v1", "aws_access_secret", "crowdstrike_api_key", "azure_client_secret", "azure_username_password", "censys_search_api_key", "snmpv2_community", "snmpv3_credential", "vmware_username_password"] } } } }