signalfx.OrgToken
Explore with Pulumi AI
Manage Splunk Observability Cloud org tokens.
NOTE When managing Org tokens, use a session token of an administrator to authenticate the Splunk Observability Cloud provider. See Operations that require a session token for an administrator.
Example
import * as pulumi from "@pulumi/pulumi";
import * as signalfx from "@pulumi/signalfx";
const myteamkey0 = new signalfx.OrgToken("myteamkey0", {
    name: "TeamIDKey",
    description: "My team's rad key",
    notifications: ["Email,foo-alerts@bar.com"],
    hostOrUsageLimits: {
        hostLimit: 100,
        hostNotificationThreshold: 90,
        containerLimit: 200,
        containerNotificationThreshold: 180,
        customMetricsLimit: 1000,
        customMetricsNotificationThreshold: 900,
        highResMetricsLimit: 1000,
        highResMetricsNotificationThreshold: 900,
    },
});
import pulumi
import pulumi_signalfx as signalfx
myteamkey0 = signalfx.OrgToken("myteamkey0",
    name="TeamIDKey",
    description="My team's rad key",
    notifications=["Email,foo-alerts@bar.com"],
    host_or_usage_limits={
        "host_limit": 100,
        "host_notification_threshold": 90,
        "container_limit": 200,
        "container_notification_threshold": 180,
        "custom_metrics_limit": 1000,
        "custom_metrics_notification_threshold": 900,
        "high_res_metrics_limit": 1000,
        "high_res_metrics_notification_threshold": 900,
    })
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.NewOrgToken(ctx, "myteamkey0", &signalfx.OrgTokenArgs{
			Name:        pulumi.String("TeamIDKey"),
			Description: pulumi.String("My team's rad key"),
			Notifications: pulumi.StringArray{
				pulumi.String("Email,foo-alerts@bar.com"),
			},
			HostOrUsageLimits: &signalfx.OrgTokenHostOrUsageLimitsArgs{
				HostLimit:                           pulumi.Int(100),
				HostNotificationThreshold:           pulumi.Int(90),
				ContainerLimit:                      pulumi.Int(200),
				ContainerNotificationThreshold:      pulumi.Int(180),
				CustomMetricsLimit:                  pulumi.Int(1000),
				CustomMetricsNotificationThreshold:  pulumi.Int(900),
				HighResMetricsLimit:                 pulumi.Int(1000),
				HighResMetricsNotificationThreshold: pulumi.Int(900),
			},
		})
		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 myteamkey0 = new SignalFx.OrgToken("myteamkey0", new()
    {
        Name = "TeamIDKey",
        Description = "My team's rad key",
        Notifications = new[]
        {
            "Email,foo-alerts@bar.com",
        },
        HostOrUsageLimits = new SignalFx.Inputs.OrgTokenHostOrUsageLimitsArgs
        {
            HostLimit = 100,
            HostNotificationThreshold = 90,
            ContainerLimit = 200,
            ContainerNotificationThreshold = 180,
            CustomMetricsLimit = 1000,
            CustomMetricsNotificationThreshold = 900,
            HighResMetricsLimit = 1000,
            HighResMetricsNotificationThreshold = 900,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.signalfx.OrgToken;
import com.pulumi.signalfx.OrgTokenArgs;
import com.pulumi.signalfx.inputs.OrgTokenHostOrUsageLimitsArgs;
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 myteamkey0 = new OrgToken("myteamkey0", OrgTokenArgs.builder()
            .name("TeamIDKey")
            .description("My team's rad key")
            .notifications("Email,foo-alerts@bar.com")
            .hostOrUsageLimits(OrgTokenHostOrUsageLimitsArgs.builder()
                .hostLimit(100)
                .hostNotificationThreshold(90)
                .containerLimit(200)
                .containerNotificationThreshold(180)
                .customMetricsLimit(1000)
                .customMetricsNotificationThreshold(900)
                .highResMetricsLimit(1000)
                .highResMetricsNotificationThreshold(900)
                .build())
            .build());
    }
}
resources:
  myteamkey0:
    type: signalfx:OrgToken
    properties:
      name: TeamIDKey
      description: My team's rad key
      notifications:
        - Email,foo-alerts@bar.com
      hostOrUsageLimits:
        hostLimit: 100
        hostNotificationThreshold: 90
        containerLimit: 200
        containerNotificationThreshold: 180
        customMetricsLimit: 1000
        customMetricsNotificationThreshold: 900
        highResMetricsLimit: 1000
        highResMetricsNotificationThreshold: 900
Create OrgToken Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OrgToken(name: string, args?: OrgTokenArgs, opts?: CustomResourceOptions);@overload
def OrgToken(resource_name: str,
             args: Optional[OrgTokenArgs] = None,
             opts: Optional[ResourceOptions] = None)
@overload
def OrgToken(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             auth_scopes: Optional[Sequence[str]] = None,
             description: Optional[str] = None,
             disabled: Optional[bool] = None,
             dpm_limits: Optional[OrgTokenDpmLimitsArgs] = None,
             host_or_usage_limits: Optional[OrgTokenHostOrUsageLimitsArgs] = None,
             name: Optional[str] = None,
             notifications: Optional[Sequence[str]] = None)func NewOrgToken(ctx *Context, name string, args *OrgTokenArgs, opts ...ResourceOption) (*OrgToken, error)public OrgToken(string name, OrgTokenArgs? args = null, CustomResourceOptions? opts = null)
public OrgToken(String name, OrgTokenArgs args)
public OrgToken(String name, OrgTokenArgs args, CustomResourceOptions options)
type: signalfx:OrgToken
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 OrgTokenArgs
- 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 OrgTokenArgs
- 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 OrgTokenArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrgTokenArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrgTokenArgs
- 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 orgTokenResource = new SignalFx.OrgToken("orgTokenResource", new()
{
    AuthScopes = new[]
    {
        "string",
    },
    Description = "string",
    Disabled = false,
    DpmLimits = new SignalFx.Inputs.OrgTokenDpmLimitsArgs
    {
        DpmLimit = 0,
        DpmNotificationThreshold = 0,
    },
    HostOrUsageLimits = new SignalFx.Inputs.OrgTokenHostOrUsageLimitsArgs
    {
        ContainerLimit = 0,
        ContainerNotificationThreshold = 0,
        CustomMetricsLimit = 0,
        CustomMetricsNotificationThreshold = 0,
        HighResMetricsLimit = 0,
        HighResMetricsNotificationThreshold = 0,
        HostLimit = 0,
        HostNotificationThreshold = 0,
    },
    Name = "string",
    Notifications = new[]
    {
        "string",
    },
});
example, err := signalfx.NewOrgToken(ctx, "orgTokenResource", &signalfx.OrgTokenArgs{
	AuthScopes: pulumi.StringArray{
		pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	Disabled:    pulumi.Bool(false),
	DpmLimits: &signalfx.OrgTokenDpmLimitsArgs{
		DpmLimit:                 pulumi.Int(0),
		DpmNotificationThreshold: pulumi.Int(0),
	},
	HostOrUsageLimits: &signalfx.OrgTokenHostOrUsageLimitsArgs{
		ContainerLimit:                      pulumi.Int(0),
		ContainerNotificationThreshold:      pulumi.Int(0),
		CustomMetricsLimit:                  pulumi.Int(0),
		CustomMetricsNotificationThreshold:  pulumi.Int(0),
		HighResMetricsLimit:                 pulumi.Int(0),
		HighResMetricsNotificationThreshold: pulumi.Int(0),
		HostLimit:                           pulumi.Int(0),
		HostNotificationThreshold:           pulumi.Int(0),
	},
	Name: pulumi.String("string"),
	Notifications: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var orgTokenResource = new OrgToken("orgTokenResource", OrgTokenArgs.builder()
    .authScopes("string")
    .description("string")
    .disabled(false)
    .dpmLimits(OrgTokenDpmLimitsArgs.builder()
        .dpmLimit(0)
        .dpmNotificationThreshold(0)
        .build())
    .hostOrUsageLimits(OrgTokenHostOrUsageLimitsArgs.builder()
        .containerLimit(0)
        .containerNotificationThreshold(0)
        .customMetricsLimit(0)
        .customMetricsNotificationThreshold(0)
        .highResMetricsLimit(0)
        .highResMetricsNotificationThreshold(0)
        .hostLimit(0)
        .hostNotificationThreshold(0)
        .build())
    .name("string")
    .notifications("string")
    .build());
org_token_resource = signalfx.OrgToken("orgTokenResource",
    auth_scopes=["string"],
    description="string",
    disabled=False,
    dpm_limits={
        "dpm_limit": 0,
        "dpm_notification_threshold": 0,
    },
    host_or_usage_limits={
        "container_limit": 0,
        "container_notification_threshold": 0,
        "custom_metrics_limit": 0,
        "custom_metrics_notification_threshold": 0,
        "high_res_metrics_limit": 0,
        "high_res_metrics_notification_threshold": 0,
        "host_limit": 0,
        "host_notification_threshold": 0,
    },
    name="string",
    notifications=["string"])
const orgTokenResource = new signalfx.OrgToken("orgTokenResource", {
    authScopes: ["string"],
    description: "string",
    disabled: false,
    dpmLimits: {
        dpmLimit: 0,
        dpmNotificationThreshold: 0,
    },
    hostOrUsageLimits: {
        containerLimit: 0,
        containerNotificationThreshold: 0,
        customMetricsLimit: 0,
        customMetricsNotificationThreshold: 0,
        highResMetricsLimit: 0,
        highResMetricsNotificationThreshold: 0,
        hostLimit: 0,
        hostNotificationThreshold: 0,
    },
    name: "string",
    notifications: ["string"],
});
type: signalfx:OrgToken
properties:
    authScopes:
        - string
    description: string
    disabled: false
    dpmLimits:
        dpmLimit: 0
        dpmNotificationThreshold: 0
    hostOrUsageLimits:
        containerLimit: 0
        containerNotificationThreshold: 0
        customMetricsLimit: 0
        customMetricsNotificationThreshold: 0
        highResMetricsLimit: 0
        highResMetricsNotificationThreshold: 0
        hostLimit: 0
        hostNotificationThreshold: 0
    name: string
    notifications:
        - string
OrgToken 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 OrgToken resource accepts the following input properties:
- AuthScopes List<string>
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- Description string
- Description of the token.
- Disabled bool
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- DpmLimits Pulumi.Signal Fx. Inputs. Org Token Dpm Limits 
- Specify DPM-based limits for this token.
- HostOr Pulumi.Usage Limits Signal Fx. Inputs. Org Token Host Or Usage Limits 
- Specify Usage-based limits for this token.
- Name string
- Name of the token.
- Notifications List<string>
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- AuthScopes []string
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- Description string
- Description of the token.
- Disabled bool
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- DpmLimits OrgToken Dpm Limits Args 
- Specify DPM-based limits for this token.
- HostOr OrgUsage Limits Token Host Or Usage Limits Args 
- Specify Usage-based limits for this token.
- Name string
- Name of the token.
- Notifications []string
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- authScopes List<String>
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- description String
- Description of the token.
- disabled Boolean
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- dpmLimits OrgToken Dpm Limits 
- Specify DPM-based limits for this token.
- hostOr OrgUsage Limits Token Host Or Usage Limits 
- Specify Usage-based limits for this token.
- name String
- Name of the token.
- notifications List<String>
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- authScopes string[]
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- description string
- Description of the token.
- disabled boolean
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- dpmLimits OrgToken Dpm Limits 
- Specify DPM-based limits for this token.
- hostOr OrgUsage Limits Token Host Or Usage Limits 
- Specify Usage-based limits for this token.
- name string
- Name of the token.
- notifications string[]
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- auth_scopes Sequence[str]
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- description str
- Description of the token.
- disabled bool
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- dpm_limits OrgToken Dpm Limits Args 
- Specify DPM-based limits for this token.
- host_or_ Orgusage_ limits Token Host Or Usage Limits Args 
- Specify Usage-based limits for this token.
- name str
- Name of the token.
- notifications Sequence[str]
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- authScopes List<String>
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- description String
- Description of the token.
- disabled Boolean
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- dpmLimits Property Map
- Specify DPM-based limits for this token.
- hostOr Property MapUsage Limits 
- Specify Usage-based limits for this token.
- name String
- Name of the token.
- notifications List<String>
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
Outputs
All input properties are implicitly available as output properties. Additionally, the OrgToken resource produces the following output properties:
Look up Existing OrgToken Resource
Get an existing OrgToken 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?: OrgTokenState, opts?: CustomResourceOptions): OrgToken@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auth_scopes: Optional[Sequence[str]] = None,
        description: Optional[str] = None,
        disabled: Optional[bool] = None,
        dpm_limits: Optional[OrgTokenDpmLimitsArgs] = None,
        host_or_usage_limits: Optional[OrgTokenHostOrUsageLimitsArgs] = None,
        name: Optional[str] = None,
        notifications: Optional[Sequence[str]] = None,
        secret: Optional[str] = None) -> OrgTokenfunc GetOrgToken(ctx *Context, name string, id IDInput, state *OrgTokenState, opts ...ResourceOption) (*OrgToken, error)public static OrgToken Get(string name, Input<string> id, OrgTokenState? state, CustomResourceOptions? opts = null)public static OrgToken get(String name, Output<String> id, OrgTokenState state, CustomResourceOptions options)resources:  _:    type: signalfx:OrgToken    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.
- AuthScopes List<string>
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- Description string
- Description of the token.
- Disabled bool
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- DpmLimits Pulumi.Signal Fx. Inputs. Org Token Dpm Limits 
- Specify DPM-based limits for this token.
- HostOr Pulumi.Usage Limits Signal Fx. Inputs. Org Token Host Or Usage Limits 
- Specify Usage-based limits for this token.
- Name string
- Name of the token.
- Notifications List<string>
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- Secret string
- The secret token created by the API. You cannot set this value.
- AuthScopes []string
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- Description string
- Description of the token.
- Disabled bool
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- DpmLimits OrgToken Dpm Limits Args 
- Specify DPM-based limits for this token.
- HostOr OrgUsage Limits Token Host Or Usage Limits Args 
- Specify Usage-based limits for this token.
- Name string
- Name of the token.
- Notifications []string
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- Secret string
- The secret token created by the API. You cannot set this value.
- authScopes List<String>
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- description String
- Description of the token.
- disabled Boolean
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- dpmLimits OrgToken Dpm Limits 
- Specify DPM-based limits for this token.
- hostOr OrgUsage Limits Token Host Or Usage Limits 
- Specify Usage-based limits for this token.
- name String
- Name of the token.
- notifications List<String>
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- secret String
- The secret token created by the API. You cannot set this value.
- authScopes string[]
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- description string
- Description of the token.
- disabled boolean
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- dpmLimits OrgToken Dpm Limits 
- Specify DPM-based limits for this token.
- hostOr OrgUsage Limits Token Host Or Usage Limits 
- Specify Usage-based limits for this token.
- name string
- Name of the token.
- notifications string[]
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- secret string
- The secret token created by the API. You cannot set this value.
- auth_scopes Sequence[str]
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- description str
- Description of the token.
- disabled bool
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- dpm_limits OrgToken Dpm Limits Args 
- Specify DPM-based limits for this token.
- host_or_ Orgusage_ limits Token Host Or Usage Limits Args 
- Specify Usage-based limits for this token.
- name str
- Name of the token.
- notifications Sequence[str]
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- secret str
- The secret token created by the API. You cannot set this value.
- authScopes List<String>
- Authentication scope, ex: INGEST, API, RUM ... (Optional)
- description String
- Description of the token.
- disabled Boolean
- Flag that controls enabling the token. If set to true, the token is disabled, and you can't use it for authentication. Defaults tofalse.
- dpmLimits Property Map
- Specify DPM-based limits for this token.
- hostOr Property MapUsage Limits 
- Specify Usage-based limits for this token.
- name String
- Name of the token.
- notifications List<String>
- Where to send notifications about this token's limits. See the Notification Format laid out in detectors.
- secret String
- The secret token created by the API. You cannot set this value.
Supporting Types
OrgTokenDpmLimits, OrgTokenDpmLimitsArgs        
- DpmLimit int
- The datapoints per minute (dpm) limit for this token. If you exceed this limit, Splunk Observability Cloud sends out an alert.
- DpmNotification intThreshold 
- DPM level at which Splunk Observability Cloud sends the notification for this token. If you don't specify a notification, Splunk Observability Cloud sends the generic notification.
- DpmLimit int
- The datapoints per minute (dpm) limit for this token. If you exceed this limit, Splunk Observability Cloud sends out an alert.
- DpmNotification intThreshold 
- DPM level at which Splunk Observability Cloud sends the notification for this token. If you don't specify a notification, Splunk Observability Cloud sends the generic notification.
- dpmLimit Integer
- The datapoints per minute (dpm) limit for this token. If you exceed this limit, Splunk Observability Cloud sends out an alert.
- dpmNotification IntegerThreshold 
- DPM level at which Splunk Observability Cloud sends the notification for this token. If you don't specify a notification, Splunk Observability Cloud sends the generic notification.
- dpmLimit number
- The datapoints per minute (dpm) limit for this token. If you exceed this limit, Splunk Observability Cloud sends out an alert.
- dpmNotification numberThreshold 
- DPM level at which Splunk Observability Cloud sends the notification for this token. If you don't specify a notification, Splunk Observability Cloud sends the generic notification.
- dpm_limit int
- The datapoints per minute (dpm) limit for this token. If you exceed this limit, Splunk Observability Cloud sends out an alert.
- dpm_notification_ intthreshold 
- DPM level at which Splunk Observability Cloud sends the notification for this token. If you don't specify a notification, Splunk Observability Cloud sends the generic notification.
- dpmLimit Number
- The datapoints per minute (dpm) limit for this token. If you exceed this limit, Splunk Observability Cloud sends out an alert.
- dpmNotification NumberThreshold 
- DPM level at which Splunk Observability Cloud sends the notification for this token. If you don't specify a notification, Splunk Observability Cloud sends the generic notification.
OrgTokenHostOrUsageLimits, OrgTokenHostOrUsageLimitsArgs            
- ContainerLimit int
- Max number of Docker containers that can use this token
- ContainerNotification intThreshold 
- Notification threshold for Docker containers
- CustomMetrics intLimit 
- Max number of custom metrics that can be sent with this token
- CustomMetrics intNotification Threshold 
- Notification threshold for custom metrics
- HighRes intMetrics Limit 
- Max number of hi-res metrics that can be sent with this toke
- HighRes intMetrics Notification Threshold 
- Notification threshold for hi-res metrics
- HostLimit int
- Max number of hosts that can use this token
- HostNotification intThreshold 
- Notification threshold for hosts
- ContainerLimit int
- Max number of Docker containers that can use this token
- ContainerNotification intThreshold 
- Notification threshold for Docker containers
- CustomMetrics intLimit 
- Max number of custom metrics that can be sent with this token
- CustomMetrics intNotification Threshold 
- Notification threshold for custom metrics
- HighRes intMetrics Limit 
- Max number of hi-res metrics that can be sent with this toke
- HighRes intMetrics Notification Threshold 
- Notification threshold for hi-res metrics
- HostLimit int
- Max number of hosts that can use this token
- HostNotification intThreshold 
- Notification threshold for hosts
- containerLimit Integer
- Max number of Docker containers that can use this token
- containerNotification IntegerThreshold 
- Notification threshold for Docker containers
- customMetrics IntegerLimit 
- Max number of custom metrics that can be sent with this token
- customMetrics IntegerNotification Threshold 
- Notification threshold for custom metrics
- highRes IntegerMetrics Limit 
- Max number of hi-res metrics that can be sent with this toke
- highRes IntegerMetrics Notification Threshold 
- Notification threshold for hi-res metrics
- hostLimit Integer
- Max number of hosts that can use this token
- hostNotification IntegerThreshold 
- Notification threshold for hosts
- containerLimit number
- Max number of Docker containers that can use this token
- containerNotification numberThreshold 
- Notification threshold for Docker containers
- customMetrics numberLimit 
- Max number of custom metrics that can be sent with this token
- customMetrics numberNotification Threshold 
- Notification threshold for custom metrics
- highRes numberMetrics Limit 
- Max number of hi-res metrics that can be sent with this toke
- highRes numberMetrics Notification Threshold 
- Notification threshold for hi-res metrics
- hostLimit number
- Max number of hosts that can use this token
- hostNotification numberThreshold 
- Notification threshold for hosts
- container_limit int
- Max number of Docker containers that can use this token
- container_notification_ intthreshold 
- Notification threshold for Docker containers
- custom_metrics_ intlimit 
- Max number of custom metrics that can be sent with this token
- custom_metrics_ intnotification_ threshold 
- Notification threshold for custom metrics
- high_res_ intmetrics_ limit 
- Max number of hi-res metrics that can be sent with this toke
- high_res_ intmetrics_ notification_ threshold 
- Notification threshold for hi-res metrics
- host_limit int
- Max number of hosts that can use this token
- host_notification_ intthreshold 
- Notification threshold for hosts
- containerLimit Number
- Max number of Docker containers that can use this token
- containerNotification NumberThreshold 
- Notification threshold for Docker containers
- customMetrics NumberLimit 
- Max number of custom metrics that can be sent with this token
- customMetrics NumberNotification Threshold 
- Notification threshold for custom metrics
- highRes NumberMetrics Limit 
- Max number of hi-res metrics that can be sent with this toke
- highRes NumberMetrics Notification Threshold 
- Notification threshold for hi-res metrics
- hostLimit Number
- Max number of hosts that can use this token
- hostNotification NumberThreshold 
- Notification threshold for hosts
Package Details
- Repository
- SignalFx pulumi/pulumi-signalfx
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the signalfxTerraform Provider.