1. Packages
  2. Volcengine
  3. API Docs
  4. clb
  5. HealthCheckLogProjects
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
    Deprecated: volcengine.clb.HealthCheckLogProjects has been deprecated in favor of volcengine.clb.getHealthCheckLogProjects

    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 HealthCheckLogProjects

    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 healthCheckLogProjects(args: HealthCheckLogProjectsArgs, opts?: InvokeOptions): Promise<HealthCheckLogProjectsResult>
    function healthCheckLogProjectsOutput(args: HealthCheckLogProjectsOutputArgs, opts?: InvokeOptions): Output<HealthCheckLogProjectsResult>
    def health_check_log_projects(output_file: Optional[str] = None,
                                  opts: Optional[InvokeOptions] = None) -> HealthCheckLogProjectsResult
    def health_check_log_projects_output(output_file: Optional[pulumi.Input[str]] = None,
                                  opts: Optional[InvokeOptions] = None) -> Output[HealthCheckLogProjectsResult]
    func HealthCheckLogProjects(ctx *Context, args *HealthCheckLogProjectsArgs, opts ...InvokeOption) (*HealthCheckLogProjectsResult, error)
    func HealthCheckLogProjectsOutput(ctx *Context, args *HealthCheckLogProjectsOutputArgs, opts ...InvokeOption) HealthCheckLogProjectsResultOutput
    public static class HealthCheckLogProjects 
    {
        public static Task<HealthCheckLogProjectsResult> InvokeAsync(HealthCheckLogProjectsArgs args, InvokeOptions? opts = null)
        public static Output<HealthCheckLogProjectsResult> Invoke(HealthCheckLogProjectsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<HealthCheckLogProjectsResult> healthCheckLogProjects(HealthCheckLogProjectsArgs args, InvokeOptions options)
    public static Output<HealthCheckLogProjectsResult> healthCheckLogProjects(HealthCheckLogProjectsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: volcengine:clb:HealthCheckLogProjects
      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.

    HealthCheckLogProjects Result

    The following output properties are available:

    HealthCheckLogProjects List<HealthCheckLogProjectsHealthCheckLogProject>
    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 []HealthCheckLogProjectsHealthCheckLogProject
    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<HealthCheckLogProjectsHealthCheckLogProject>
    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 HealthCheckLogProjectsHealthCheckLogProject[]
    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[HealthCheckLogProjectsHealthCheckLogProject]
    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

    HealthCheckLogProjectsHealthCheckLogProject

    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.