import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * An alias from a key/certificate pair. * * To get more information about KeystoresAliasesKeyCertFile, see: * * * [API documentation](https://cloud.google.com/apigee/docs/reference/apis/apigee/rest/v1/organizations.environments.keystores.aliases) * * How-to Guides * * [Keystores Aliases](https://cloud.google.com/apigee/docs/reference/apis/apigee/rest/v1/organizations.environments.keystores.aliases) * * ## Import * * KeystoresAliasesKeyCertFile can be imported using any of these accepted formats: * * * `organizations/{{org_id}}/environments/{{environment}}/keystores/{{keystore}}/aliases/{{alias}}` * * * `{{org_id}}/{{environment}}/{{keystore}}/{{alias}}` * * When using the `pulumi import` command, KeystoresAliasesKeyCertFile can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:apigee/keystoresAliasesKeyCertFile:KeystoresAliasesKeyCertFile default organizations/{{org_id}}/environments/{{environment}}/keystores/{{keystore}}/aliases/{{alias}} * ``` * * ```sh * $ pulumi import gcp:apigee/keystoresAliasesKeyCertFile:KeystoresAliasesKeyCertFile default {{org_id}}/{{environment}}/{{keystore}}/{{alias}} * ``` */ export declare class KeystoresAliasesKeyCertFile extends pulumi.CustomResource { /** * Get an existing KeystoresAliasesKeyCertFile 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?: KeystoresAliasesKeyCertFileState, opts?: pulumi.CustomResourceOptions): KeystoresAliasesKeyCertFile; /** * Returns true if the given object is an instance of KeystoresAliasesKeyCertFile. 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 KeystoresAliasesKeyCertFile; /** * Alias Name */ readonly alias: pulumi.Output; /** * Cert content * * * - - - */ readonly cert: pulumi.Output; /** * Chain of certificates under this alias. * Structure is documented below. */ readonly certsInfos: pulumi.Output; /** * Environment associated with the alias */ readonly environment: pulumi.Output; /** * Private Key content, omit if uploading to truststore */ readonly key: pulumi.Output; /** * Keystore Name */ readonly keystore: pulumi.Output; /** * Organization ID associated with the alias, without organization/ prefix */ readonly orgId: pulumi.Output; /** * Password for the Private Key if it's encrypted */ readonly password: pulumi.Output; readonly timeouts: pulumi.Output; /** * Optional.Type of Alias */ readonly type: pulumi.Output; /** * Create a KeystoresAliasesKeyCertFile 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: KeystoresAliasesKeyCertFileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering KeystoresAliasesKeyCertFile resources. */ export interface KeystoresAliasesKeyCertFileState { /** * Alias Name */ alias?: pulumi.Input; /** * Cert content * * * - - - */ cert?: pulumi.Input; /** * Chain of certificates under this alias. * Structure is documented below. */ certsInfos?: pulumi.Input[]>; /** * Environment associated with the alias */ environment?: pulumi.Input; /** * Private Key content, omit if uploading to truststore */ key?: pulumi.Input; /** * Keystore Name */ keystore?: pulumi.Input; /** * Organization ID associated with the alias, without organization/ prefix */ orgId?: pulumi.Input; /** * Password for the Private Key if it's encrypted */ password?: pulumi.Input; timeouts?: pulumi.Input; /** * Optional.Type of Alias */ type?: pulumi.Input; } /** * The set of arguments for constructing a KeystoresAliasesKeyCertFile resource. */ export interface KeystoresAliasesKeyCertFileArgs { /** * Alias Name */ alias: pulumi.Input; /** * Cert content * * * - - - */ cert: pulumi.Input; /** * Environment associated with the alias */ environment: pulumi.Input; /** * Private Key content, omit if uploading to truststore */ key?: pulumi.Input; /** * Keystore Name */ keystore: pulumi.Input; /** * Organization ID associated with the alias, without organization/ prefix */ orgId: pulumi.Input; /** * Password for the Private Key if it's encrypted */ password?: pulumi.Input; timeouts?: pulumi.Input; }