import * as pulumi from "@pulumi/pulumi"; /** * Creates a DBaaS Logs encryption key. * * ## Import * * OVHcloud DBaaS Logs Encryption Key can be imported using the `service_name` and `encryption_key_id` of the key, separated by "/" E.g., * * bash * * ```sh * $ pulumi import ovh:index/dbaasLogsEncryptionKey:DbaasLogsEncryptionKey key ldp-ra-XX/dc145bc2-eb01-4efe-a802-XXXXXX * ``` */ export declare class DbaasLogsEncryptionKey extends pulumi.CustomResource { /** * Get an existing DbaasLogsEncryptionKey resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DbaasLogsEncryptionKeyState, opts?: pulumi.CustomResourceOptions): DbaasLogsEncryptionKey; /** * Returns true if the given object is an instance of DbaasLogsEncryptionKey. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DbaasLogsEncryptionKey; /** * The PGP public key content */ readonly content: pulumi.Output; /** * The encryption key creation date */ readonly createdAt: pulumi.Output; /** * The encryption key ID */ readonly encryptionKeyId: pulumi.Output; /** * The PGP key fingerprint */ readonly fingerprint: pulumi.Output; /** * Indicates if the key is editable */ readonly isEditable: pulumi.Output; /** * The LDP service name */ readonly serviceName: pulumi.Output; /** * The encryption key title */ readonly title: pulumi.Output; /** * Create a DbaasLogsEncryptionKey resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DbaasLogsEncryptionKeyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DbaasLogsEncryptionKey resources. */ export interface DbaasLogsEncryptionKeyState { /** * The PGP public key content */ content?: pulumi.Input; /** * The encryption key creation date */ createdAt?: pulumi.Input; /** * The encryption key ID */ encryptionKeyId?: pulumi.Input; /** * The PGP key fingerprint */ fingerprint?: pulumi.Input; /** * Indicates if the key is editable */ isEditable?: pulumi.Input; /** * The LDP service name */ serviceName?: pulumi.Input; /** * The encryption key title */ title?: pulumi.Input; } /** * The set of arguments for constructing a DbaasLogsEncryptionKey resource. */ export interface DbaasLogsEncryptionKeyArgs { /** * The PGP public key content */ content: pulumi.Input; /** * The PGP key fingerprint */ fingerprint: pulumi.Input; /** * The LDP service name */ serviceName: pulumi.Input; /** * The encryption key title */ title: pulumi.Input; }