import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Ca Bundle resource in Oracle Cloud Infrastructure Certificates Management service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/certificatesmgmt/latest/CaBundle * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/certificatesManagement * * Creates a new CA bundle according to the details of the request. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCaBundle = new oci.certificatesmanagement.CaBundle("test_ca_bundle", { * caBundlePem: caBundleCaBundlePem, * compartmentId: compartmentId, * name: caBundleName, * definedTags: { * "Operations.CostCenter": "42", * }, * description: caBundleDescription, * freeformTags: { * Department: "Finance", * }, * }); * ``` * * ## Import * * CaBundles can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:CertificatesManagement/caBundle:CaBundle test_ca_bundle "id" * ``` */ export declare class CaBundle extends pulumi.CustomResource { /** * Get an existing CaBundle 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?: CaBundleState, opts?: pulumi.CustomResourceOptions): CaBundle; /** * Returns true if the given object is an instance of CaBundle. 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 CaBundle; /** * (Updatable) Certificates (in PEM format) to include in the CA bundle. */ readonly caBundlePem: pulumi.Output; /** * (Updatable) The OCID of the compartment for the CA bundle. */ readonly compartmentId: pulumi.Output; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) A brief description of the CA bundle. */ readonly description: pulumi.Output; /** * (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * Additional information about the current lifecycle state of the CA bundle. */ readonly lifecycleDetails: pulumi.Output; /** * A user-friendly name for the CA bundle. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly name: pulumi.Output; /** * The current lifecycle state of the CA bundle. */ readonly state: pulumi.Output; /** * A property indicating when the CA bundle was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2019-04-03T21:10:29.600Z` */ readonly timeCreated: pulumi.Output; /** * Create a CaBundle 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: CaBundleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CaBundle resources. */ export interface CaBundleState { /** * (Updatable) Certificates (in PEM format) to include in the CA bundle. */ caBundlePem?: pulumi.Input; /** * (Updatable) The OCID of the compartment for the CA bundle. */ compartmentId?: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) A brief description of the CA bundle. */ description?: pulumi.Input; /** * (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Additional information about the current lifecycle state of the CA bundle. */ lifecycleDetails?: pulumi.Input; /** * A user-friendly name for the CA bundle. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ name?: pulumi.Input; /** * The current lifecycle state of the CA bundle. */ state?: pulumi.Input; /** * A property indicating when the CA bundle was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2019-04-03T21:10:29.600Z` */ timeCreated?: pulumi.Input; } /** * The set of arguments for constructing a CaBundle resource. */ export interface CaBundleArgs { /** * (Updatable) Certificates (in PEM format) to include in the CA bundle. */ caBundlePem: pulumi.Input; /** * (Updatable) The OCID of the compartment for the CA bundle. */ compartmentId: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) A brief description of the CA bundle. */ description?: pulumi.Input; /** * (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * A user-friendly name for the CA bundle. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ name?: pulumi.Input; } //# sourceMappingURL=caBundle.d.ts.map