import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Creates a new key management server with the specified access credentials. * * ## Example * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const kms = new nutanix.KeyManagementServerV2("kms", { * name: "tf-kms-example", * accessInformation: { * azureKeyVault: { * endpointUrl: "https://example-url.vault.azure.net/", * keyId: "example_key_id", * tenantId: "d4c8a8e5-91b3-4f7e-8c2e-77d6f4a22f11", * clientId: "e29f9c62-3e56-41d0-b123-7f8a22c0cdef", * clientSecret: "7Z3uQ~vO4trhXk8B5M9qjwgT1pR2uC9yD1zF0wX3", * credentialExpiryDate: "2026-09-01", * }, * }, * }); * ``` * */ export declare class KeyManagementServerV2 extends pulumi.CustomResource { /** * Get an existing KeyManagementServerV2 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?: KeyManagementServerV2State, opts?: pulumi.CustomResourceOptions): KeyManagementServerV2; /** * Returns true if the given object is an instance of KeyManagementServerV2. 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 KeyManagementServerV2; /** * - (Required) KMS Access information, it can be Azure Key Vault access information or KMIP based External Key Manager Access Information. */ readonly accessInformation: pulumi.Output; readonly extId: pulumi.Output; readonly links: pulumi.Output; /** * - (Required) Name of the key management server (KMS). */ readonly name: pulumi.Output; readonly tenantId: pulumi.Output; /** * Create a KeyManagementServerV2 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: KeyManagementServerV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering KeyManagementServerV2 resources. */ export interface KeyManagementServerV2State { /** * - (Required) KMS Access information, it can be Azure Key Vault access information or KMIP based External Key Manager Access Information. */ accessInformation?: pulumi.Input; extId?: pulumi.Input; links?: pulumi.Input[] | undefined>; /** * - (Required) Name of the key management server (KMS). */ name?: pulumi.Input; tenantId?: pulumi.Input; } /** * The set of arguments for constructing a KeyManagementServerV2 resource. */ export interface KeyManagementServerV2Args { /** * - (Required) KMS Access information, it can be Azure Key Vault access information or KMIP based External Key Manager Access Information. */ accessInformation: pulumi.Input; /** * - (Required) Name of the key management server (KMS). */ name?: pulumi.Input; } //# sourceMappingURL=keyManagementServerV2.d.ts.map