import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Import an existing key in the JWK format in an OVHcloud KMS. */ export declare class ServiceKeyJWK extends pulumi.CustomResource { /** * Get an existing ServiceKeyJWK 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?: ServiceKeyJWKState, opts?: pulumi.CustomResourceOptions): ServiceKeyJWK; /** * Returns true if the given object is an instance of ServiceKeyJWK. 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 ServiceKeyJWK; /** * Context of the key */ readonly context: pulumi.Output; /** * Creation time of the key */ readonly createdAt: pulumi.Output; /** * Key deactivation reason */ readonly deactivationReason: pulumi.Output; /** * IAM resource metadata */ readonly iam: pulumi.Output; /** * Set of JSON Web Keys to import */ readonly keys: pulumi.Output; /** * Key name */ readonly name: pulumi.Output; /** * Okms ID */ readonly okmsId: pulumi.Output; /** * Size of the key to be created */ readonly size: pulumi.Output; /** * State of the key */ readonly state: pulumi.Output; /** * Type of the key to be created */ readonly type: pulumi.Output; /** * Create a ServiceKeyJWK 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: ServiceKeyJWKArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServiceKeyJWK resources. */ export interface ServiceKeyJWKState { /** * Context of the key */ context?: pulumi.Input; /** * Creation time of the key */ createdAt?: pulumi.Input; /** * Key deactivation reason */ deactivationReason?: pulumi.Input; /** * IAM resource metadata */ iam?: pulumi.Input; /** * Set of JSON Web Keys to import */ keys?: pulumi.Input[]>; /** * Key name */ name?: pulumi.Input; /** * Okms ID */ okmsId?: pulumi.Input; /** * Size of the key to be created */ size?: pulumi.Input; /** * State of the key */ state?: pulumi.Input; /** * Type of the key to be created */ type?: pulumi.Input; } /** * The set of arguments for constructing a ServiceKeyJWK resource. */ export interface ServiceKeyJWKArgs { /** * Context of the key */ context?: pulumi.Input; /** * Set of JSON Web Keys to import */ keys: pulumi.Input[]>; /** * Key name */ name?: pulumi.Input; /** * Okms ID */ okmsId: pulumi.Input; }