1. Packages
  2. Cloudflare Provider
  3. API Docs
  4. getCertificatePacks
Cloudflare v6.13.0 published on Wednesday, Jan 21, 2026 by Pulumi
cloudflare logo
Cloudflare v6.13.0 published on Wednesday, Jan 21, 2026 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const exampleCertificatePacks = cloudflare.getCertificatePacks({
        zoneId: "023e105f4ecef8ad9ca31a8372d0c353",
        status: "all",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example_certificate_packs = cloudflare.get_certificate_packs(zone_id="023e105f4ecef8ad9ca31a8372d0c353",
        status="all")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudflare.LookupCertificatePacks(ctx, &cloudflare.LookupCertificatePacksArgs{
    			ZoneId: "023e105f4ecef8ad9ca31a8372d0c353",
    			Status: pulumi.StringRef("all"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Cloudflare = Pulumi.Cloudflare;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleCertificatePacks = Cloudflare.GetCertificatePacks.Invoke(new()
        {
            ZoneId = "023e105f4ecef8ad9ca31a8372d0c353",
            Status = "all",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cloudflare.CloudflareFunctions;
    import com.pulumi.cloudflare.inputs.GetCertificatePacksArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var exampleCertificatePacks = CloudflareFunctions.getCertificatePacks(GetCertificatePacksArgs.builder()
                .zoneId("023e105f4ecef8ad9ca31a8372d0c353")
                .status("all")
                .build());
    
        }
    }
    
    variables:
      exampleCertificatePacks:
        fn::invoke:
          function: cloudflare:getCertificatePacks
          arguments:
            zoneId: 023e105f4ecef8ad9ca31a8372d0c353
            status: all
    

    Using getCertificatePacks

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCertificatePacks(args: GetCertificatePacksArgs, opts?: InvokeOptions): Promise<GetCertificatePacksResult>
    function getCertificatePacksOutput(args: GetCertificatePacksOutputArgs, opts?: InvokeOptions): Output<GetCertificatePacksResult>
    def get_certificate_packs(max_items: Optional[int] = None,
                              status: Optional[str] = None,
                              zone_id: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetCertificatePacksResult
    def get_certificate_packs_output(max_items: Optional[pulumi.Input[int]] = None,
                              status: Optional[pulumi.Input[str]] = None,
                              zone_id: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetCertificatePacksResult]
    func LookupCertificatePacks(ctx *Context, args *LookupCertificatePacksArgs, opts ...InvokeOption) (*LookupCertificatePacksResult, error)
    func LookupCertificatePacksOutput(ctx *Context, args *LookupCertificatePacksOutputArgs, opts ...InvokeOption) LookupCertificatePacksResultOutput

    > Note: This function is named LookupCertificatePacks in the Go SDK.

    public static class GetCertificatePacks 
    {
        public static Task<GetCertificatePacksResult> InvokeAsync(GetCertificatePacksArgs args, InvokeOptions? opts = null)
        public static Output<GetCertificatePacksResult> Invoke(GetCertificatePacksInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCertificatePacksResult> getCertificatePacks(GetCertificatePacksArgs args, InvokeOptions options)
    public static Output<GetCertificatePacksResult> getCertificatePacks(GetCertificatePacksArgs args, InvokeOptions options)
    
    fn::invoke:
      function: cloudflare:index/getCertificatePacks:getCertificatePacks
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ZoneId string
    Identifier.
    MaxItems int
    Max items to fetch, default: 1000
    Status string
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".
    ZoneId string
    Identifier.
    MaxItems int
    Max items to fetch, default: 1000
    Status string
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".
    zoneId String
    Identifier.
    maxItems Integer
    Max items to fetch, default: 1000
    status String
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".
    zoneId string
    Identifier.
    maxItems number
    Max items to fetch, default: 1000
    status string
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".
    zone_id str
    Identifier.
    max_items int
    Max items to fetch, default: 1000
    status str
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".
    zoneId String
    Identifier.
    maxItems Number
    Max items to fetch, default: 1000
    status String
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".

    getCertificatePacks Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Results List<GetCertificatePacksResult>
    The items returned by the data source
    ZoneId string
    Identifier.
    MaxItems int
    Max items to fetch, default: 1000
    Status string
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".
    Id string
    The provider-assigned unique ID for this managed resource.
    Results []GetCertificatePacksResult
    The items returned by the data source
    ZoneId string
    Identifier.
    MaxItems int
    Max items to fetch, default: 1000
    Status string
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".
    id String
    The provider-assigned unique ID for this managed resource.
    results List<GetCertificatePacksResult>
    The items returned by the data source
    zoneId String
    Identifier.
    maxItems Integer
    Max items to fetch, default: 1000
    status String
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".
    id string
    The provider-assigned unique ID for this managed resource.
    results GetCertificatePacksResult[]
    The items returned by the data source
    zoneId string
    Identifier.
    maxItems number
    Max items to fetch, default: 1000
    status string
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".
    id str
    The provider-assigned unique ID for this managed resource.
    results Sequence[GetCertificatePacksResult]
    The items returned by the data source
    zone_id str
    Identifier.
    max_items int
    Max items to fetch, default: 1000
    status str
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".
    id String
    The provider-assigned unique ID for this managed resource.
    results List<Property Map>
    The items returned by the data source
    zoneId String
    Identifier.
    maxItems Number
    Max items to fetch, default: 1000
    status String
    Include Certificate Packs of all statuses, not just active ones. Available values: "all".

    Supporting Types

    GetCertificatePacksResult

    CertificateAuthority string
    Certificate Authority selected for the order. For information on any certificate authority specific details or restrictions see this page for more details. Available values: "google", "letsencrypt", "sslcom".
    Certificates List<GetCertificatePacksResultCertificate>
    Array of certificates in this pack.
    CloudflareBranding bool
    Whether or not to add Cloudflare Branding for the order. This will add a subdomain of sni.cloudflaressl.com as the Common Name if set to true.
    Hosts List<string>
    Comma separated list of valid host names for the certificate packs. Must contain the zone apex, may not contain more than 50 hosts, and may not be empty.
    Id string
    Identifier.
    PrimaryCertificate string
    Identifier of the primary certificate in a pack.
    Status string
    Status of certificate pack. Available values: "initializing", "pendingvalidation", "deleted", "pendingissuance", "pendingdeployment", "pendingdeletion", "pendingexpiration", "expired", "active", "initializingtimedout", "validationtimedout", "issuancetimedout", "deploymenttimedout", "deletiontimedout", "pendingcleanup", "stagingdeployment", "stagingactive", "deactivating", "inactive", "backupissued", "holdingdeployment".
    Type string
    Type of certificate pack. Available values: "mhcustom", "managedhostname", "snicustom", "universal", "advanced", "totaltls", "keyless", <span pulumi-lang-nodejs=""legacyCustom"" pulumi-lang-dotnet=""LegacyCustom"" pulumi-lang-go=""legacyCustom"" pulumi-lang-python=""legacy_custom"" pulumi-lang-yaml=""legacyCustom"" pulumi-lang-java=""legacyCustom"">"legacy_custom".
    ValidationErrors List<GetCertificatePacksResultValidationError>
    Domain validation errors that have been received by the certificate authority (CA).
    ValidationMethod string
    Validation Method selected for the order. Available values: "txt", "http", "email".
    ValidationRecords List<GetCertificatePacksResultValidationRecord>
    Certificates' validation records.
    ValidityDays int
    Validity Days selected for the order. Available values: 14, 30, 90, 365.
    CertificateAuthority string
    Certificate Authority selected for the order. For information on any certificate authority specific details or restrictions see this page for more details. Available values: "google", "letsencrypt", "sslcom".
    Certificates []GetCertificatePacksResultCertificate
    Array of certificates in this pack.
    CloudflareBranding bool
    Whether or not to add Cloudflare Branding for the order. This will add a subdomain of sni.cloudflaressl.com as the Common Name if set to true.
    Hosts []string
    Comma separated list of valid host names for the certificate packs. Must contain the zone apex, may not contain more than 50 hosts, and may not be empty.
    Id string
    Identifier.
    PrimaryCertificate string
    Identifier of the primary certificate in a pack.
    Status string
    Status of certificate pack. Available values: "initializing", "pendingvalidation", "deleted", "pendingissuance", "pendingdeployment", "pendingdeletion", "pendingexpiration", "expired", "active", "initializingtimedout", "validationtimedout", "issuancetimedout", "deploymenttimedout", "deletiontimedout", "pendingcleanup", "stagingdeployment", "stagingactive", "deactivating", "inactive", "backupissued", "holdingdeployment".
    Type string
    Type of certificate pack. Available values: "mhcustom", "managedhostname", "snicustom", "universal", "advanced", "totaltls", "keyless", <span pulumi-lang-nodejs=""legacyCustom"" pulumi-lang-dotnet=""LegacyCustom"" pulumi-lang-go=""legacyCustom"" pulumi-lang-python=""legacy_custom"" pulumi-lang-yaml=""legacyCustom"" pulumi-lang-java=""legacyCustom"">"legacy_custom".
    ValidationErrors []GetCertificatePacksResultValidationError
    Domain validation errors that have been received by the certificate authority (CA).
    ValidationMethod string
    Validation Method selected for the order. Available values: "txt", "http", "email".
    ValidationRecords []GetCertificatePacksResultValidationRecord
    Certificates' validation records.
    ValidityDays int
    Validity Days selected for the order. Available values: 14, 30, 90, 365.
    certificateAuthority String
    Certificate Authority selected for the order. For information on any certificate authority specific details or restrictions see this page for more details. Available values: "google", "letsencrypt", "sslcom".
    certificates List<GetCertificatePacksResultCertificate>
    Array of certificates in this pack.
    cloudflareBranding Boolean
    Whether or not to add Cloudflare Branding for the order. This will add a subdomain of sni.cloudflaressl.com as the Common Name if set to true.
    hosts List<String>
    Comma separated list of valid host names for the certificate packs. Must contain the zone apex, may not contain more than 50 hosts, and may not be empty.
    id String
    Identifier.
    primaryCertificate String
    Identifier of the primary certificate in a pack.
    status String
    Status of certificate pack. Available values: "initializing", "pendingvalidation", "deleted", "pendingissuance", "pendingdeployment", "pendingdeletion", "pendingexpiration", "expired", "active", "initializingtimedout", "validationtimedout", "issuancetimedout", "deploymenttimedout", "deletiontimedout", "pendingcleanup", "stagingdeployment", "stagingactive", "deactivating", "inactive", "backupissued", "holdingdeployment".
    type String
    Type of certificate pack. Available values: "mhcustom", "managedhostname", "snicustom", "universal", "advanced", "totaltls", "keyless", <span pulumi-lang-nodejs=""legacyCustom"" pulumi-lang-dotnet=""LegacyCustom"" pulumi-lang-go=""legacyCustom"" pulumi-lang-python=""legacy_custom"" pulumi-lang-yaml=""legacyCustom"" pulumi-lang-java=""legacyCustom"">"legacy_custom".
    validationErrors List<GetCertificatePacksResultValidationError>
    Domain validation errors that have been received by the certificate authority (CA).
    validationMethod String
    Validation Method selected for the order. Available values: "txt", "http", "email".
    validationRecords List<GetCertificatePacksResultValidationRecord>
    Certificates' validation records.
    validityDays Integer
    Validity Days selected for the order. Available values: 14, 30, 90, 365.
    certificateAuthority string
    Certificate Authority selected for the order. For information on any certificate authority specific details or restrictions see this page for more details. Available values: "google", "letsencrypt", "sslcom".
    certificates GetCertificatePacksResultCertificate[]
    Array of certificates in this pack.
    cloudflareBranding boolean
    Whether or not to add Cloudflare Branding for the order. This will add a subdomain of sni.cloudflaressl.com as the Common Name if set to true.
    hosts string[]
    Comma separated list of valid host names for the certificate packs. Must contain the zone apex, may not contain more than 50 hosts, and may not be empty.
    id string
    Identifier.
    primaryCertificate string
    Identifier of the primary certificate in a pack.
    status string
    Status of certificate pack. Available values: "initializing", "pendingvalidation", "deleted", "pendingissuance", "pendingdeployment", "pendingdeletion", "pendingexpiration", "expired", "active", "initializingtimedout", "validationtimedout", "issuancetimedout", "deploymenttimedout", "deletiontimedout", "pendingcleanup", "stagingdeployment", "stagingactive", "deactivating", "inactive", "backupissued", "holdingdeployment".
    type string
    Type of certificate pack. Available values: "mhcustom", "managedhostname", "snicustom", "universal", "advanced", "totaltls", "keyless", <span pulumi-lang-nodejs=""legacyCustom"" pulumi-lang-dotnet=""LegacyCustom"" pulumi-lang-go=""legacyCustom"" pulumi-lang-python=""legacy_custom"" pulumi-lang-yaml=""legacyCustom"" pulumi-lang-java=""legacyCustom"">"legacy_custom".
    validationErrors GetCertificatePacksResultValidationError[]
    Domain validation errors that have been received by the certificate authority (CA).
    validationMethod string
    Validation Method selected for the order. Available values: "txt", "http", "email".
    validationRecords GetCertificatePacksResultValidationRecord[]
    Certificates' validation records.
    validityDays number
    Validity Days selected for the order. Available values: 14, 30, 90, 365.
    certificate_authority str
    Certificate Authority selected for the order. For information on any certificate authority specific details or restrictions see this page for more details. Available values: "google", "letsencrypt", "sslcom".
    certificates Sequence[GetCertificatePacksResultCertificate]
    Array of certificates in this pack.
    cloudflare_branding bool
    Whether or not to add Cloudflare Branding for the order. This will add a subdomain of sni.cloudflaressl.com as the Common Name if set to true.
    hosts Sequence[str]
    Comma separated list of valid host names for the certificate packs. Must contain the zone apex, may not contain more than 50 hosts, and may not be empty.
    id str
    Identifier.
    primary_certificate str
    Identifier of the primary certificate in a pack.
    status str
    Status of certificate pack. Available values: "initializing", "pendingvalidation", "deleted", "pendingissuance", "pendingdeployment", "pendingdeletion", "pendingexpiration", "expired", "active", "initializingtimedout", "validationtimedout", "issuancetimedout", "deploymenttimedout", "deletiontimedout", "pendingcleanup", "stagingdeployment", "stagingactive", "deactivating", "inactive", "backupissued", "holdingdeployment".
    type str
    Type of certificate pack. Available values: "mhcustom", "managedhostname", "snicustom", "universal", "advanced", "totaltls", "keyless", <span pulumi-lang-nodejs=""legacyCustom"" pulumi-lang-dotnet=""LegacyCustom"" pulumi-lang-go=""legacyCustom"" pulumi-lang-python=""legacy_custom"" pulumi-lang-yaml=""legacyCustom"" pulumi-lang-java=""legacyCustom"">"legacy_custom".
    validation_errors Sequence[GetCertificatePacksResultValidationError]
    Domain validation errors that have been received by the certificate authority (CA).
    validation_method str
    Validation Method selected for the order. Available values: "txt", "http", "email".
    validation_records Sequence[GetCertificatePacksResultValidationRecord]
    Certificates' validation records.
    validity_days int
    Validity Days selected for the order. Available values: 14, 30, 90, 365.
    certificateAuthority String
    Certificate Authority selected for the order. For information on any certificate authority specific details or restrictions see this page for more details. Available values: "google", "letsencrypt", "sslcom".
    certificates List<Property Map>
    Array of certificates in this pack.
    cloudflareBranding Boolean
    Whether or not to add Cloudflare Branding for the order. This will add a subdomain of sni.cloudflaressl.com as the Common Name if set to true.
    hosts List<String>
    Comma separated list of valid host names for the certificate packs. Must contain the zone apex, may not contain more than 50 hosts, and may not be empty.
    id String
    Identifier.
    primaryCertificate String
    Identifier of the primary certificate in a pack.
    status String
    Status of certificate pack. Available values: "initializing", "pendingvalidation", "deleted", "pendingissuance", "pendingdeployment", "pendingdeletion", "pendingexpiration", "expired", "active", "initializingtimedout", "validationtimedout", "issuancetimedout", "deploymenttimedout", "deletiontimedout", "pendingcleanup", "stagingdeployment", "stagingactive", "deactivating", "inactive", "backupissued", "holdingdeployment".
    type String
    Type of certificate pack. Available values: "mhcustom", "managedhostname", "snicustom", "universal", "advanced", "totaltls", "keyless", <span pulumi-lang-nodejs=""legacyCustom"" pulumi-lang-dotnet=""LegacyCustom"" pulumi-lang-go=""legacyCustom"" pulumi-lang-python=""legacy_custom"" pulumi-lang-yaml=""legacyCustom"" pulumi-lang-java=""legacyCustom"">"legacy_custom".
    validationErrors List<Property Map>
    Domain validation errors that have been received by the certificate authority (CA).
    validationMethod String
    Validation Method selected for the order. Available values: "txt", "http", "email".
    validationRecords List<Property Map>
    Certificates' validation records.
    validityDays Number
    Validity Days selected for the order. Available values: 14, 30, 90, 365.

    GetCertificatePacksResultCertificate

    BundleMethod string
    Certificate bundle method.
    ExpiresOn string
    When the certificate from the authority expires.
    GeoRestrictions GetCertificatePacksResultCertificateGeoRestrictions
    Specify the region where your private key can be held locally.
    Hosts List<string>
    Hostnames covered by this certificate.
    Id string
    Certificate identifier.
    Issuer string
    The certificate authority that issued the certificate.
    ModifiedOn string
    When the certificate was last modified.
    Priority double
    The order/priority in which the certificate will be used.
    Signature string
    The type of hash used for the certificate.
    Status string
    Certificate status.
    UploadedOn string
    When the certificate was uploaded to Cloudflare.
    ZoneId string
    Identifier.
    BundleMethod string
    Certificate bundle method.
    ExpiresOn string
    When the certificate from the authority expires.
    GeoRestrictions GetCertificatePacksResultCertificateGeoRestrictions
    Specify the region where your private key can be held locally.
    Hosts []string
    Hostnames covered by this certificate.
    Id string
    Certificate identifier.
    Issuer string
    The certificate authority that issued the certificate.
    ModifiedOn string
    When the certificate was last modified.
    Priority float64
    The order/priority in which the certificate will be used.
    Signature string
    The type of hash used for the certificate.
    Status string
    Certificate status.
    UploadedOn string
    When the certificate was uploaded to Cloudflare.
    ZoneId string
    Identifier.
    bundleMethod String
    Certificate bundle method.
    expiresOn String
    When the certificate from the authority expires.
    geoRestrictions GetCertificatePacksResultCertificateGeoRestrictions
    Specify the region where your private key can be held locally.
    hosts List<String>
    Hostnames covered by this certificate.
    id String
    Certificate identifier.
    issuer String
    The certificate authority that issued the certificate.
    modifiedOn String
    When the certificate was last modified.
    priority Double
    The order/priority in which the certificate will be used.
    signature String
    The type of hash used for the certificate.
    status String
    Certificate status.
    uploadedOn String
    When the certificate was uploaded to Cloudflare.
    zoneId String
    Identifier.
    bundleMethod string
    Certificate bundle method.
    expiresOn string
    When the certificate from the authority expires.
    geoRestrictions GetCertificatePacksResultCertificateGeoRestrictions
    Specify the region where your private key can be held locally.
    hosts string[]
    Hostnames covered by this certificate.
    id string
    Certificate identifier.
    issuer string
    The certificate authority that issued the certificate.
    modifiedOn string
    When the certificate was last modified.
    priority number
    The order/priority in which the certificate will be used.
    signature string
    The type of hash used for the certificate.
    status string
    Certificate status.
    uploadedOn string
    When the certificate was uploaded to Cloudflare.
    zoneId string
    Identifier.
    bundle_method str
    Certificate bundle method.
    expires_on str
    When the certificate from the authority expires.
    geo_restrictions GetCertificatePacksResultCertificateGeoRestrictions
    Specify the region where your private key can be held locally.
    hosts Sequence[str]
    Hostnames covered by this certificate.
    id str
    Certificate identifier.
    issuer str
    The certificate authority that issued the certificate.
    modified_on str
    When the certificate was last modified.
    priority float
    The order/priority in which the certificate will be used.
    signature str
    The type of hash used for the certificate.
    status str
    Certificate status.
    uploaded_on str
    When the certificate was uploaded to Cloudflare.
    zone_id str
    Identifier.
    bundleMethod String
    Certificate bundle method.
    expiresOn String
    When the certificate from the authority expires.
    geoRestrictions Property Map
    Specify the region where your private key can be held locally.
    hosts List<String>
    Hostnames covered by this certificate.
    id String
    Certificate identifier.
    issuer String
    The certificate authority that issued the certificate.
    modifiedOn String
    When the certificate was last modified.
    priority Number
    The order/priority in which the certificate will be used.
    signature String
    The type of hash used for the certificate.
    status String
    Certificate status.
    uploadedOn String
    When the certificate was uploaded to Cloudflare.
    zoneId String
    Identifier.

    GetCertificatePacksResultCertificateGeoRestrictions

    Label string
    Available values: "us", "eu", <span pulumi-lang-nodejs=""highestSecurity"" pulumi-lang-dotnet=""HighestSecurity"" pulumi-lang-go=""highestSecurity"" pulumi-lang-python=""highest_security"" pulumi-lang-yaml=""highestSecurity"" pulumi-lang-java=""highestSecurity"">"highest_security".
    Label string
    Available values: "us", "eu", <span pulumi-lang-nodejs=""highestSecurity"" pulumi-lang-dotnet=""HighestSecurity"" pulumi-lang-go=""highestSecurity"" pulumi-lang-python=""highest_security"" pulumi-lang-yaml=""highestSecurity"" pulumi-lang-java=""highestSecurity"">"highest_security".
    label String
    Available values: "us", "eu", <span pulumi-lang-nodejs=""highestSecurity"" pulumi-lang-dotnet=""HighestSecurity"" pulumi-lang-go=""highestSecurity"" pulumi-lang-python=""highest_security"" pulumi-lang-yaml=""highestSecurity"" pulumi-lang-java=""highestSecurity"">"highest_security".
    label string
    Available values: "us", "eu", <span pulumi-lang-nodejs=""highestSecurity"" pulumi-lang-dotnet=""HighestSecurity"" pulumi-lang-go=""highestSecurity"" pulumi-lang-python=""highest_security"" pulumi-lang-yaml=""highestSecurity"" pulumi-lang-java=""highestSecurity"">"highest_security".
    label str
    Available values: "us", "eu", <span pulumi-lang-nodejs=""highestSecurity"" pulumi-lang-dotnet=""HighestSecurity"" pulumi-lang-go=""highestSecurity"" pulumi-lang-python=""highest_security"" pulumi-lang-yaml=""highestSecurity"" pulumi-lang-java=""highestSecurity"">"highest_security".
    label String
    Available values: "us", "eu", <span pulumi-lang-nodejs=""highestSecurity"" pulumi-lang-dotnet=""HighestSecurity"" pulumi-lang-go=""highestSecurity"" pulumi-lang-python=""highest_security"" pulumi-lang-yaml=""highestSecurity"" pulumi-lang-java=""highestSecurity"">"highest_security".

    GetCertificatePacksResultValidationError

    Message string
    A domain validation error.
    Message string
    A domain validation error.
    message String
    A domain validation error.
    message string
    A domain validation error.
    message str
    A domain validation error.
    message String
    A domain validation error.

    GetCertificatePacksResultValidationRecord

    Emails List<string>
    The set of email addresses that the certificate authority (CA) will use to complete domain validation.
    HttpBody string
    The content that the certificate authority (CA) will expect to find at the http_url during the domain validation.
    HttpUrl string
    The url that will be checked during domain validation.
    TxtName string
    The hostname that the certificate authority (CA) will check for a TXT record during domain validation .
    TxtValue string
    The TXT record that the certificate authority (CA) will check during domain validation.
    Emails []string
    The set of email addresses that the certificate authority (CA) will use to complete domain validation.
    HttpBody string
    The content that the certificate authority (CA) will expect to find at the http_url during the domain validation.
    HttpUrl string
    The url that will be checked during domain validation.
    TxtName string
    The hostname that the certificate authority (CA) will check for a TXT record during domain validation .
    TxtValue string
    The TXT record that the certificate authority (CA) will check during domain validation.
    emails List<String>
    The set of email addresses that the certificate authority (CA) will use to complete domain validation.
    httpBody String
    The content that the certificate authority (CA) will expect to find at the http_url during the domain validation.
    httpUrl String
    The url that will be checked during domain validation.
    txtName String
    The hostname that the certificate authority (CA) will check for a TXT record during domain validation .
    txtValue String
    The TXT record that the certificate authority (CA) will check during domain validation.
    emails string[]
    The set of email addresses that the certificate authority (CA) will use to complete domain validation.
    httpBody string
    The content that the certificate authority (CA) will expect to find at the http_url during the domain validation.
    httpUrl string
    The url that will be checked during domain validation.
    txtName string
    The hostname that the certificate authority (CA) will check for a TXT record during domain validation .
    txtValue string
    The TXT record that the certificate authority (CA) will check during domain validation.
    emails Sequence[str]
    The set of email addresses that the certificate authority (CA) will use to complete domain validation.
    http_body str
    The content that the certificate authority (CA) will expect to find at the http_url during the domain validation.
    http_url str
    The url that will be checked during domain validation.
    txt_name str
    The hostname that the certificate authority (CA) will check for a TXT record during domain validation .
    txt_value str
    The TXT record that the certificate authority (CA) will check during domain validation.
    emails List<String>
    The set of email addresses that the certificate authority (CA) will use to complete domain validation.
    httpBody String
    The content that the certificate authority (CA) will expect to find at the http_url during the domain validation.
    httpUrl String
    The url that will be checked during domain validation.
    txtName String
    The hostname that the certificate authority (CA) will check for a TXT record during domain validation .
    txtValue String
    The TXT record that the certificate authority (CA) will check during domain validation.

    Package Details

    Repository
    Cloudflare pulumi/pulumi-cloudflare
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cloudflare Terraform Provider.
    cloudflare logo
    Cloudflare v6.13.0 published on Wednesday, Jan 21, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate