1. Packages
  2. Packages
  3. Ionoscloud
  4. API Docs
  5. monitoring
  6. Pipeline
Viewing docs for IonosCloud v0.3.0
published on Wednesday, Apr 15, 2026 by ionos-cloud
ionoscloud logo
Viewing docs for IonosCloud v0.3.0
published on Wednesday, Apr 15, 2026 by ionos-cloud

    Manages a Monitoring pipeline.

    ⚠️ Only tokens are accepted for authorization in the monitoring_pipeline resource. Please ensure you are using tokens as other methods will not be valid.

    Usage example

    import * as pulumi from "@pulumi/pulumi";
    import * as ionoscloud from "@ionos-cloud/sdk-pulumi";
    
    const example = new ionoscloud.monitoring.Pipeline("example", {
        location: "es/vit",
        name: "pipelineExample",
    });
    
    import pulumi
    import pulumi_ionoscloud as ionoscloud
    
    example = ionoscloud.monitoring.Pipeline("example",
        location="es/vit",
        name="pipelineExample")
    
    package main
    
    import (
    	"github.com/ionos-cloud/pulumi-ionoscloud/sdk/go/ionoscloud/monitoring"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := monitoring.NewPipeline(ctx, "example", &monitoring.PipelineArgs{
    			Location: pulumi.String("es/vit"),
    			Name:     pulumi.String("pipelineExample"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ionoscloud = Ionoscloud.Pulumi.Ionoscloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Ionoscloud.Monitoring.Pipeline("example", new()
        {
            Location = "es/vit",
            Name = "pipelineExample",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.ionoscloud.pulumi.ionoscloud.monitoring.Pipeline;
    import com.ionoscloud.pulumi.ionoscloud.monitoring.PipelineArgs;
    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 example = new Pipeline("example", PipelineArgs.builder()
                .location("es/vit")
                .name("pipelineExample")
                .build());
    
        }
    }
    
    resources:
      example:
        type: ionoscloud:monitoring:Pipeline
        properties:
          location: es/vit
          name: pipelineExample
    

    NOTE: The default timeout for all operations is 60 minutes. If you want to change the default value, you can use timeouts attribute inside the resource:

    import * as pulumi from "@pulumi/pulumi";
    import * as ionoscloud from "@ionos-cloud/sdk-pulumi";
    
    const example = new ionoscloud.monitoring.Pipeline("example", {
        location: "es/vit",
        name: "pipelineExample",
    });
    
    import pulumi
    import pulumi_ionoscloud as ionoscloud
    
    example = ionoscloud.monitoring.Pipeline("example",
        location="es/vit",
        name="pipelineExample")
    
    package main
    
    import (
    	"github.com/ionos-cloud/pulumi-ionoscloud/sdk/go/ionoscloud/monitoring"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := monitoring.NewPipeline(ctx, "example", &monitoring.PipelineArgs{
    			Location: pulumi.String("es/vit"),
    			Name:     pulumi.String("pipelineExample"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ionoscloud = Ionoscloud.Pulumi.Ionoscloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Ionoscloud.Monitoring.Pipeline("example", new()
        {
            Location = "es/vit",
            Name = "pipelineExample",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.ionoscloud.pulumi.ionoscloud.monitoring.Pipeline;
    import com.ionoscloud.pulumi.ionoscloud.monitoring.PipelineArgs;
    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 example = new Pipeline("example", PipelineArgs.builder()
                .location("es/vit")
                .name("pipelineExample")
                .build());
    
        }
    }
    
    resources:
      example:
        type: ionoscloud:monitoring:Pipeline
        properties:
          location: es/vit
          name: pipelineExample
    

    Create Pipeline Resource

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

    Constructor syntax

    new Pipeline(name: string, args?: PipelineArgs, opts?: CustomResourceOptions);
    @overload
    def Pipeline(resource_name: str,
                 args: Optional[PipelineArgs] = None,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Pipeline(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 location: Optional[str] = None,
                 name: Optional[str] = None,
                 timeouts: Optional[PipelineTimeoutsArgs] = None)
    func NewPipeline(ctx *Context, name string, args *PipelineArgs, opts ...ResourceOption) (*Pipeline, error)
    public Pipeline(string name, PipelineArgs? args = null, CustomResourceOptions? opts = null)
    public Pipeline(String name, PipelineArgs args)
    public Pipeline(String name, PipelineArgs args, CustomResourceOptions options)
    
    type: ionoscloud:monitoring:Pipeline
    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 PipelineArgs
    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 PipelineArgs
    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 PipelineArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PipelineArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PipelineArgs
    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 ionoscloudPipelineResource = new Ionoscloud.Monitoring.Pipeline("ionoscloudPipelineResource", new()
    {
        Location = "string",
        Name = "string",
        Timeouts = new Ionoscloud.Monitoring.Inputs.PipelineTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
    });
    
    example, err := monitoring.NewPipeline(ctx, "ionoscloudPipelineResource", &monitoring.PipelineArgs{
    	Location: pulumi.String("string"),
    	Name:     pulumi.String("string"),
    	Timeouts: &monitoring.PipelineTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var ionoscloudPipelineResource = new com.ionoscloud.pulumi.ionoscloud.monitoring.Pipeline("ionoscloudPipelineResource", com.ionoscloud.pulumi.ionoscloud.monitoring.PipelineArgs.builder()
        .location("string")
        .name("string")
        .timeouts(PipelineTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .build());
    
    ionoscloud_pipeline_resource = ionoscloud.monitoring.Pipeline("ionoscloudPipelineResource",
        location="string",
        name="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        })
    
    const ionoscloudPipelineResource = new ionoscloud.monitoring.Pipeline("ionoscloudPipelineResource", {
        location: "string",
        name: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
    });
    
    type: ionoscloud:monitoring:Pipeline
    properties:
        location: string
        name: string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
    

    Pipeline 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 Pipeline resource accepts the following input properties:

    Location string
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    Name string
    [string] The name of the Monitoring pipeline.
    Timeouts Ionoscloud.PipelineTimeouts
    Location string
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    Name string
    [string] The name of the Monitoring pipeline.
    Timeouts PipelineTimeoutsArgs
    location String
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    name String
    [string] The name of the Monitoring pipeline.
    timeouts PipelineTimeouts
    location string
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    name string
    [string] The name of the Monitoring pipeline.
    timeouts PipelineTimeouts
    location str
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    name str
    [string] The name of the Monitoring pipeline.
    timeouts PipelineTimeoutsArgs
    location String
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    name String
    [string] The name of the Monitoring pipeline.
    timeouts Property Map

    Outputs

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

    GrafanaEndpoint string
    [string] The endpoint of the Grafana instance.
    HttpEndpoint string
    [string] The HTTP endpoint of the monitoring instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    Key string

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    GrafanaEndpoint string
    [string] The endpoint of the Grafana instance.
    HttpEndpoint string
    [string] The HTTP endpoint of the monitoring instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    Key string

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    grafanaEndpoint String
    [string] The endpoint of the Grafana instance.
    httpEndpoint String
    [string] The HTTP endpoint of the monitoring instance.
    id String
    The provider-assigned unique ID for this managed resource.
    key String

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    grafanaEndpoint string
    [string] The endpoint of the Grafana instance.
    httpEndpoint string
    [string] The HTTP endpoint of the monitoring instance.
    id string
    The provider-assigned unique ID for this managed resource.
    key string

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    grafana_endpoint str
    [string] The endpoint of the Grafana instance.
    http_endpoint str
    [string] The HTTP endpoint of the monitoring instance.
    id str
    The provider-assigned unique ID for this managed resource.
    key str

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    grafanaEndpoint String
    [string] The endpoint of the Grafana instance.
    httpEndpoint String
    [string] The HTTP endpoint of the monitoring instance.
    id String
    The provider-assigned unique ID for this managed resource.
    key String

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    Look up Existing Pipeline Resource

    Get an existing Pipeline 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?: PipelineState, opts?: CustomResourceOptions): Pipeline
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            grafana_endpoint: Optional[str] = None,
            http_endpoint: Optional[str] = None,
            key: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            timeouts: Optional[PipelineTimeoutsArgs] = None) -> Pipeline
    func GetPipeline(ctx *Context, name string, id IDInput, state *PipelineState, opts ...ResourceOption) (*Pipeline, error)
    public static Pipeline Get(string name, Input<string> id, PipelineState? state, CustomResourceOptions? opts = null)
    public static Pipeline get(String name, Output<String> id, PipelineState state, CustomResourceOptions options)
    resources:  _:    type: ionoscloud:monitoring:Pipeline    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:
    GrafanaEndpoint string
    [string] The endpoint of the Grafana instance.
    HttpEndpoint string
    [string] The HTTP endpoint of the monitoring instance.
    Key string

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    Location string
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    Name string
    [string] The name of the Monitoring pipeline.
    Timeouts Ionoscloud.PipelineTimeouts
    GrafanaEndpoint string
    [string] The endpoint of the Grafana instance.
    HttpEndpoint string
    [string] The HTTP endpoint of the monitoring instance.
    Key string

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    Location string
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    Name string
    [string] The name of the Monitoring pipeline.
    Timeouts PipelineTimeoutsArgs
    grafanaEndpoint String
    [string] The endpoint of the Grafana instance.
    httpEndpoint String
    [string] The HTTP endpoint of the monitoring instance.
    key String

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    location String
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    name String
    [string] The name of the Monitoring pipeline.
    timeouts PipelineTimeouts
    grafanaEndpoint string
    [string] The endpoint of the Grafana instance.
    httpEndpoint string
    [string] The HTTP endpoint of the monitoring instance.
    key string

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    location string
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    name string
    [string] The name of the Monitoring pipeline.
    timeouts PipelineTimeouts
    grafana_endpoint str
    [string] The endpoint of the Grafana instance.
    http_endpoint str
    [string] The HTTP endpoint of the monitoring instance.
    key str

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    location str
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    name str
    [string] The name of the Monitoring pipeline.
    timeouts PipelineTimeoutsArgs
    grafanaEndpoint String
    [string] The endpoint of the Grafana instance.
    httpEndpoint String
    [string] The HTTP endpoint of the monitoring instance.
    key String

    (Sensitive)[string] The key used to connect to the monitoring pipeline.

    ⚠ NOTE: IONOS_API_URL_MONITORING can be used to set a custom API URL for the resource. location field needs to be empty, otherwise it will override the custom API URL.

    location String
    [string] The location of the Monitoring pipeline. Default is de/fra. It can be one of de/fra, de/fra/2, de/txl, es/vit, gb/bhx, gb/lhr,fr/par, us/mci. If this is not set and if no value is provided for the IONOS_API_URL_MONITORING env var, the default location will be: de/fra.
    name String
    [string] The name of the Monitoring pipeline.
    timeouts Property Map

    Supporting Types

    PipelineTimeouts, PipelineTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    In order to import a Monitoring pipeline, you can define an empty Monitoring pipeline resource in the plan:

    import * as pulumi from "@pulumi/pulumi";
    import * as ionoscloud from "@ionos-cloud/sdk-pulumi";
    
    const example = new ionoscloud.monitoring.Pipeline("example", {});
    
    import pulumi
    import pulumi_ionoscloud as ionoscloud
    
    example = ionoscloud.monitoring.Pipeline("example")
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ionoscloud = Ionoscloud.Pulumi.Ionoscloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Ionoscloud.Monitoring.Pipeline("example");
    
    });
    
    package main
    
    import (
    	"github.com/ionos-cloud/pulumi-ionoscloud/sdk/go/ionoscloud/monitoring"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := monitoring.NewPipeline(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.ionoscloud.pulumi.ionoscloud.monitoring.Pipeline;
    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 example = new Pipeline("example");
    
        }
    }
    
    resources:
      example:
        type: ionoscloud:monitoring:Pipeline
    

    The resource can be imported using the location and pipelineId, for example:

    $ pulumi import ionoscloud:monitoring/pipeline:Pipeline example location:pipeline_id
    

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

    Package Details

    Repository
    ionoscloud ionos-cloud/pulumi-ionoscloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ionoscloud Terraform Provider.
    ionoscloud logo
    Viewing docs for IonosCloud v0.3.0
    published on Wednesday, Apr 15, 2026 by ionos-cloud
      Try Pulumi Cloud free. Your team will thank you.