1. Packages
  2. Scaleway
  3. API Docs
  4. edgeservices
  5. getPipeline
Viewing docs for Scaleway v1.45.0
published on Friday, Apr 3, 2026 by pulumiverse
scaleway logo
Viewing docs for Scaleway v1.45.0
published on Friday, Apr 3, 2026 by pulumiverse

    Gets information about an Edge Services pipeline.

    A pipeline is the top-level resource that groups together all the stages (DNS, TLS, cache, backend, etc.) of an Edge Services configuration.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    // Retrieve an Edge Services pipeline by its ID
    const byId = scaleway.edgeservices.getPipeline({
        pipelineId: "11111111-1111-1111-1111-111111111111",
    });
    
    import pulumi
    import pulumi_scaleway as scaleway
    
    # Retrieve an Edge Services pipeline by its ID
    by_id = scaleway.edgeservices.get_pipeline(pipeline_id="11111111-1111-1111-1111-111111111111")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/edgeservices"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Retrieve an Edge Services pipeline by its ID
    		_, err := edgeservices.LookupPipeline(ctx, &edgeservices.LookupPipelineArgs{
    			PipelineId: pulumi.StringRef("11111111-1111-1111-1111-111111111111"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumi.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        // Retrieve an Edge Services pipeline by its ID
        var byId = Scaleway.Edgeservices.GetPipeline.Invoke(new()
        {
            PipelineId = "11111111-1111-1111-1111-111111111111",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.edgeservices.EdgeservicesFunctions;
    import com.pulumi.scaleway.edgeservices.inputs.GetPipelineArgs;
    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) {
            // Retrieve an Edge Services pipeline by its ID
            final var byId = EdgeservicesFunctions.getPipeline(GetPipelineArgs.builder()
                .pipelineId("11111111-1111-1111-1111-111111111111")
                .build());
    
        }
    }
    
    variables:
      # Retrieve an Edge Services pipeline by its ID
      byId:
        fn::invoke:
          function: scaleway:edgeservices:getPipeline
          arguments:
            pipelineId: 11111111-1111-1111-1111-111111111111
    
    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    // Retrieve an Edge Services pipeline by name
    const byName = scaleway.edgeservices.getPipeline({
        name: "my-pipeline",
    });
    
    import pulumi
    import pulumi_scaleway as scaleway
    
    # Retrieve an Edge Services pipeline by name
    by_name = scaleway.edgeservices.get_pipeline(name="my-pipeline")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/edgeservices"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Retrieve an Edge Services pipeline by name
    		_, err := edgeservices.LookupPipeline(ctx, &edgeservices.LookupPipelineArgs{
    			Name: pulumi.StringRef("my-pipeline"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumi.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        // Retrieve an Edge Services pipeline by name
        var byName = Scaleway.Edgeservices.GetPipeline.Invoke(new()
        {
            Name = "my-pipeline",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.edgeservices.EdgeservicesFunctions;
    import com.pulumi.scaleway.edgeservices.inputs.GetPipelineArgs;
    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) {
            // Retrieve an Edge Services pipeline by name
            final var byName = EdgeservicesFunctions.getPipeline(GetPipelineArgs.builder()
                .name("my-pipeline")
                .build());
    
        }
    }
    
    variables:
      # Retrieve an Edge Services pipeline by name
      byName:
        fn::invoke:
          function: scaleway:edgeservices:getPipeline
          arguments:
            name: my-pipeline
    

    Using getPipeline

    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 getPipeline(args: GetPipelineArgs, opts?: InvokeOptions): Promise<GetPipelineResult>
    function getPipelineOutput(args: GetPipelineOutputArgs, opts?: InvokeOptions): Output<GetPipelineResult>
    def get_pipeline(name: Optional[str] = None,
                     pipeline_id: Optional[str] = None,
                     project_id: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetPipelineResult
    def get_pipeline_output(name: Optional[pulumi.Input[str]] = None,
                     pipeline_id: Optional[pulumi.Input[str]] = None,
                     project_id: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetPipelineResult]
    func LookupPipeline(ctx *Context, args *LookupPipelineArgs, opts ...InvokeOption) (*LookupPipelineResult, error)
    func LookupPipelineOutput(ctx *Context, args *LookupPipelineOutputArgs, opts ...InvokeOption) LookupPipelineResultOutput

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

    public static class GetPipeline 
    {
        public static Task<GetPipelineResult> InvokeAsync(GetPipelineArgs args, InvokeOptions? opts = null)
        public static Output<GetPipelineResult> Invoke(GetPipelineInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPipelineResult> getPipeline(GetPipelineArgs args, InvokeOptions options)
    public static Output<GetPipelineResult> getPipeline(GetPipelineArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scaleway:edgeservices/getPipeline:getPipeline
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string
    The pipeline name to filter for.
    PipelineId string

    The ID of the pipeline. Conflicts with all filter arguments below.

    The following filter arguments are supported (cannot be used with pipeline_id):

    ProjectId string
    The ID of the project to filter for.
    Name string
    The pipeline name to filter for.
    PipelineId string

    The ID of the pipeline. Conflicts with all filter arguments below.

    The following filter arguments are supported (cannot be used with pipeline_id):

    ProjectId string
    The ID of the project to filter for.
    name String
    The pipeline name to filter for.
    pipelineId String

    The ID of the pipeline. Conflicts with all filter arguments below.

    The following filter arguments are supported (cannot be used with pipeline_id):

    projectId String
    The ID of the project to filter for.
    name string
    The pipeline name to filter for.
    pipelineId string

    The ID of the pipeline. Conflicts with all filter arguments below.

    The following filter arguments are supported (cannot be used with pipeline_id):

    projectId string
    The ID of the project to filter for.
    name str
    The pipeline name to filter for.
    pipeline_id str

    The ID of the pipeline. Conflicts with all filter arguments below.

    The following filter arguments are supported (cannot be used with pipeline_id):

    project_id str
    The ID of the project to filter for.
    name String
    The pipeline name to filter for.
    pipelineId String

    The ID of the pipeline. Conflicts with all filter arguments below.

    The following filter arguments are supported (cannot be used with pipeline_id):

    projectId String
    The ID of the project to filter for.

    getPipeline Result

    The following output properties are available:

    CreatedAt string
    Description string
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    UpdatedAt string
    Name string
    PipelineId string
    ProjectId string
    CreatedAt string
    Description string
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    UpdatedAt string
    Name string
    PipelineId string
    ProjectId string
    createdAt String
    description String
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    updatedAt String
    name String
    pipelineId String
    projectId String
    createdAt string
    description string
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    updatedAt string
    name string
    pipelineId string
    projectId string
    created_at str
    description str
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    updated_at str
    name str
    pipeline_id str
    project_id str
    createdAt String
    description String
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    updatedAt String
    name String
    pipelineId String
    projectId String

    Package Details

    Repository
    scaleway pulumiverse/pulumi-scaleway
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scaleway Terraform Provider.
    scaleway logo
    Viewing docs for Scaleway v1.45.0
    published on Friday, Apr 3, 2026 by pulumiverse
      Try Pulumi Cloud free. Your team will thank you.