1. Packages
  2. Packages
  3. Cloudflare Provider
  4. API Docs
  5. getZeroTrustResourceLibraryApplications
Viewing docs for Cloudflare v6.18.0
published on Thursday, Jul 16, 2026 by Pulumi
cloudflare logo
Viewing docs for Cloudflare v6.18.0
published on Thursday, Jul 16, 2026 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const exampleZeroTrustResourceLibraryApplications = cloudflare.getZeroTrustResourceLibraryApplications({
        accountId: "023e105f4ecef8ad9ca31a8372d0c353",
        filter: "filter",
        orderBy: "order_by",
        search: "xx",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example_zero_trust_resource_library_applications = cloudflare.get_zero_trust_resource_library_applications(account_id="023e105f4ecef8ad9ca31a8372d0c353",
        filter="filter",
        order_by="order_by",
        search="xx")
    
    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.GetZeroTrustResourceLibraryApplications(ctx, &cloudflare.LookupZeroTrustResourceLibraryApplicationsArgs{
    			AccountId: "023e105f4ecef8ad9ca31a8372d0c353",
    			Filter:    pulumi.StringRef("filter"),
    			OrderBy:   pulumi.StringRef("order_by"),
    			Search:    pulumi.StringRef("xx"),
    		}, 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 exampleZeroTrustResourceLibraryApplications = Cloudflare.GetZeroTrustResourceLibraryApplications.Invoke(new()
        {
            AccountId = "023e105f4ecef8ad9ca31a8372d0c353",
            Filter = "filter",
            OrderBy = "order_by",
            Search = "xx",
        });
    
    });
    
    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.GetZeroTrustResourceLibraryApplicationsArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 exampleZeroTrustResourceLibraryApplications = CloudflareFunctions.getZeroTrustResourceLibraryApplications(GetZeroTrustResourceLibraryApplicationsArgs.builder()
                .accountId("023e105f4ecef8ad9ca31a8372d0c353")
                .filter("filter")
                .orderBy("order_by")
                .search("xx")
                .build());
    
        }
    }
    
    variables:
      exampleZeroTrustResourceLibraryApplications:
        fn::invoke:
          function: cloudflare:getZeroTrustResourceLibraryApplications
          arguments:
            accountId: 023e105f4ecef8ad9ca31a8372d0c353
            filter: filter
            orderBy: order_by
            search: xx
    
    pulumi {
      required_providers {
        cloudflare = {
          source = "pulumi/cloudflare"
        }
      }
    }
    
    data "cloudflare_getzerotrustresourcelibraryapplications" "exampleZeroTrustResourceLibraryApplications" {
      account_id = "023e105f4ecef8ad9ca31a8372d0c353"
      filter     = "filter"
      order_by   = "order_by"
      search     = "xx"
    }
    

    Using getZeroTrustResourceLibraryApplications

    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 getZeroTrustResourceLibraryApplications(args: GetZeroTrustResourceLibraryApplicationsArgs, opts?: InvokeOptions): Promise<GetZeroTrustResourceLibraryApplicationsResult>
    function getZeroTrustResourceLibraryApplicationsOutput(args: GetZeroTrustResourceLibraryApplicationsOutputArgs, opts?: InvokeOptions): Output<GetZeroTrustResourceLibraryApplicationsResult>
    def get_zero_trust_resource_library_applications(account_id: Optional[str] = None,
                                                     filter: Optional[str] = None,
                                                     limit: Optional[int] = None,
                                                     max_items: Optional[int] = None,
                                                     offset: Optional[int] = None,
                                                     order_by: Optional[str] = None,
                                                     search: Optional[str] = None,
                                                     opts: Optional[InvokeOptions] = None) -> GetZeroTrustResourceLibraryApplicationsResult
    def get_zero_trust_resource_library_applications_output(account_id: pulumi.Input[Optional[str]] = None,
                                                     filter: pulumi.Input[Optional[str]] = None,
                                                     limit: pulumi.Input[Optional[int]] = None,
                                                     max_items: pulumi.Input[Optional[int]] = None,
                                                     offset: pulumi.Input[Optional[int]] = None,
                                                     order_by: pulumi.Input[Optional[str]] = None,
                                                     search: pulumi.Input[Optional[str]] = None,
                                                     opts: Optional[InvokeOptions] = None) -> Output[GetZeroTrustResourceLibraryApplicationsResult]
    func LookupZeroTrustResourceLibraryApplications(ctx *Context, args *LookupZeroTrustResourceLibraryApplicationsArgs, opts ...InvokeOption) (*LookupZeroTrustResourceLibraryApplicationsResult, error)
    func LookupZeroTrustResourceLibraryApplicationsOutput(ctx *Context, args *LookupZeroTrustResourceLibraryApplicationsOutputArgs, opts ...InvokeOption) LookupZeroTrustResourceLibraryApplicationsResultOutput

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

    public static class GetZeroTrustResourceLibraryApplications 
    {
        public static Task<GetZeroTrustResourceLibraryApplicationsResult> InvokeAsync(GetZeroTrustResourceLibraryApplicationsArgs args, InvokeOptions? opts = null)
        public static Output<GetZeroTrustResourceLibraryApplicationsResult> Invoke(GetZeroTrustResourceLibraryApplicationsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetZeroTrustResourceLibraryApplicationsResult> getZeroTrustResourceLibraryApplications(GetZeroTrustResourceLibraryApplicationsArgs args, InvokeOptions options)
    public static Output<GetZeroTrustResourceLibraryApplicationsResult> getZeroTrustResourceLibraryApplications(GetZeroTrustResourceLibraryApplicationsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: cloudflare:index/getZeroTrustResourceLibraryApplications:getZeroTrustResourceLibraryApplications
      arguments:
        # arguments dictionary
    data "cloudflare_get_zero_trust_resource_library_applications" "name" {
        # arguments
    }

    The following arguments are supported:

    AccountId string
    Filter string
    Limit int
    MaxItems int
    Offset int
    OrderBy string
    Search string
    AccountId string
    Filter string
    Limit int
    MaxItems int
    Offset int
    OrderBy string
    Search string
    account_id string
    filter string
    limit number
    max_items number
    offset number
    order_by string
    search string
    accountId String
    filter String
    limit Integer
    maxItems Integer
    offset Integer
    orderBy String
    search String
    accountId string
    filter string
    limit number
    maxItems number
    offset number
    orderBy string
    search string
    accountId String
    filter String
    limit Number
    maxItems Number
    offset Number
    orderBy String
    search String

    getZeroTrustResourceLibraryApplications Result

    The following output properties are available:

    AccountId string
    Id string
    The provider-assigned unique ID for this managed resource.
    Limit int
    Offset int
    Results List<GetZeroTrustResourceLibraryApplicationsResult>
    Filter string
    MaxItems int
    OrderBy string
    Search string
    AccountId string
    Id string
    The provider-assigned unique ID for this managed resource.
    Limit int
    Offset int
    Results []GetZeroTrustResourceLibraryApplicationsResult
    Filter string
    MaxItems int
    OrderBy string
    Search string
    account_id string
    id string
    The provider-assigned unique ID for this managed resource.
    limit number
    offset number
    results list(object)
    filter string
    max_items number
    order_by string
    search string
    accountId String
    id String
    The provider-assigned unique ID for this managed resource.
    limit Integer
    offset Integer
    results List<GetZeroTrustResourceLibraryApplicationsResult>
    filter String
    maxItems Integer
    orderBy String
    search String
    accountId string
    id string
    The provider-assigned unique ID for this managed resource.
    limit number
    offset number
    results GetZeroTrustResourceLibraryApplicationsResult[]
    filter string
    maxItems number
    orderBy string
    search string
    account_id str
    id str
    The provider-assigned unique ID for this managed resource.
    limit int
    offset int
    results Sequence[GetZeroTrustResourceLibraryApplicationsResult]
    filter str
    max_items int
    order_by str
    search str
    accountId String
    id String
    The provider-assigned unique ID for this managed resource.
    limit Number
    offset Number
    results List<Property Map>
    filter String
    maxItems Number
    orderBy String
    search String

    Supporting Types

    GetZeroTrustResourceLibraryApplicationsResult

    ApplicationConfidenceScore double
    Confidence score for the application. Returns -1 when no score is available.
    ApplicationScoreComposition string
    Returns the score composition breakdown for the application.
    ApplicationSource string
    Returns the application source.
    ApplicationType string
    Returns the application type.
    ApplicationTypeDescription string
    Returns the application type description.
    CreatedAt string
    Returns the application creation time.
    GenAiScore double
    GenAI score for the application. Returns -1 when no score is available.
    Hostnames List<string>
    Returns the list of hostnames for the application.
    HumanId string
    Returns the human readable ID.
    Id string
    Returns the application ID.
    IntelId int
    Returns the Intel API ID for the application.
    IpSubnets List<string>
    Returns the list of IP subnets for the application.
    Name string
    Returns the application name.
    PortProtocols List<string>
    Returns the list of port protocols for the application.
    SupportDomains List<string>
    Returns the list of support domains for the application.
    Supporteds List<string>
    Cloudflare products that support this application.
    UpdatedAt string
    Returns the application update time.
    Version string
    Returns the application version.
    ApplicationConfidenceScore float64
    Confidence score for the application. Returns -1 when no score is available.
    ApplicationScoreComposition string
    Returns the score composition breakdown for the application.
    ApplicationSource string
    Returns the application source.
    ApplicationType string
    Returns the application type.
    ApplicationTypeDescription string
    Returns the application type description.
    CreatedAt string
    Returns the application creation time.
    GenAiScore float64
    GenAI score for the application. Returns -1 when no score is available.
    Hostnames []string
    Returns the list of hostnames for the application.
    HumanId string
    Returns the human readable ID.
    Id string
    Returns the application ID.
    IntelId int
    Returns the Intel API ID for the application.
    IpSubnets []string
    Returns the list of IP subnets for the application.
    Name string
    Returns the application name.
    PortProtocols []string
    Returns the list of port protocols for the application.
    SupportDomains []string
    Returns the list of support domains for the application.
    Supporteds []string
    Cloudflare products that support this application.
    UpdatedAt string
    Returns the application update time.
    Version string
    Returns the application version.
    application_confidence_score number
    Confidence score for the application. Returns -1 when no score is available.
    application_score_composition string
    Returns the score composition breakdown for the application.
    application_source string
    Returns the application source.
    application_type string
    Returns the application type.
    application_type_description string
    Returns the application type description.
    created_at string
    Returns the application creation time.
    gen_ai_score number
    GenAI score for the application. Returns -1 when no score is available.
    hostnames list(string)
    Returns the list of hostnames for the application.
    human_id string
    Returns the human readable ID.
    id string
    Returns the application ID.
    intel_id number
    Returns the Intel API ID for the application.
    ip_subnets list(string)
    Returns the list of IP subnets for the application.
    name string
    Returns the application name.
    port_protocols list(string)
    Returns the list of port protocols for the application.
    support_domains list(string)
    Returns the list of support domains for the application.
    supporteds list(string)
    Cloudflare products that support this application.
    updated_at string
    Returns the application update time.
    version string
    Returns the application version.
    applicationConfidenceScore Double
    Confidence score for the application. Returns -1 when no score is available.
    applicationScoreComposition String
    Returns the score composition breakdown for the application.
    applicationSource String
    Returns the application source.
    applicationType String
    Returns the application type.
    applicationTypeDescription String
    Returns the application type description.
    createdAt String
    Returns the application creation time.
    genAiScore Double
    GenAI score for the application. Returns -1 when no score is available.
    hostnames List<String>
    Returns the list of hostnames for the application.
    humanId String
    Returns the human readable ID.
    id String
    Returns the application ID.
    intelId Integer
    Returns the Intel API ID for the application.
    ipSubnets List<String>
    Returns the list of IP subnets for the application.
    name String
    Returns the application name.
    portProtocols List<String>
    Returns the list of port protocols for the application.
    supportDomains List<String>
    Returns the list of support domains for the application.
    supporteds List<String>
    Cloudflare products that support this application.
    updatedAt String
    Returns the application update time.
    version String
    Returns the application version.
    applicationConfidenceScore number
    Confidence score for the application. Returns -1 when no score is available.
    applicationScoreComposition string
    Returns the score composition breakdown for the application.
    applicationSource string
    Returns the application source.
    applicationType string
    Returns the application type.
    applicationTypeDescription string
    Returns the application type description.
    createdAt string
    Returns the application creation time.
    genAiScore number
    GenAI score for the application. Returns -1 when no score is available.
    hostnames string[]
    Returns the list of hostnames for the application.
    humanId string
    Returns the human readable ID.
    id string
    Returns the application ID.
    intelId number
    Returns the Intel API ID for the application.
    ipSubnets string[]
    Returns the list of IP subnets for the application.
    name string
    Returns the application name.
    portProtocols string[]
    Returns the list of port protocols for the application.
    supportDomains string[]
    Returns the list of support domains for the application.
    supporteds string[]
    Cloudflare products that support this application.
    updatedAt string
    Returns the application update time.
    version string
    Returns the application version.
    application_confidence_score float
    Confidence score for the application. Returns -1 when no score is available.
    application_score_composition str
    Returns the score composition breakdown for the application.
    application_source str
    Returns the application source.
    application_type str
    Returns the application type.
    application_type_description str
    Returns the application type description.
    created_at str
    Returns the application creation time.
    gen_ai_score float
    GenAI score for the application. Returns -1 when no score is available.
    hostnames Sequence[str]
    Returns the list of hostnames for the application.
    human_id str
    Returns the human readable ID.
    id str
    Returns the application ID.
    intel_id int
    Returns the Intel API ID for the application.
    ip_subnets Sequence[str]
    Returns the list of IP subnets for the application.
    name str
    Returns the application name.
    port_protocols Sequence[str]
    Returns the list of port protocols for the application.
    support_domains Sequence[str]
    Returns the list of support domains for the application.
    supporteds Sequence[str]
    Cloudflare products that support this application.
    updated_at str
    Returns the application update time.
    version str
    Returns the application version.
    applicationConfidenceScore Number
    Confidence score for the application. Returns -1 when no score is available.
    applicationScoreComposition String
    Returns the score composition breakdown for the application.
    applicationSource String
    Returns the application source.
    applicationType String
    Returns the application type.
    applicationTypeDescription String
    Returns the application type description.
    createdAt String
    Returns the application creation time.
    genAiScore Number
    GenAI score for the application. Returns -1 when no score is available.
    hostnames List<String>
    Returns the list of hostnames for the application.
    humanId String
    Returns the human readable ID.
    id String
    Returns the application ID.
    intelId Number
    Returns the Intel API ID for the application.
    ipSubnets List<String>
    Returns the list of IP subnets for the application.
    name String
    Returns the application name.
    portProtocols List<String>
    Returns the list of port protocols for the application.
    supportDomains List<String>
    Returns the list of support domains for the application.
    supporteds List<String>
    Cloudflare products that support this application.
    updatedAt String
    Returns the application update time.
    version String
    Returns the application version.

    Package Details

    Repository
    Cloudflare pulumi/pulumi-cloudflare
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cloudflare Terraform Provider.
    cloudflare logo
    Viewing docs for Cloudflare v6.18.0
    published on Thursday, Jul 16, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial