1. Packages
  2. Volcengine
  3. API Docs
  4. clb
  5. getHealthCheckLogProjects
Viewing docs for Volcengine v0.0.47
published on Friday, Mar 13, 2026 by Volcengine
volcengine logo
Viewing docs for Volcengine v0.0.47
published on Friday, Mar 13, 2026 by Volcengine

    Use this data source to query detailed information of health check log projects

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    
    const example = volcengine.clb.getHealthCheckLogProjects({});
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    example = volcengine.clb.get_health_check_log_projects()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/clb"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := clb.GetHealthCheckLogProjects(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Volcengine.Clb.GetHealthCheckLogProjects.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.clb.ClbFunctions;
    import com.pulumi.volcengine.clb.inputs.GetHealthCheckLogProjectsArgs;
    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 example = ClbFunctions.getHealthCheckLogProjects();
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: volcengine:clb:getHealthCheckLogProjects
          Arguments: {}
    

    Using getHealthCheckLogProjects

    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 getHealthCheckLogProjects(args: GetHealthCheckLogProjectsArgs, opts?: InvokeOptions): Promise<GetHealthCheckLogProjectsResult>
    function getHealthCheckLogProjectsOutput(args: GetHealthCheckLogProjectsOutputArgs, opts?: InvokeOptions): Output<GetHealthCheckLogProjectsResult>
    def get_health_check_log_projects(output_file: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetHealthCheckLogProjectsResult
    def get_health_check_log_projects_output(output_file: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetHealthCheckLogProjectsResult]
    func GetHealthCheckLogProjects(ctx *Context, args *GetHealthCheckLogProjectsArgs, opts ...InvokeOption) (*GetHealthCheckLogProjectsResult, error)
    func GetHealthCheckLogProjectsOutput(ctx *Context, args *GetHealthCheckLogProjectsOutputArgs, opts ...InvokeOption) GetHealthCheckLogProjectsResultOutput

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

    public static class GetHealthCheckLogProjects 
    {
        public static Task<GetHealthCheckLogProjectsResult> InvokeAsync(GetHealthCheckLogProjectsArgs args, InvokeOptions? opts = null)
        public static Output<GetHealthCheckLogProjectsResult> Invoke(GetHealthCheckLogProjectsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetHealthCheckLogProjectsResult> getHealthCheckLogProjects(GetHealthCheckLogProjectsArgs args, InvokeOptions options)
    public static Output<GetHealthCheckLogProjectsResult> getHealthCheckLogProjects(GetHealthCheckLogProjectsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: volcengine:clb/getHealthCheckLogProjects:getHealthCheckLogProjects
      arguments:
        # arguments dictionary

    The following arguments are supported:

    OutputFile string
    File name where to save data source results.
    OutputFile string
    File name where to save data source results.
    outputFile String
    File name where to save data source results.
    outputFile string
    File name where to save data source results.
    output_file str
    File name where to save data source results.
    outputFile String
    File name where to save data source results.

    getHealthCheckLogProjects Result

    The following output properties are available:

    HealthCheckLogProjects List<GetHealthCheckLogProjectsHealthCheckLogProject>
    The collection of health check log projects.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of query.
    OutputFile string
    HealthCheckLogProjects []GetHealthCheckLogProjectsHealthCheckLogProject
    The collection of health check log projects.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of query.
    OutputFile string
    healthCheckLogProjects List<GetHealthCheckLogProjectsHealthCheckLogProject>
    The collection of health check log projects.
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Integer
    The total count of query.
    outputFile String
    healthCheckLogProjects GetHealthCheckLogProjectsHealthCheckLogProject[]
    The collection of health check log projects.
    id string
    The provider-assigned unique ID for this managed resource.
    totalCount number
    The total count of query.
    outputFile string
    health_check_log_projects Sequence[GetHealthCheckLogProjectsHealthCheckLogProject]
    The collection of health check log projects.
    id str
    The provider-assigned unique ID for this managed resource.
    total_count int
    The total count of query.
    output_file str
    healthCheckLogProjects List<Property Map>
    The collection of health check log projects.
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Number
    The total count of query.
    outputFile String

    Supporting Types

    GetHealthCheckLogProjectsHealthCheckLogProject

    Id string
    The ID of the health check log project.
    LogProjectId string
    The ID of the health check log project.
    Id string
    The ID of the health check log project.
    LogProjectId string
    The ID of the health check log project.
    id String
    The ID of the health check log project.
    logProjectId String
    The ID of the health check log project.
    id string
    The ID of the health check log project.
    logProjectId string
    The ID of the health check log project.
    id str
    The ID of the health check log project.
    log_project_id str
    The ID of the health check log project.
    id String
    The ID of the health check log project.
    logProjectId String
    The ID of the health check log project.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Viewing docs for Volcengine v0.0.47
    published on Friday, Mar 13, 2026 by Volcengine
      Try Pulumi Cloud free. Your team will thank you.