honeycombio.MarkerSetting
Explore with Pulumi AI
# Resource: honeycombio.MarkerSetting
Creates a marker setting. For more information on marker settings, check out the Marker Settings API.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as honeycombio from "@pulumi/honeycombio";
const config = new pulumi.Config();
const dataset = config.require("dataset");
const type = config.require("type");
const markerSetting = new honeycombio.MarkerSetting("markerSetting", {
type: type,
color: "#DF4661",
dataset: dataset,
});
import pulumi
import pulumi_honeycombio as honeycombio
config = pulumi.Config()
dataset = config.require("dataset")
type = config.require("type")
marker_setting = honeycombio.MarkerSetting("markerSetting",
type=type,
color="#DF4661",
dataset=dataset)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/honeycombio/honeycombio"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
dataset := cfg.Require("dataset")
_type := cfg.Require("type")
_, err := honeycombio.NewMarkerSetting(ctx, "markerSetting", &honeycombio.MarkerSettingArgs{
Type: pulumi.String(_type),
Color: pulumi.String("#DF4661"),
Dataset: pulumi.String(dataset),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Honeycombio = Pulumi.Honeycombio;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var dataset = config.Require("dataset");
var type = config.Require("type");
var markerSetting = new Honeycombio.MarkerSetting("markerSetting", new()
{
Type = type,
Color = "#DF4661",
Dataset = dataset,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.honeycombio.MarkerSetting;
import com.pulumi.honeycombio.MarkerSettingArgs;
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) {
final var config = ctx.config();
final var dataset = config.get("dataset");
final var type = config.get("type");
var markerSetting = new MarkerSetting("markerSetting", MarkerSettingArgs.builder()
.type(type)
.color("#DF4661")
.dataset(dataset)
.build());
}
}
configuration:
dataset:
type: string
type:
type: string
resources:
markerSetting:
type: honeycombio:MarkerSetting
properties:
type: ${type}
color: '#DF4661'
dataset: ${dataset}
Create MarkerSetting Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MarkerSetting(name: string, args: MarkerSettingArgs, opts?: CustomResourceOptions);
@overload
def MarkerSetting(resource_name: str,
args: MarkerSettingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MarkerSetting(resource_name: str,
opts: Optional[ResourceOptions] = None,
color: Optional[str] = None,
dataset: Optional[str] = None,
type: Optional[str] = None,
marker_setting_id: Optional[str] = None)
func NewMarkerSetting(ctx *Context, name string, args MarkerSettingArgs, opts ...ResourceOption) (*MarkerSetting, error)
public MarkerSetting(string name, MarkerSettingArgs args, CustomResourceOptions? opts = null)
public MarkerSetting(String name, MarkerSettingArgs args)
public MarkerSetting(String name, MarkerSettingArgs args, CustomResourceOptions options)
type: honeycombio:MarkerSetting
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 MarkerSettingArgs
- 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 MarkerSettingArgs
- 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 MarkerSettingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MarkerSettingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MarkerSettingArgs
- 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 markerSettingResource = new Honeycombio.MarkerSetting("markerSettingResource", new()
{
Color = "string",
Dataset = "string",
Type = "string",
MarkerSettingId = "string",
});
example, err := honeycombio.NewMarkerSetting(ctx, "markerSettingResource", &honeycombio.MarkerSettingArgs{
Color: pulumi.String("string"),
Dataset: pulumi.String("string"),
Type: pulumi.String("string"),
MarkerSettingId: pulumi.String("string"),
})
var markerSettingResource = new MarkerSetting("markerSettingResource", MarkerSettingArgs.builder()
.color("string")
.dataset("string")
.type("string")
.markerSettingId("string")
.build());
marker_setting_resource = honeycombio.MarkerSetting("markerSettingResource",
color="string",
dataset="string",
type="string",
marker_setting_id="string")
const markerSettingResource = new honeycombio.MarkerSetting("markerSettingResource", {
color: "string",
dataset: "string",
type: "string",
markerSettingId: "string",
});
type: honeycombio:MarkerSetting
properties:
color: string
dataset: string
markerSettingId: string
type: string
MarkerSetting 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 MarkerSetting resource accepts the following input properties:
- Color string
- The color set for the marker as a hex color code (e.g.
#DF4661
) - Dataset string
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - Type string
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- Marker
Setting stringId - ID of the marker setting.
- Color string
- The color set for the marker as a hex color code (e.g.
#DF4661
) - Dataset string
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - Type string
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- Marker
Setting stringId - ID of the marker setting.
- color String
- The color set for the marker as a hex color code (e.g.
#DF4661
) - dataset String
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - type String
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- marker
Setting StringId - ID of the marker setting.
- color string
- The color set for the marker as a hex color code (e.g.
#DF4661
) - dataset string
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - type string
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- marker
Setting stringId - ID of the marker setting.
- color str
- The color set for the marker as a hex color code (e.g.
#DF4661
) - dataset str
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - type str
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- marker_
setting_ strid - ID of the marker setting.
- color String
- The color set for the marker as a hex color code (e.g.
#DF4661
) - dataset String
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - type String
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- marker
Setting StringId - ID of the marker setting.
Outputs
All input properties are implicitly available as output properties. Additionally, the MarkerSetting resource produces the following output properties:
- created_
at str - Timestamp when the marker setting was created.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str - Timestamp when the marker setting was last modified.
Look up Existing MarkerSetting Resource
Get an existing MarkerSetting 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?: MarkerSettingState, opts?: CustomResourceOptions): MarkerSetting
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
color: Optional[str] = None,
created_at: Optional[str] = None,
dataset: Optional[str] = None,
marker_setting_id: Optional[str] = None,
type: Optional[str] = None,
updated_at: Optional[str] = None) -> MarkerSetting
func GetMarkerSetting(ctx *Context, name string, id IDInput, state *MarkerSettingState, opts ...ResourceOption) (*MarkerSetting, error)
public static MarkerSetting Get(string name, Input<string> id, MarkerSettingState? state, CustomResourceOptions? opts = null)
public static MarkerSetting get(String name, Output<String> id, MarkerSettingState state, CustomResourceOptions options)
resources: _: type: honeycombio:MarkerSetting 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.
- Color string
- The color set for the marker as a hex color code (e.g.
#DF4661
) - Created
At string - Timestamp when the marker setting was created.
- Dataset string
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - Marker
Setting stringId - ID of the marker setting.
- Type string
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- Updated
At string - Timestamp when the marker setting was last modified.
- Color string
- The color set for the marker as a hex color code (e.g.
#DF4661
) - Created
At string - Timestamp when the marker setting was created.
- Dataset string
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - Marker
Setting stringId - ID of the marker setting.
- Type string
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- Updated
At string - Timestamp when the marker setting was last modified.
- color String
- The color set for the marker as a hex color code (e.g.
#DF4661
) - created
At String - Timestamp when the marker setting was created.
- dataset String
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - marker
Setting StringId - ID of the marker setting.
- type String
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- updated
At String - Timestamp when the marker setting was last modified.
- color string
- The color set for the marker as a hex color code (e.g.
#DF4661
) - created
At string - Timestamp when the marker setting was created.
- dataset string
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - marker
Setting stringId - ID of the marker setting.
- type string
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- updated
At string - Timestamp when the marker setting was last modified.
- color str
- The color set for the marker as a hex color code (e.g.
#DF4661
) - created_
at str - Timestamp when the marker setting was created.
- dataset str
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - marker_
setting_ strid - ID of the marker setting.
- type str
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- updated_
at str - Timestamp when the marker setting was last modified.
- color String
- The color set for the marker as a hex color code (e.g.
#DF4661
) - created
At String - Timestamp when the marker setting was created.
- dataset String
- The dataset this marker setting is placed on. Use
__all__
for Environment-wide marker settings. - marker
Setting StringId - ID of the marker setting.
- type String
- The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.
- updated
At String - Timestamp when the marker setting was last modified.
Package Details
- Repository
- honeycombio honeycombio/terraform-provider-honeycombio
- License
- Notes
- This Pulumi package is based on the
honeycombio
Terraform Provider.