1. Packages
  2. Scaleway
  3. API Docs
  4. EdgeServicesPipeline
Scaleway v1.27.1 published on Wednesday, Apr 30, 2025 by pulumiverse

scaleway.EdgeServicesPipeline

Explore with Pulumi AI

scaleway logo
Scaleway v1.27.1 published on Wednesday, Apr 30, 2025 by pulumiverse

    Creates and manages Scaleway Edge Services Pipelines.

    Example Usage

    Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.EdgeServicesPipeline("main", {
        name: "pipeline-name",
        description: "pipeline description",
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.EdgeServicesPipeline("main",
        name="pipeline-name",
        description="pipeline description")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := scaleway.NewEdgeServicesPipeline(ctx, "main", &scaleway.EdgeServicesPipelineArgs{
    			Name:        pulumi.String("pipeline-name"),
    			Description: pulumi.String("pipeline description"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var main = new Scaleway.EdgeServicesPipeline("main", new()
        {
            Name = "pipeline-name",
            Description = "pipeline description",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.EdgeServicesPipeline;
    import com.pulumi.scaleway.EdgeServicesPipelineArgs;
    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) {
            var main = new EdgeServicesPipeline("main", EdgeServicesPipelineArgs.builder()
                .name("pipeline-name")
                .description("pipeline description")
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:EdgeServicesPipeline
        properties:
          name: pipeline-name
          description: pipeline description
    

    Complete pipeline

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.EdgeServicesPipeline("main", {
        name: "pipeline-name",
        description: "pipeline description",
    });
    const mainEdgeServicesBackendStage = new scaleway.EdgeServicesBackendStage("main", {
        pipelineId: main.id,
        s3BackendConfig: {
            bucketName: "my-bucket-name",
            bucketRegion: "fr-par",
        },
    });
    const mainEdgeServicesWafStage = new scaleway.EdgeServicesWafStage("main", {
        pipelineId: main.id,
        backendStageId: mainEdgeServicesBackendStage.id,
        mode: "enable",
        paranoiaLevel: 3,
    });
    const mainEdgeServicesRouteStage = new scaleway.EdgeServicesRouteStage("main", {
        pipelineId: main.id,
        wafStageId: mainEdgeServicesWafStage.id,
        rules: [{
            backendStageId: mainEdgeServicesBackendStage.id,
            ruleHttpMatch: {
                methodFilters: [
                    "get",
                    "post",
                ],
                pathFilter: {
                    pathFilterType: "regex",
                    value: ".*",
                },
            },
        }],
    });
    const mainEdgeServicesCacheStage = new scaleway.EdgeServicesCacheStage("main", {
        pipelineId: main.id,
        routeStageId: mainEdgeServicesRouteStage.id,
    });
    const mainEdgeServicesTlsStage = new scaleway.EdgeServicesTlsStage("main", {
        pipelineId: main.id,
        cacheStageId: mainEdgeServicesCacheStage.id,
        managedCertificate: true,
    });
    const mainEdgeServicesDnsStage = new scaleway.EdgeServicesDnsStage("main", {
        pipelineId: main.id,
        tlsStageId: mainEdgeServicesTlsStage.id,
        fqdns: ["subdomain.example.com"],
    });
    const mainEdgeServicesHeadStage = new scaleway.EdgeServicesHeadStage("main", {
        pipelineId: main.id,
        headStageId: mainEdgeServicesDnsStage.id,
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.EdgeServicesPipeline("main",
        name="pipeline-name",
        description="pipeline description")
    main_edge_services_backend_stage = scaleway.EdgeServicesBackendStage("main",
        pipeline_id=main.id,
        s3_backend_config={
            "bucket_name": "my-bucket-name",
            "bucket_region": "fr-par",
        })
    main_edge_services_waf_stage = scaleway.EdgeServicesWafStage("main",
        pipeline_id=main.id,
        backend_stage_id=main_edge_services_backend_stage.id,
        mode="enable",
        paranoia_level=3)
    main_edge_services_route_stage = scaleway.EdgeServicesRouteStage("main",
        pipeline_id=main.id,
        waf_stage_id=main_edge_services_waf_stage.id,
        rules=[{
            "backend_stage_id": main_edge_services_backend_stage.id,
            "rule_http_match": {
                "method_filters": [
                    "get",
                    "post",
                ],
                "path_filter": {
                    "path_filter_type": "regex",
                    "value": ".*",
                },
            },
        }])
    main_edge_services_cache_stage = scaleway.EdgeServicesCacheStage("main",
        pipeline_id=main.id,
        route_stage_id=main_edge_services_route_stage.id)
    main_edge_services_tls_stage = scaleway.EdgeServicesTlsStage("main",
        pipeline_id=main.id,
        cache_stage_id=main_edge_services_cache_stage.id,
        managed_certificate=True)
    main_edge_services_dns_stage = scaleway.EdgeServicesDnsStage("main",
        pipeline_id=main.id,
        tls_stage_id=main_edge_services_tls_stage.id,
        fqdns=["subdomain.example.com"])
    main_edge_services_head_stage = scaleway.EdgeServicesHeadStage("main",
        pipeline_id=main.id,
        head_stage_id=main_edge_services_dns_stage.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		main, err := scaleway.NewEdgeServicesPipeline(ctx, "main", &scaleway.EdgeServicesPipelineArgs{
    			Name:        pulumi.String("pipeline-name"),
    			Description: pulumi.String("pipeline description"),
    		})
    		if err != nil {
    			return err
    		}
    		mainEdgeServicesBackendStage, err := scaleway.NewEdgeServicesBackendStage(ctx, "main", &scaleway.EdgeServicesBackendStageArgs{
    			PipelineId: main.ID(),
    			S3BackendConfig: &scaleway.EdgeServicesBackendStageS3BackendConfigArgs{
    				BucketName:   pulumi.String("my-bucket-name"),
    				BucketRegion: pulumi.String("fr-par"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		mainEdgeServicesWafStage, err := scaleway.NewEdgeServicesWafStage(ctx, "main", &scaleway.EdgeServicesWafStageArgs{
    			PipelineId:     main.ID(),
    			BackendStageId: mainEdgeServicesBackendStage.ID(),
    			Mode:           pulumi.String("enable"),
    			ParanoiaLevel:  pulumi.Int(3),
    		})
    		if err != nil {
    			return err
    		}
    		mainEdgeServicesRouteStage, err := scaleway.NewEdgeServicesRouteStage(ctx, "main", &scaleway.EdgeServicesRouteStageArgs{
    			PipelineId: main.ID(),
    			WafStageId: mainEdgeServicesWafStage.ID(),
    			Rules: scaleway.EdgeServicesRouteStageRuleArray{
    				&scaleway.EdgeServicesRouteStageRuleArgs{
    					BackendStageId: mainEdgeServicesBackendStage.ID(),
    					RuleHttpMatch: &scaleway.EdgeServicesRouteStageRuleRuleHttpMatchArgs{
    						MethodFilters: pulumi.StringArray{
    							pulumi.String("get"),
    							pulumi.String("post"),
    						},
    						PathFilter: &scaleway.EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs{
    							PathFilterType: pulumi.String("regex"),
    							Value:          pulumi.String(".*"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		mainEdgeServicesCacheStage, err := scaleway.NewEdgeServicesCacheStage(ctx, "main", &scaleway.EdgeServicesCacheStageArgs{
    			PipelineId:   main.ID(),
    			RouteStageId: mainEdgeServicesRouteStage.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		mainEdgeServicesTlsStage, err := scaleway.NewEdgeServicesTlsStage(ctx, "main", &scaleway.EdgeServicesTlsStageArgs{
    			PipelineId:         main.ID(),
    			CacheStageId:       mainEdgeServicesCacheStage.ID(),
    			ManagedCertificate: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		mainEdgeServicesDnsStage, err := scaleway.NewEdgeServicesDnsStage(ctx, "main", &scaleway.EdgeServicesDnsStageArgs{
    			PipelineId: main.ID(),
    			TlsStageId: mainEdgeServicesTlsStage.ID(),
    			Fqdns: pulumi.StringArray{
    				pulumi.String("subdomain.example.com"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scaleway.NewEdgeServicesHeadStage(ctx, "main", &scaleway.EdgeServicesHeadStageArgs{
    			PipelineId:  main.ID(),
    			HeadStageId: mainEdgeServicesDnsStage.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var main = new Scaleway.EdgeServicesPipeline("main", new()
        {
            Name = "pipeline-name",
            Description = "pipeline description",
        });
    
        var mainEdgeServicesBackendStage = new Scaleway.EdgeServicesBackendStage("main", new()
        {
            PipelineId = main.Id,
            S3BackendConfig = new Scaleway.Inputs.EdgeServicesBackendStageS3BackendConfigArgs
            {
                BucketName = "my-bucket-name",
                BucketRegion = "fr-par",
            },
        });
    
        var mainEdgeServicesWafStage = new Scaleway.EdgeServicesWafStage("main", new()
        {
            PipelineId = main.Id,
            BackendStageId = mainEdgeServicesBackendStage.Id,
            Mode = "enable",
            ParanoiaLevel = 3,
        });
    
        var mainEdgeServicesRouteStage = new Scaleway.EdgeServicesRouteStage("main", new()
        {
            PipelineId = main.Id,
            WafStageId = mainEdgeServicesWafStage.Id,
            Rules = new[]
            {
                new Scaleway.Inputs.EdgeServicesRouteStageRuleArgs
                {
                    BackendStageId = mainEdgeServicesBackendStage.Id,
                    RuleHttpMatch = new Scaleway.Inputs.EdgeServicesRouteStageRuleRuleHttpMatchArgs
                    {
                        MethodFilters = new[]
                        {
                            "get",
                            "post",
                        },
                        PathFilter = new Scaleway.Inputs.EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs
                        {
                            PathFilterType = "regex",
                            Value = ".*",
                        },
                    },
                },
            },
        });
    
        var mainEdgeServicesCacheStage = new Scaleway.EdgeServicesCacheStage("main", new()
        {
            PipelineId = main.Id,
            RouteStageId = mainEdgeServicesRouteStage.Id,
        });
    
        var mainEdgeServicesTlsStage = new Scaleway.EdgeServicesTlsStage("main", new()
        {
            PipelineId = main.Id,
            CacheStageId = mainEdgeServicesCacheStage.Id,
            ManagedCertificate = true,
        });
    
        var mainEdgeServicesDnsStage = new Scaleway.EdgeServicesDnsStage("main", new()
        {
            PipelineId = main.Id,
            TlsStageId = mainEdgeServicesTlsStage.Id,
            Fqdns = new[]
            {
                "subdomain.example.com",
            },
        });
    
        var mainEdgeServicesHeadStage = new Scaleway.EdgeServicesHeadStage("main", new()
        {
            PipelineId = main.Id,
            HeadStageId = mainEdgeServicesDnsStage.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.EdgeServicesPipeline;
    import com.pulumi.scaleway.EdgeServicesPipelineArgs;
    import com.pulumi.scaleway.EdgeServicesBackendStage;
    import com.pulumi.scaleway.EdgeServicesBackendStageArgs;
    import com.pulumi.scaleway.inputs.EdgeServicesBackendStageS3BackendConfigArgs;
    import com.pulumi.scaleway.EdgeServicesWafStage;
    import com.pulumi.scaleway.EdgeServicesWafStageArgs;
    import com.pulumi.scaleway.EdgeServicesRouteStage;
    import com.pulumi.scaleway.EdgeServicesRouteStageArgs;
    import com.pulumi.scaleway.inputs.EdgeServicesRouteStageRuleArgs;
    import com.pulumi.scaleway.inputs.EdgeServicesRouteStageRuleRuleHttpMatchArgs;
    import com.pulumi.scaleway.inputs.EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs;
    import com.pulumi.scaleway.EdgeServicesCacheStage;
    import com.pulumi.scaleway.EdgeServicesCacheStageArgs;
    import com.pulumi.scaleway.EdgeServicesTlsStage;
    import com.pulumi.scaleway.EdgeServicesTlsStageArgs;
    import com.pulumi.scaleway.EdgeServicesDnsStage;
    import com.pulumi.scaleway.EdgeServicesDnsStageArgs;
    import com.pulumi.scaleway.EdgeServicesHeadStage;
    import com.pulumi.scaleway.EdgeServicesHeadStageArgs;
    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) {
            var main = new EdgeServicesPipeline("main", EdgeServicesPipelineArgs.builder()
                .name("pipeline-name")
                .description("pipeline description")
                .build());
    
            var mainEdgeServicesBackendStage = new EdgeServicesBackendStage("mainEdgeServicesBackendStage", EdgeServicesBackendStageArgs.builder()
                .pipelineId(main.id())
                .s3BackendConfig(EdgeServicesBackendStageS3BackendConfigArgs.builder()
                    .bucketName("my-bucket-name")
                    .bucketRegion("fr-par")
                    .build())
                .build());
    
            var mainEdgeServicesWafStage = new EdgeServicesWafStage("mainEdgeServicesWafStage", EdgeServicesWafStageArgs.builder()
                .pipelineId(main.id())
                .backendStageId(mainEdgeServicesBackendStage.id())
                .mode("enable")
                .paranoiaLevel(3)
                .build());
    
            var mainEdgeServicesRouteStage = new EdgeServicesRouteStage("mainEdgeServicesRouteStage", EdgeServicesRouteStageArgs.builder()
                .pipelineId(main.id())
                .wafStageId(mainEdgeServicesWafStage.id())
                .rules(EdgeServicesRouteStageRuleArgs.builder()
                    .backendStageId(mainEdgeServicesBackendStage.id())
                    .ruleHttpMatch(EdgeServicesRouteStageRuleRuleHttpMatchArgs.builder()
                        .methodFilters(                    
                            "get",
                            "post")
                        .pathFilter(EdgeServicesRouteStageRuleRuleHttpMatchPathFilterArgs.builder()
                            .pathFilterType("regex")
                            .value(".*")
                            .build())
                        .build())
                    .build())
                .build());
    
            var mainEdgeServicesCacheStage = new EdgeServicesCacheStage("mainEdgeServicesCacheStage", EdgeServicesCacheStageArgs.builder()
                .pipelineId(main.id())
                .routeStageId(mainEdgeServicesRouteStage.id())
                .build());
    
            var mainEdgeServicesTlsStage = new EdgeServicesTlsStage("mainEdgeServicesTlsStage", EdgeServicesTlsStageArgs.builder()
                .pipelineId(main.id())
                .cacheStageId(mainEdgeServicesCacheStage.id())
                .managedCertificate(true)
                .build());
    
            var mainEdgeServicesDnsStage = new EdgeServicesDnsStage("mainEdgeServicesDnsStage", EdgeServicesDnsStageArgs.builder()
                .pipelineId(main.id())
                .tlsStageId(mainEdgeServicesTlsStage.id())
                .fqdns("subdomain.example.com")
                .build());
    
            var mainEdgeServicesHeadStage = new EdgeServicesHeadStage("mainEdgeServicesHeadStage", EdgeServicesHeadStageArgs.builder()
                .pipelineId(main.id())
                .headStageId(mainEdgeServicesDnsStage.id())
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:EdgeServicesPipeline
        properties:
          name: pipeline-name
          description: pipeline description
      mainEdgeServicesDnsStage:
        type: scaleway:EdgeServicesDnsStage
        name: main
        properties:
          pipelineId: ${main.id}
          tlsStageId: ${mainEdgeServicesTlsStage.id}
          fqdns:
            - subdomain.example.com
      mainEdgeServicesTlsStage:
        type: scaleway:EdgeServicesTlsStage
        name: main
        properties:
          pipelineId: ${main.id}
          cacheStageId: ${mainEdgeServicesCacheStage.id}
          managedCertificate: true
      mainEdgeServicesCacheStage:
        type: scaleway:EdgeServicesCacheStage
        name: main
        properties:
          pipelineId: ${main.id}
          routeStageId: ${mainEdgeServicesRouteStage.id}
      mainEdgeServicesRouteStage:
        type: scaleway:EdgeServicesRouteStage
        name: main
        properties:
          pipelineId: ${main.id}
          wafStageId: ${mainEdgeServicesWafStage.id}
          rules:
            - backendStageId: ${mainEdgeServicesBackendStage.id}
              ruleHttpMatch:
                methodFilters:
                  - get
                  - post
                pathFilter:
                  pathFilterType: regex
                  value: .*
      mainEdgeServicesWafStage:
        type: scaleway:EdgeServicesWafStage
        name: main
        properties:
          pipelineId: ${main.id}
          backendStageId: ${mainEdgeServicesBackendStage.id}
          mode: enable
          paranoiaLevel: 3
      mainEdgeServicesBackendStage:
        type: scaleway:EdgeServicesBackendStage
        name: main
        properties:
          pipelineId: ${main.id}
          s3BackendConfig:
            bucketName: my-bucket-name
            bucketRegion: fr-par
      mainEdgeServicesHeadStage:
        type: scaleway:EdgeServicesHeadStage
        name: main
        properties:
          pipelineId: ${main.id}
          headStageId: ${mainEdgeServicesDnsStage.id}
    

    Create EdgeServicesPipeline Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new EdgeServicesPipeline(name: string, args?: EdgeServicesPipelineArgs, opts?: CustomResourceOptions);
    @overload
    def EdgeServicesPipeline(resource_name: str,
                             args: Optional[EdgeServicesPipelineArgs] = None,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def EdgeServicesPipeline(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             description: Optional[str] = None,
                             name: Optional[str] = None,
                             project_id: Optional[str] = None)
    func NewEdgeServicesPipeline(ctx *Context, name string, args *EdgeServicesPipelineArgs, opts ...ResourceOption) (*EdgeServicesPipeline, error)
    public EdgeServicesPipeline(string name, EdgeServicesPipelineArgs? args = null, CustomResourceOptions? opts = null)
    public EdgeServicesPipeline(String name, EdgeServicesPipelineArgs args)
    public EdgeServicesPipeline(String name, EdgeServicesPipelineArgs args, CustomResourceOptions options)
    
    type: scaleway:EdgeServicesPipeline
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args EdgeServicesPipelineArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args EdgeServicesPipelineArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args EdgeServicesPipelineArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EdgeServicesPipelineArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EdgeServicesPipelineArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var edgeServicesPipelineResource = new Scaleway.EdgeServicesPipeline("edgeServicesPipelineResource", new()
    {
        Description = "string",
        Name = "string",
        ProjectId = "string",
    });
    
    example, err := scaleway.NewEdgeServicesPipeline(ctx, "edgeServicesPipelineResource", &scaleway.EdgeServicesPipelineArgs{
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	ProjectId:   pulumi.String("string"),
    })
    
    var edgeServicesPipelineResource = new EdgeServicesPipeline("edgeServicesPipelineResource", EdgeServicesPipelineArgs.builder()
        .description("string")
        .name("string")
        .projectId("string")
        .build());
    
    edge_services_pipeline_resource = scaleway.EdgeServicesPipeline("edgeServicesPipelineResource",
        description="string",
        name="string",
        project_id="string")
    
    const edgeServicesPipelineResource = new scaleway.EdgeServicesPipeline("edgeServicesPipelineResource", {
        description: "string",
        name: "string",
        projectId: "string",
    });
    
    type: scaleway:EdgeServicesPipeline
    properties:
        description: string
        name: string
        projectId: string
    

    EdgeServicesPipeline Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The EdgeServicesPipeline resource accepts the following input properties:

    Description string
    The description of the pipeline.
    Name string
    The name of the pipeline.
    ProjectId string
    project_id) The ID of the project the pipeline is associated with.
    Description string
    The description of the pipeline.
    Name string
    The name of the pipeline.
    ProjectId string
    project_id) The ID of the project the pipeline is associated with.
    description String
    The description of the pipeline.
    name String
    The name of the pipeline.
    projectId String
    project_id) The ID of the project the pipeline is associated with.
    description string
    The description of the pipeline.
    name string
    The name of the pipeline.
    projectId string
    project_id) The ID of the project the pipeline is associated with.
    description str
    The description of the pipeline.
    name str
    The name of the pipeline.
    project_id str
    project_id) The ID of the project the pipeline is associated with.
    description String
    The description of the pipeline.
    name String
    The name of the pipeline.
    projectId String
    project_id) The ID of the project the pipeline is associated with.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EdgeServicesPipeline resource produces the following output properties:

    CreatedAt string
    The date and time of the creation of the pipeline.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of user pipeline.
    UpdatedAt string
    The date and time of the last update of the pipeline.
    CreatedAt string
    The date and time of the creation of the pipeline.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of user pipeline.
    UpdatedAt string
    The date and time of the last update of the pipeline.
    createdAt String
    The date and time of the creation of the pipeline.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of user pipeline.
    updatedAt String
    The date and time of the last update of the pipeline.
    createdAt string
    The date and time of the creation of the pipeline.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of user pipeline.
    updatedAt string
    The date and time of the last update of the pipeline.
    created_at str
    The date and time of the creation of the pipeline.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The status of user pipeline.
    updated_at str
    The date and time of the last update of the pipeline.
    createdAt String
    The date and time of the creation of the pipeline.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of user pipeline.
    updatedAt String
    The date and time of the last update of the pipeline.

    Look up Existing EdgeServicesPipeline Resource

    Get an existing EdgeServicesPipeline resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: EdgeServicesPipelineState, opts?: CustomResourceOptions): EdgeServicesPipeline
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            project_id: Optional[str] = None,
            status: Optional[str] = None,
            updated_at: Optional[str] = None) -> EdgeServicesPipeline
    func GetEdgeServicesPipeline(ctx *Context, name string, id IDInput, state *EdgeServicesPipelineState, opts ...ResourceOption) (*EdgeServicesPipeline, error)
    public static EdgeServicesPipeline Get(string name, Input<string> id, EdgeServicesPipelineState? state, CustomResourceOptions? opts = null)
    public static EdgeServicesPipeline get(String name, Output<String> id, EdgeServicesPipelineState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:EdgeServicesPipeline    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreatedAt string
    The date and time of the creation of the pipeline.
    Description string
    The description of the pipeline.
    Name string
    The name of the pipeline.
    ProjectId string
    project_id) The ID of the project the pipeline is associated with.
    Status string
    The status of user pipeline.
    UpdatedAt string
    The date and time of the last update of the pipeline.
    CreatedAt string
    The date and time of the creation of the pipeline.
    Description string
    The description of the pipeline.
    Name string
    The name of the pipeline.
    ProjectId string
    project_id) The ID of the project the pipeline is associated with.
    Status string
    The status of user pipeline.
    UpdatedAt string
    The date and time of the last update of the pipeline.
    createdAt String
    The date and time of the creation of the pipeline.
    description String
    The description of the pipeline.
    name String
    The name of the pipeline.
    projectId String
    project_id) The ID of the project the pipeline is associated with.
    status String
    The status of user pipeline.
    updatedAt String
    The date and time of the last update of the pipeline.
    createdAt string
    The date and time of the creation of the pipeline.
    description string
    The description of the pipeline.
    name string
    The name of the pipeline.
    projectId string
    project_id) The ID of the project the pipeline is associated with.
    status string
    The status of user pipeline.
    updatedAt string
    The date and time of the last update of the pipeline.
    created_at str
    The date and time of the creation of the pipeline.
    description str
    The description of the pipeline.
    name str
    The name of the pipeline.
    project_id str
    project_id) The ID of the project the pipeline is associated with.
    status str
    The status of user pipeline.
    updated_at str
    The date and time of the last update of the pipeline.
    createdAt String
    The date and time of the creation of the pipeline.
    description String
    The description of the pipeline.
    name String
    The name of the pipeline.
    projectId String
    project_id) The ID of the project the pipeline is associated with.
    status String
    The status of user pipeline.
    updatedAt String
    The date and time of the last update of the pipeline.

    Import

    Pipelines can be imported using the {id}, e.g.

    bash

    $ pulumi import scaleway:index/edgeServicesPipeline:EdgeServicesPipeline basic 11111111-1111-1111-1111-111111111111
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    scaleway pulumiverse/pulumi-scaleway
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scaleway Terraform Provider.
    scaleway logo
    Scaleway v1.27.1 published on Wednesday, Apr 30, 2025 by pulumiverse