signalfx logo
SignalFx v5.10.0, May 13 23

signalfx.DataLink

Explore with Pulumi AI

Manage SignalFx Data Links.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using SignalFx = Pulumi.SignalFx;

return await Deployment.RunAsync(() => 
{
    // A global link to SignalFx dashboard.
    var myDataLink = new SignalFx.DataLink("myDataLink", new()
    {
        PropertyName = "pname",
        PropertyValue = "pvalue",
        TargetSignalfxDashboards = new[]
        {
            new SignalFx.Inputs.DataLinkTargetSignalfxDashboardArgs
            {
                IsDefault = true,
                Name = "sfx_dash",
                DashboardGroupId = signalfx_dashboard_group.Mydashboardgroup0.Id,
                DashboardId = signalfx_dashboard.Mydashboard0.Id,
            },
        },
    });

    // A dashboard-specific link to an external URL
    var myDataLinkDash = new SignalFx.DataLink("myDataLinkDash", new()
    {
        ContextDashboardId = signalfx_dashboard.Mydashboard0.Id,
        PropertyName = "pname2",
        PropertyValue = "pvalue",
        TargetExternalUrls = new[]
        {
            new SignalFx.Inputs.DataLinkTargetExternalUrlArgs
            {
                Name = "ex_url",
                TimeFormat = "ISO8601",
                Url = "https://www.example.com",
                PropertyKeyMapping = 
                {
                    { "foo", "bar" },
                },
            },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-signalfx/sdk/v5/go/signalfx"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := signalfx.NewDataLink(ctx, "myDataLink", &signalfx.DataLinkArgs{
			PropertyName:  pulumi.String("pname"),
			PropertyValue: pulumi.String("pvalue"),
			TargetSignalfxDashboards: signalfx.DataLinkTargetSignalfxDashboardArray{
				&signalfx.DataLinkTargetSignalfxDashboardArgs{
					IsDefault:        pulumi.Bool(true),
					Name:             pulumi.String("sfx_dash"),
					DashboardGroupId: pulumi.Any(signalfx_dashboard_group.Mydashboardgroup0.Id),
					DashboardId:      pulumi.Any(signalfx_dashboard.Mydashboard0.Id),
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = signalfx.NewDataLink(ctx, "myDataLinkDash", &signalfx.DataLinkArgs{
			ContextDashboardId: pulumi.Any(signalfx_dashboard.Mydashboard0.Id),
			PropertyName:       pulumi.String("pname2"),
			PropertyValue:      pulumi.String("pvalue"),
			TargetExternalUrls: signalfx.DataLinkTargetExternalUrlArray{
				&signalfx.DataLinkTargetExternalUrlArgs{
					Name:       pulumi.String("ex_url"),
					TimeFormat: pulumi.String("ISO8601"),
					Url:        pulumi.String("https://www.example.com"),
					PropertyKeyMapping: pulumi.StringMap{
						"foo": pulumi.String("bar"),
					},
				},
			},
		})
		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.pulumi.signalfx.DataLink;
import com.pulumi.signalfx.DataLinkArgs;
import com.pulumi.signalfx.inputs.DataLinkTargetSignalfxDashboardArgs;
import com.pulumi.signalfx.inputs.DataLinkTargetExternalUrlArgs;
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 myDataLink = new DataLink("myDataLink", DataLinkArgs.builder()        
            .propertyName("pname")
            .propertyValue("pvalue")
            .targetSignalfxDashboards(DataLinkTargetSignalfxDashboardArgs.builder()
                .isDefault(true)
                .name("sfx_dash")
                .dashboardGroupId(signalfx_dashboard_group.mydashboardgroup0().id())
                .dashboardId(signalfx_dashboard.mydashboard0().id())
                .build())
            .build());

        var myDataLinkDash = new DataLink("myDataLinkDash", DataLinkArgs.builder()        
            .contextDashboardId(signalfx_dashboard.mydashboard0().id())
            .propertyName("pname2")
            .propertyValue("pvalue")
            .targetExternalUrls(DataLinkTargetExternalUrlArgs.builder()
                .name("ex_url")
                .timeFormat("ISO8601")
                .url("https://www.example.com")
                .propertyKeyMapping(Map.of("foo", "bar"))
                .build())
            .build());

    }
}
import pulumi
import pulumi_signalfx as signalfx

# A global link to SignalFx dashboard.
my_data_link = signalfx.DataLink("myDataLink",
    property_name="pname",
    property_value="pvalue",
    target_signalfx_dashboards=[signalfx.DataLinkTargetSignalfxDashboardArgs(
        is_default=True,
        name="sfx_dash",
        dashboard_group_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        dashboard_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    )])
# A dashboard-specific link to an external URL
my_data_link_dash = signalfx.DataLink("myDataLinkDash",
    context_dashboard_id=signalfx_dashboard["mydashboard0"]["id"],
    property_name="pname2",
    property_value="pvalue",
    target_external_urls=[signalfx.DataLinkTargetExternalUrlArgs(
        name="ex_url",
        time_format="ISO8601",
        url="https://www.example.com",
        property_key_mapping={
            "foo": "bar",
        },
    )])
import * as pulumi from "@pulumi/pulumi";
import * as signalfx from "@pulumi/signalfx";

// A global link to SignalFx dashboard.
const myDataLink = new signalfx.DataLink("myDataLink", {
    propertyName: "pname",
    propertyValue: "pvalue",
    targetSignalfxDashboards: [{
        isDefault: true,
        name: "sfx_dash",
        dashboardGroupId: signalfx_dashboard_group.mydashboardgroup0.id,
        dashboardId: signalfx_dashboard.mydashboard0.id,
    }],
});
// A dashboard-specific link to an external URL
const myDataLinkDash = new signalfx.DataLink("myDataLinkDash", {
    contextDashboardId: signalfx_dashboard.mydashboard0.id,
    propertyName: "pname2",
    propertyValue: "pvalue",
    targetExternalUrls: [{
        name: "ex_url",
        timeFormat: "ISO8601",
        url: "https://www.example.com",
        propertyKeyMapping: {
            foo: "bar",
        },
    }],
});
resources:
  # A global link to SignalFx dashboard.
  myDataLink:
    type: signalfx:DataLink
    properties:
      propertyName: pname
      propertyValue: pvalue
      targetSignalfxDashboards:
        - isDefault: true
          name: sfx_dash
          dashboardGroupId: ${signalfx_dashboard_group.mydashboardgroup0.id}
          dashboardId: ${signalfx_dashboard.mydashboard0.id}
  # A dashboard-specific link to an external URL
  myDataLinkDash:
    type: signalfx:DataLink
    properties:
      contextDashboardId: ${signalfx_dashboard.mydashboard0.id}
      propertyName: pname2
      propertyValue: pvalue
      targetExternalUrls:
        - name: ex_url
          timeFormat: ISO8601
          url: https://www.example.com
          propertyKeyMapping:
            foo: bar

Create DataLink Resource

new DataLink(name: string, args?: DataLinkArgs, opts?: CustomResourceOptions);
@overload
def DataLink(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             context_dashboard_id: Optional[str] = None,
             property_name: Optional[str] = None,
             property_value: Optional[str] = None,
             target_external_urls: Optional[Sequence[DataLinkTargetExternalUrlArgs]] = None,
             target_signalfx_dashboards: Optional[Sequence[DataLinkTargetSignalfxDashboardArgs]] = None,
             target_splunks: Optional[Sequence[DataLinkTargetSplunkArgs]] = None)
@overload
def DataLink(resource_name: str,
             args: Optional[DataLinkArgs] = None,
             opts: Optional[ResourceOptions] = None)
func NewDataLink(ctx *Context, name string, args *DataLinkArgs, opts ...ResourceOption) (*DataLink, error)
public DataLink(string name, DataLinkArgs? args = null, CustomResourceOptions? opts = null)
public DataLink(String name, DataLinkArgs args)
public DataLink(String name, DataLinkArgs args, CustomResourceOptions options)
type: signalfx:DataLink
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args DataLinkArgs
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 DataLinkArgs
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 DataLinkArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args DataLinkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args DataLinkArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

DataLink Resource Properties

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

Inputs

The DataLink resource accepts the following input properties:

ContextDashboardId string

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

PropertyName string

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

PropertyValue string

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

TargetExternalUrls List<Pulumi.SignalFx.Inputs.DataLinkTargetExternalUrlArgs>

Link to an external URL

TargetSignalfxDashboards List<Pulumi.SignalFx.Inputs.DataLinkTargetSignalfxDashboardArgs>

Link to a SignalFx dashboard

TargetSplunks List<Pulumi.SignalFx.Inputs.DataLinkTargetSplunkArgs>

Link to an external URL

ContextDashboardId string

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

PropertyName string

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

PropertyValue string

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

TargetExternalUrls []DataLinkTargetExternalUrlArgs

Link to an external URL

TargetSignalfxDashboards []DataLinkTargetSignalfxDashboardArgs

Link to a SignalFx dashboard

TargetSplunks []DataLinkTargetSplunkArgs

Link to an external URL

contextDashboardId String

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

propertyName String

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

propertyValue String

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

targetExternalUrls List<DataLinkTargetExternalUrlArgs>

Link to an external URL

targetSignalfxDashboards List<DataLinkTargetSignalfxDashboardArgs>

Link to a SignalFx dashboard

targetSplunks List<DataLinkTargetSplunkArgs>

Link to an external URL

contextDashboardId string

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

propertyName string

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

propertyValue string

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

targetExternalUrls DataLinkTargetExternalUrlArgs[]

Link to an external URL

targetSignalfxDashboards DataLinkTargetSignalfxDashboardArgs[]

Link to a SignalFx dashboard

targetSplunks DataLinkTargetSplunkArgs[]

Link to an external URL

context_dashboard_id str

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

property_name str

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

property_value str

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

target_external_urls Sequence[DataLinkTargetExternalUrlArgs]

Link to an external URL

target_signalfx_dashboards Sequence[DataLinkTargetSignalfxDashboardArgs]

Link to a SignalFx dashboard

target_splunks Sequence[DataLinkTargetSplunkArgs]

Link to an external URL

contextDashboardId String

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

propertyName String

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

propertyValue String

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

targetExternalUrls List<Property Map>

Link to an external URL

targetSignalfxDashboards List<Property Map>

Link to a SignalFx dashboard

targetSplunks List<Property Map>

Link to an external URL

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

Id string

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

id string

The provider-assigned unique ID for this managed resource.

id str

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing DataLink Resource

Get an existing DataLink 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?: DataLinkState, opts?: CustomResourceOptions): DataLink
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        context_dashboard_id: Optional[str] = None,
        property_name: Optional[str] = None,
        property_value: Optional[str] = None,
        target_external_urls: Optional[Sequence[DataLinkTargetExternalUrlArgs]] = None,
        target_signalfx_dashboards: Optional[Sequence[DataLinkTargetSignalfxDashboardArgs]] = None,
        target_splunks: Optional[Sequence[DataLinkTargetSplunkArgs]] = None) -> DataLink
func GetDataLink(ctx *Context, name string, id IDInput, state *DataLinkState, opts ...ResourceOption) (*DataLink, error)
public static DataLink Get(string name, Input<string> id, DataLinkState? state, CustomResourceOptions? opts = null)
public static DataLink get(String name, Output<String> id, DataLinkState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
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:
ContextDashboardId string

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

PropertyName string

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

PropertyValue string

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

TargetExternalUrls List<Pulumi.SignalFx.Inputs.DataLinkTargetExternalUrlArgs>

Link to an external URL

TargetSignalfxDashboards List<Pulumi.SignalFx.Inputs.DataLinkTargetSignalfxDashboardArgs>

Link to a SignalFx dashboard

TargetSplunks List<Pulumi.SignalFx.Inputs.DataLinkTargetSplunkArgs>

Link to an external URL

ContextDashboardId string

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

PropertyName string

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

PropertyValue string

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

TargetExternalUrls []DataLinkTargetExternalUrlArgs

Link to an external URL

TargetSignalfxDashboards []DataLinkTargetSignalfxDashboardArgs

Link to a SignalFx dashboard

TargetSplunks []DataLinkTargetSplunkArgs

Link to an external URL

contextDashboardId String

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

propertyName String

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

propertyValue String

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

targetExternalUrls List<DataLinkTargetExternalUrlArgs>

Link to an external URL

targetSignalfxDashboards List<DataLinkTargetSignalfxDashboardArgs>

Link to a SignalFx dashboard

targetSplunks List<DataLinkTargetSplunkArgs>

Link to an external URL

contextDashboardId string

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

propertyName string

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

propertyValue string

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

targetExternalUrls DataLinkTargetExternalUrlArgs[]

Link to an external URL

targetSignalfxDashboards DataLinkTargetSignalfxDashboardArgs[]

Link to a SignalFx dashboard

targetSplunks DataLinkTargetSplunkArgs[]

Link to an external URL

context_dashboard_id str

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

property_name str

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

property_value str

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

target_external_urls Sequence[DataLinkTargetExternalUrlArgs]

Link to an external URL

target_signalfx_dashboards Sequence[DataLinkTargetSignalfxDashboardArgs]

Link to a SignalFx dashboard

target_splunks Sequence[DataLinkTargetSplunkArgs]

Link to an external URL

contextDashboardId String

If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.

propertyName String

Name (key) of the metadata that's the trigger of a data link. If you specify property_value, you must specify property_name.

propertyValue String

Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify property_name.

targetExternalUrls List<Property Map>

Link to an external URL

targetSignalfxDashboards List<Property Map>

Link to a SignalFx dashboard

targetSplunks List<Property Map>

Link to an external URL

Supporting Types

DataLinkTargetExternalUrl

Name string

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

Url string

URL string for a Splunk instance or external system data link target. See the supported template variables.

MinimumTimeWindow string

The minimum time window for a search sent to an external site. Defaults to 6000

PropertyKeyMapping Dictionary<string, string>

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

TimeFormat string

Designates the format of minimum_time_window in the same data link target object. Must be one of "ISO8601", "EpochSeconds" or "Epoch" (which is milliseconds). Defaults to "ISO8601".

Name string

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

Url string

URL string for a Splunk instance or external system data link target. See the supported template variables.

MinimumTimeWindow string

The minimum time window for a search sent to an external site. Defaults to 6000

PropertyKeyMapping map[string]string

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

TimeFormat string

Designates the format of minimum_time_window in the same data link target object. Must be one of "ISO8601", "EpochSeconds" or "Epoch" (which is milliseconds). Defaults to "ISO8601".

name String

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

url String

URL string for a Splunk instance or external system data link target. See the supported template variables.

minimumTimeWindow String

The minimum time window for a search sent to an external site. Defaults to 6000

propertyKeyMapping Map<String,String>

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

timeFormat String

Designates the format of minimum_time_window in the same data link target object. Must be one of "ISO8601", "EpochSeconds" or "Epoch" (which is milliseconds). Defaults to "ISO8601".

name string

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

url string

URL string for a Splunk instance or external system data link target. See the supported template variables.

minimumTimeWindow string

The minimum time window for a search sent to an external site. Defaults to 6000

propertyKeyMapping {[key: string]: string}

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

timeFormat string

Designates the format of minimum_time_window in the same data link target object. Must be one of "ISO8601", "EpochSeconds" or "Epoch" (which is milliseconds). Defaults to "ISO8601".

name str

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

url str

URL string for a Splunk instance or external system data link target. See the supported template variables.

minimum_time_window str

The minimum time window for a search sent to an external site. Defaults to 6000

property_key_mapping Mapping[str, str]

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

time_format str

Designates the format of minimum_time_window in the same data link target object. Must be one of "ISO8601", "EpochSeconds" or "Epoch" (which is milliseconds). Defaults to "ISO8601".

name String

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

url String

URL string for a Splunk instance or external system data link target. See the supported template variables.

minimumTimeWindow String

The minimum time window for a search sent to an external site. Defaults to 6000

propertyKeyMapping Map<String>

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

timeFormat String

Designates the format of minimum_time_window in the same data link target object. Must be one of "ISO8601", "EpochSeconds" or "Epoch" (which is milliseconds). Defaults to "ISO8601".

DataLinkTargetSignalfxDashboard

DashboardGroupId string

SignalFx-assigned ID of the dashboard link target's dashboard group

DashboardId string

SignalFx-assigned ID of the dashboard link target

Name string

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

IsDefault bool

Flag that designates a target as the default for a data link object. true by default

DashboardGroupId string

SignalFx-assigned ID of the dashboard link target's dashboard group

DashboardId string

SignalFx-assigned ID of the dashboard link target

Name string

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

IsDefault bool

Flag that designates a target as the default for a data link object. true by default

dashboardGroupId String

SignalFx-assigned ID of the dashboard link target's dashboard group

dashboardId String

SignalFx-assigned ID of the dashboard link target

name String

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

isDefault Boolean

Flag that designates a target as the default for a data link object. true by default

dashboardGroupId string

SignalFx-assigned ID of the dashboard link target's dashboard group

dashboardId string

SignalFx-assigned ID of the dashboard link target

name string

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

isDefault boolean

Flag that designates a target as the default for a data link object. true by default

dashboard_group_id str

SignalFx-assigned ID of the dashboard link target's dashboard group

dashboard_id str

SignalFx-assigned ID of the dashboard link target

name str

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

is_default bool

Flag that designates a target as the default for a data link object. true by default

dashboardGroupId String

SignalFx-assigned ID of the dashboard link target's dashboard group

dashboardId String

SignalFx-assigned ID of the dashboard link target

name String

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

isDefault Boolean

Flag that designates a target as the default for a data link object. true by default

DataLinkTargetSplunk

Name string

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

PropertyKeyMapping Dictionary<string, string>

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

Name string

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

PropertyKeyMapping map[string]string

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

name String

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

propertyKeyMapping Map<String,String>

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

name string

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

propertyKeyMapping {[key: string]: string}

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

name str

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

property_key_mapping Mapping[str, str]

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

name String

User-assigned target name. Use this value to differentiate between the link targets for a data link object.

propertyKeyMapping Map<String>

Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.

Package Details

Repository
SignalFx pulumi/pulumi-signalfx
License
Apache-2.0
Notes

This Pulumi package is based on the signalfx Terraform Provider.