signalfx.OrgToken
Manage SignalFx org tokens.
Example Usage
using System.Collections.Generic;
using Pulumi;
using SignalFx = Pulumi.SignalFx;
return await Deployment.RunAsync(() =>
{
var myteamkey0 = new SignalFx.OrgToken("myteamkey0", new()
{
Description = "My team's rad key",
HostOrUsageLimits = new SignalFx.Inputs.OrgTokenHostOrUsageLimitsArgs
{
ContainerLimit = 200,
ContainerNotificationThreshold = 180,
CustomMetricsLimit = 1000,
CustomMetricsNotificationThreshold = 900,
HighResMetricsLimit = 1000,
HighResMetricsNotificationThreshold = 900,
HostLimit = 100,
HostNotificationThreshold = 90,
},
Notifications = new[]
{
"Email,foo-alerts@bar.com",
},
});
});
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.NewOrgToken(ctx, "myteamkey0", &signalfx.OrgTokenArgs{
Description: pulumi.String("My team's rad key"),
HostOrUsageLimits: &signalfx.OrgTokenHostOrUsageLimitsArgs{
ContainerLimit: pulumi.Int(200),
ContainerNotificationThreshold: pulumi.Int(180),
CustomMetricsLimit: pulumi.Int(1000),
CustomMetricsNotificationThreshold: pulumi.Int(900),
HighResMetricsLimit: pulumi.Int(1000),
HighResMetricsNotificationThreshold: pulumi.Int(900),
HostLimit: pulumi.Int(100),
HostNotificationThreshold: pulumi.Int(90),
},
Notifications: pulumi.StringArray{
pulumi.String("Email,foo-alerts@bar.com"),
},
})
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.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()
.description("My team's rad key")
.hostOrUsageLimits(OrgTokenHostOrUsageLimitsArgs.builder()
.containerLimit(200)
.containerNotificationThreshold(180)
.customMetricsLimit(1000)
.customMetricsNotificationThreshold(900)
.highResMetricsLimit(1000)
.highResMetricsNotificationThreshold(900)
.hostLimit(100)
.hostNotificationThreshold(90)
.build())
.notifications("Email,foo-alerts@bar.com")
.build());
}
}
import pulumi
import pulumi_signalfx as signalfx
myteamkey0 = signalfx.OrgToken("myteamkey0",
description="My team's rad key",
host_or_usage_limits=signalfx.OrgTokenHostOrUsageLimitsArgs(
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,
host_limit=100,
host_notification_threshold=90,
),
notifications=["Email,foo-alerts@bar.com"])
import * as pulumi from "@pulumi/pulumi";
import * as signalfx from "@pulumi/signalfx";
const myteamkey0 = new signalfx.OrgToken("myteamkey0", {
description: "My team's rad key",
hostOrUsageLimits: {
containerLimit: 200,
containerNotificationThreshold: 180,
customMetricsLimit: 1000,
customMetricsNotificationThreshold: 900,
highResMetricsLimit: 1000,
highResMetricsNotificationThreshold: 900,
hostLimit: 100,
hostNotificationThreshold: 90,
},
notifications: ["Email,foo-alerts@bar.com"],
});
resources:
myteamkey0:
type: signalfx:OrgToken
properties:
description: My team's rad key
hostOrUsageLimits:
containerLimit: 200
containerNotificationThreshold: 180
customMetricsLimit: 1000
customMetricsNotificationThreshold: 900
highResMetricsLimit: 1000
highResMetricsNotificationThreshold: 900
hostLimit: 100
hostNotificationThreshold: 90
notifications:
- Email,foo-alerts@bar.com
Create OrgToken Resource
new OrgToken(name: string, args?: OrgTokenArgs, opts?: CustomResourceOptions);
@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)
@overload
def OrgToken(resource_name: str,
args: Optional[OrgTokenArgs] = None,
opts: Optional[ResourceOptions] = 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.
- 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.
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
The OrgToken resource accepts the following input properties:
- Auth
Scopes 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
.- Dpm
Limits Pulumi.Signal Fx. Inputs. Org Token Dpm Limits Args Specify DPM-based limits for this token.
- Host
Or Pulumi.Usage Limits Signal Fx. Inputs. Org Token Host Or Usage Limits Args Specify Usage-based limits for this token.
- Name string
Name of the token.
- Notifications List<string>
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- Auth
Scopes []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
.- 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 string
Name of the token.
- Notifications []string
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- auth
Scopes 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
.- 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 String
Name of the token.
- notifications List<String>
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- auth
Scopes 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
.- 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 string
Name of the token.
- notifications string[]
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- 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]
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- auth
Scopes 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
.- dpm
Limits Property Map Specify DPM-based limits for this token.
- host
Or Property MapUsage Limits Specify Usage-based limits for this token.
- name String
Name of the token.
- notifications List<String>
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
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) -> OrgToken
func 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)
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.
- Auth
Scopes 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
.- Dpm
Limits Pulumi.Signal Fx. Inputs. Org Token Dpm Limits Args Specify DPM-based limits for this token.
- Host
Or Pulumi.Usage Limits Signal Fx. Inputs. Org Token Host Or Usage Limits Args Specify Usage-based limits for this token.
- Name string
Name of the token.
- Notifications List<string>
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- Secret string
The secret token created by the API. You cannot set this value.
- Auth
Scopes []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
.- 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 string
Name of the token.
- Notifications []string
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- Secret string
The secret token created by the API. You cannot set this value.
- auth
Scopes 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
.- 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 String
Name of the token.
- notifications List<String>
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- secret String
The secret token created by the API. You cannot set this value.
- auth
Scopes 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
.- 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 string
Name of the token.
- notifications string[]
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- 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]
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- secret str
The secret token created by the API. You cannot set this value.
- auth
Scopes 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
.- dpm
Limits Property Map Specify DPM-based limits for this token.
- host
Or Property MapUsage Limits Specify Usage-based limits for this token.
- name String
Name of the token.
- notifications List<String>
List of strings specifying where notifications will be sent when an incident occurs. See https://developers.signalfx.com/v2/docs/detector-model#notifications-models for more info
- secret String
The secret token created by the API. You cannot set this value.
Supporting Types
OrgTokenDpmLimits
- Dpm
Limit int The datapoints per minute (dpm) limit for this token. If you exceed this limit, SignalFx sends out an alert.
- Dpm
Notification intThreshold DPM level at which SignalFx sends the notification for this token. If you don't specify a notification, SignalFx sends the generic notification.
- Dpm
Limit int The datapoints per minute (dpm) limit for this token. If you exceed this limit, SignalFx sends out an alert.
- Dpm
Notification intThreshold DPM level at which SignalFx sends the notification for this token. If you don't specify a notification, SignalFx sends the generic notification.
- dpm
Limit Integer The datapoints per minute (dpm) limit for this token. If you exceed this limit, SignalFx sends out an alert.
- dpm
Notification IntegerThreshold DPM level at which SignalFx sends the notification for this token. If you don't specify a notification, SignalFx sends the generic notification.
- dpm
Limit number The datapoints per minute (dpm) limit for this token. If you exceed this limit, SignalFx sends out an alert.
- dpm
Notification numberThreshold DPM level at which SignalFx sends the notification for this token. If you don't specify a notification, SignalFx sends the generic notification.
- dpm_
limit int The datapoints per minute (dpm) limit for this token. If you exceed this limit, SignalFx sends out an alert.
- dpm_
notification_ intthreshold DPM level at which SignalFx sends the notification for this token. If you don't specify a notification, SignalFx sends the generic notification.
- dpm
Limit Number The datapoints per minute (dpm) limit for this token. If you exceed this limit, SignalFx sends out an alert.
- dpm
Notification NumberThreshold DPM level at which SignalFx sends the notification for this token. If you don't specify a notification, SignalFx sends the generic notification.
OrgTokenHostOrUsageLimits
- 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
- 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
- container
Limit Integer Max number of Docker containers that can use this token
- container
Notification IntegerThreshold Notification threshold for Docker containers
- custom
Metrics IntegerLimit Max number of custom metrics that can be sent with this token
- custom
Metrics IntegerNotification Threshold Notification threshold for custom metrics
- high
Res IntegerMetrics Limit Max number of hi-res metrics that can be sent with this toke
- high
Res IntegerMetrics Notification Threshold Notification threshold for hi-res metrics
- host
Limit Integer Max number of hosts that can use this token
- host
Notification IntegerThreshold Notification threshold for hosts
- container
Limit number Max number of Docker containers that can use this token
- container
Notification numberThreshold Notification threshold for Docker containers
- custom
Metrics numberLimit Max number of custom metrics that can be sent with this token
- custom
Metrics numberNotification Threshold Notification threshold for custom metrics
- high
Res numberMetrics Limit Max number of hi-res metrics that can be sent with this toke
- high
Res numberMetrics Notification Threshold Notification threshold for hi-res metrics
- host
Limit number Max number of hosts that can use this token
- host
Notification 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
- container
Limit Number Max number of Docker containers that can use this token
- container
Notification NumberThreshold Notification threshold for Docker containers
- custom
Metrics NumberLimit Max number of custom metrics that can be sent with this token
- custom
Metrics NumberNotification Threshold Notification threshold for custom metrics
- high
Res NumberMetrics Limit Max number of hi-res metrics that can be sent with this toke
- high
Res NumberMetrics Notification Threshold Notification threshold for hi-res metrics
- host
Limit Number Max number of hosts that can use this token
- host
Notification NumberThreshold Notification threshold for hosts
Package Details
- Repository
- SignalFx pulumi/pulumi-signalfx
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
signalfx
Terraform Provider.