1. Packages
  2. Signalfx Provider
  3. API Docs
  4. SloChart
SignalFx v7.9.0 published on Wednesday, Mar 26, 2025 by Pulumi

signalfx.SloChart

Explore with Pulumi AI

signalfx logo
SignalFx v7.9.0 published on Wednesday, Mar 26, 2025 by Pulumi

    This chart type displays an overview of your SLO and can give more specific insights into your SLI performance using different filter and customized time ranges.

    Example

    import * as pulumi from "@pulumi/pulumi";
    import * as signalfx from "@pulumi/signalfx";
    
    const myslochart0 = new signalfx.SloChart("myslochart0", {sloId: "GbOHXbSAEAA"});
    
    import pulumi
    import pulumi_signalfx as signalfx
    
    myslochart0 = signalfx.SloChart("myslochart0", slo_id="GbOHXbSAEAA")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-signalfx/sdk/v7/go/signalfx"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := signalfx.NewSloChart(ctx, "myslochart0", &signalfx.SloChartArgs{
    			SloId: pulumi.String("GbOHXbSAEAA"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using SignalFx = Pulumi.SignalFx;
    
    return await Deployment.RunAsync(() => 
    {
        var myslochart0 = new SignalFx.SloChart("myslochart0", new()
        {
            SloId = "GbOHXbSAEAA",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.signalfx.SloChart;
    import com.pulumi.signalfx.SloChartArgs;
    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 myslochart0 = new SloChart("myslochart0", SloChartArgs.builder()
                .sloId("GbOHXbSAEAA")
                .build());
    
        }
    }
    
    resources:
      myslochart0:
        type: signalfx:SloChart
        properties:
          sloId: GbOHXbSAEAA
    

    Create SloChart Resource

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

    Constructor syntax

    new SloChart(name: string, args: SloChartArgs, opts?: CustomResourceOptions);
    @overload
    def SloChart(resource_name: str,
                 args: SloChartArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def SloChart(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 slo_id: Optional[str] = None)
    func NewSloChart(ctx *Context, name string, args SloChartArgs, opts ...ResourceOption) (*SloChart, error)
    public SloChart(string name, SloChartArgs args, CustomResourceOptions? opts = null)
    public SloChart(String name, SloChartArgs args)
    public SloChart(String name, SloChartArgs args, CustomResourceOptions options)
    
    type: signalfx:SloChart
    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 SloChartArgs
    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 SloChartArgs
    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 SloChartArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SloChartArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SloChartArgs
    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 sloChartResource = new SignalFx.SloChart("sloChartResource", new()
    {
        SloId = "string",
    });
    
    example, err := signalfx.NewSloChart(ctx, "sloChartResource", &signalfx.SloChartArgs{
    	SloId: pulumi.String("string"),
    })
    
    var sloChartResource = new SloChart("sloChartResource", SloChartArgs.builder()
        .sloId("string")
        .build());
    
    slo_chart_resource = signalfx.SloChart("sloChartResource", slo_id="string")
    
    const sloChartResource = new signalfx.SloChart("sloChartResource", {sloId: "string"});
    
    type: signalfx:SloChart
    properties:
        sloId: string
    

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

    SloId string
    ID of SLO object.
    SloId string
    ID of SLO object.
    sloId String
    ID of SLO object.
    sloId string
    ID of SLO object.
    slo_id str
    ID of SLO object.
    sloId String
    ID of SLO object.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Url string
    The URL of the chart.
    Id string
    The provider-assigned unique ID for this managed resource.
    Url string
    The URL of the chart.
    id String
    The provider-assigned unique ID for this managed resource.
    url String
    The URL of the chart.
    id string
    The provider-assigned unique ID for this managed resource.
    url string
    The URL of the chart.
    id str
    The provider-assigned unique ID for this managed resource.
    url str
    The URL of the chart.
    id String
    The provider-assigned unique ID for this managed resource.
    url String
    The URL of the chart.

    Look up Existing SloChart Resource

    Get an existing SloChart 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?: SloChartState, opts?: CustomResourceOptions): SloChart
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            slo_id: Optional[str] = None,
            url: Optional[str] = None) -> SloChart
    func GetSloChart(ctx *Context, name string, id IDInput, state *SloChartState, opts ...ResourceOption) (*SloChart, error)
    public static SloChart Get(string name, Input<string> id, SloChartState? state, CustomResourceOptions? opts = null)
    public static SloChart get(String name, Output<String> id, SloChartState state, CustomResourceOptions options)
    resources:  _:    type: signalfx:SloChart    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:
    SloId string
    ID of SLO object.
    Url string
    The URL of the chart.
    SloId string
    ID of SLO object.
    Url string
    The URL of the chart.
    sloId String
    ID of SLO object.
    url String
    The URL of the chart.
    sloId string
    ID of SLO object.
    url string
    The URL of the chart.
    slo_id str
    ID of SLO object.
    url str
    The URL of the chart.
    sloId String
    ID of SLO object.
    url String
    The URL of the chart.

    Package Details

    Repository
    SignalFx pulumi/pulumi-signalfx
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the signalfx Terraform Provider.
    signalfx logo
    SignalFx v7.9.0 published on Wednesday, Mar 26, 2025 by Pulumi