Add service credential visibility.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -118,6 +118,24 @@ export interface ServiceAccessGrant {
|
||||
connection: ServiceAccessConnection;
|
||||
}
|
||||
|
||||
export interface OptionalServiceCredentials {
|
||||
redis?: {
|
||||
host: string;
|
||||
port: number;
|
||||
password?: string;
|
||||
url?: string;
|
||||
};
|
||||
rabbitmq?: {
|
||||
host: string;
|
||||
amqpPort: number;
|
||||
managementPort: number;
|
||||
username: string;
|
||||
password?: string;
|
||||
amqpUrl?: string;
|
||||
managementUrl?: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface Deployment {
|
||||
id: string;
|
||||
status: DeploymentStatus;
|
||||
|
||||
Reference in New Issue
Block a user