import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class CloudcertificatesCertificate extends pulumi.CustomResource { /** * Get an existing CloudcertificatesCertificate 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?: CloudcertificatesCertificateState, opts?: pulumi.CustomResourceOptions): CloudcertificatesCertificate; /** * Returns true if the given object is an instance of CloudcertificatesCertificate. 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 CloudcertificatesCertificate; /** * Account associated with 'contract_id'. */ readonly accountId: pulumi.Output; /** * If true, the resource will be automatically replaced when 'renew_pending' becomes true. Defaults to false. */ readonly autoRenew: pulumi.Output; /** * The base name for the certificate. If not provided, the name will be auto-generated by the CCM API. */ readonly baseName: pulumi.Output; /** * Unique identifier assigned to the newly created CCM certificate. */ readonly certificateId: pulumi.Output; /** * The status of the certificate. Can be one of 'ACTIVE', 'CSR_READY', 'READY_FOR_USE'. */ readonly certificateStatus: pulumi.Output; /** * Certificate type. Defaults to 'THIRD_PARTY'. */ readonly certificateType: pulumi.Output; /** * Contract ID under which this certificate will be created. */ readonly contractId: pulumi.Output; /** * User who created the certificate. */ readonly createdBy: pulumi.Output; /** * Date the certificate was created in UTC. */ readonly createdDate: pulumi.Output; /** * Date when CSR will expire and a signed certificate uploaded based on that CSR will NOT be accepted beyond this date. */ readonly csrExpirationDate: pulumi.Output; /** * CSR PEM content generated by Akamai. */ readonly csrPem: pulumi.Output; /** * The geographic network class of the certificate. Valid values for ENHANCED_TLS: 'STANDARD_WORLDWIDE', 'CONTIGUOUS_US', 'RESERVED_GLOBAL'. Valid values for STANDARD_TLS: 'STANDARD_WORLDWIDE'. If not specified, the API assigns a default value - STANDARD_WORLDWIDE */ readonly geoClass: pulumi.Output; /** * Group that will be associated with the new certificate when it gets created. Required for creation. */ readonly groupId: pulumi.Output; /** * The key size for a certificate. Valid values for key type ECDSA: 'P-256', 'P-384'. Valid value for key type RSA: '2048'. */ readonly keySize: pulumi.Output; /** * The key type for a certificate. Valid values are 'ECDSA', 'RSA'. */ readonly keyType: pulumi.Output; /** * User who last modified the certificate. */ readonly modifiedBy: pulumi.Output; /** * Date the certificate was last updated. */ readonly modifiedDate: pulumi.Output; /** * The certificate name. */ readonly name: pulumi.Output; /** * Number of days before the certificate's expiration date when renewal should be indicated. Only non-negative values are accepted. */ readonly renewBeforeExpirationDays: pulumi.Output; /** * Indicates whether the certificate needs renewal. Set to true when the current time is within 'renew_before_expiration_days' of the certificate's expiration date. */ readonly renewPending: pulumi.Output; /** * The list of Subject Alternative Names (SANs) for the certificate. */ readonly sans: pulumi.Output; /** * Secure network type to use for the certificate. Valid values are 'ENHANCED_TLS' and 'STANDARD_TLS'. */ readonly secureNetwork: pulumi.Output; /** * Subject fields as defined in X.509 certificates (RFC 5280). At least one of the inner fields must be specified. */ readonly subject: pulumi.Output; /** * Create a CloudcertificatesCertificate 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: CloudcertificatesCertificateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudcertificatesCertificate resources. */ export interface CloudcertificatesCertificateState { /** * Account associated with 'contract_id'. */ accountId?: pulumi.Input; /** * If true, the resource will be automatically replaced when 'renew_pending' becomes true. Defaults to false. */ autoRenew?: pulumi.Input; /** * The base name for the certificate. If not provided, the name will be auto-generated by the CCM API. */ baseName?: pulumi.Input; /** * Unique identifier assigned to the newly created CCM certificate. */ certificateId?: pulumi.Input; /** * The status of the certificate. Can be one of 'ACTIVE', 'CSR_READY', 'READY_FOR_USE'. */ certificateStatus?: pulumi.Input; /** * Certificate type. Defaults to 'THIRD_PARTY'. */ certificateType?: pulumi.Input; /** * Contract ID under which this certificate will be created. */ contractId?: pulumi.Input; /** * User who created the certificate. */ createdBy?: pulumi.Input; /** * Date the certificate was created in UTC. */ createdDate?: pulumi.Input; /** * Date when CSR will expire and a signed certificate uploaded based on that CSR will NOT be accepted beyond this date. */ csrExpirationDate?: pulumi.Input; /** * CSR PEM content generated by Akamai. */ csrPem?: pulumi.Input; /** * The geographic network class of the certificate. Valid values for ENHANCED_TLS: 'STANDARD_WORLDWIDE', 'CONTIGUOUS_US', 'RESERVED_GLOBAL'. Valid values for STANDARD_TLS: 'STANDARD_WORLDWIDE'. If not specified, the API assigns a default value - STANDARD_WORLDWIDE */ geoClass?: pulumi.Input; /** * Group that will be associated with the new certificate when it gets created. Required for creation. */ groupId?: pulumi.Input; /** * The key size for a certificate. Valid values for key type ECDSA: 'P-256', 'P-384'. Valid value for key type RSA: '2048'. */ keySize?: pulumi.Input; /** * The key type for a certificate. Valid values are 'ECDSA', 'RSA'. */ keyType?: pulumi.Input; /** * User who last modified the certificate. */ modifiedBy?: pulumi.Input; /** * Date the certificate was last updated. */ modifiedDate?: pulumi.Input; /** * The certificate name. */ name?: pulumi.Input; /** * Number of days before the certificate's expiration date when renewal should be indicated. Only non-negative values are accepted. */ renewBeforeExpirationDays?: pulumi.Input; /** * Indicates whether the certificate needs renewal. Set to true when the current time is within 'renew_before_expiration_days' of the certificate's expiration date. */ renewPending?: pulumi.Input; /** * The list of Subject Alternative Names (SANs) for the certificate. */ sans?: pulumi.Input[] | undefined>; /** * Secure network type to use for the certificate. Valid values are 'ENHANCED_TLS' and 'STANDARD_TLS'. */ secureNetwork?: pulumi.Input; /** * Subject fields as defined in X.509 certificates (RFC 5280). At least one of the inner fields must be specified. */ subject?: pulumi.Input; } /** * The set of arguments for constructing a CloudcertificatesCertificate resource. */ export interface CloudcertificatesCertificateArgs { /** * If true, the resource will be automatically replaced when 'renew_pending' becomes true. Defaults to false. */ autoRenew?: pulumi.Input; /** * The base name for the certificate. If not provided, the name will be auto-generated by the CCM API. */ baseName?: pulumi.Input; /** * Contract ID under which this certificate will be created. */ contractId: pulumi.Input; /** * The geographic network class of the certificate. Valid values for ENHANCED_TLS: 'STANDARD_WORLDWIDE', 'CONTIGUOUS_US', 'RESERVED_GLOBAL'. Valid values for STANDARD_TLS: 'STANDARD_WORLDWIDE'. If not specified, the API assigns a default value - STANDARD_WORLDWIDE */ geoClass?: pulumi.Input; /** * Group that will be associated with the new certificate when it gets created. Required for creation. */ groupId?: pulumi.Input; /** * The key size for a certificate. Valid values for key type ECDSA: 'P-256', 'P-384'. Valid value for key type RSA: '2048'. */ keySize: pulumi.Input; /** * The key type for a certificate. Valid values are 'ECDSA', 'RSA'. */ keyType: pulumi.Input; /** * Number of days before the certificate's expiration date when renewal should be indicated. Only non-negative values are accepted. */ renewBeforeExpirationDays?: pulumi.Input; /** * The list of Subject Alternative Names (SANs) for the certificate. */ sans: pulumi.Input[]>; /** * Secure network type to use for the certificate. Valid values are 'ENHANCED_TLS' and 'STANDARD_TLS'. */ secureNetwork: pulumi.Input; /** * Subject fields as defined in X.509 certificates (RFC 5280). At least one of the inner fields must be specified. */ subject?: pulumi.Input; } //# sourceMappingURL=cloudcertificatesCertificate.d.ts.map