1. Packages
  2. Splight
  3. API Docs
  4. SlackGenerator
splight v1.2.13 published on Friday, Feb 14, 2025 by splightplatform

splight.SlackGenerator

Explore with Pulumi AI

splight logo
splight v1.2.13 published on Friday, Feb 14, 2025 by splightplatform

    Example Usage

    Create SlackGenerator Resource

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

    Constructor syntax

    new SlackGenerator(name: string, args?: SlackGeneratorArgs, opts?: CustomResourceOptions);
    @overload
    def SlackGenerator(resource_name: str,
                       args: Optional[SlackGeneratorArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def SlackGenerator(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       description: Optional[str] = None,
                       geometry: Optional[str] = None,
                       name: Optional[str] = None,
                       tags: Optional[Sequence[SlackGeneratorTagArgs]] = None,
                       timezone: Optional[str] = None)
    func NewSlackGenerator(ctx *Context, name string, args *SlackGeneratorArgs, opts ...ResourceOption) (*SlackGenerator, error)
    public SlackGenerator(string name, SlackGeneratorArgs? args = null, CustomResourceOptions? opts = null)
    public SlackGenerator(String name, SlackGeneratorArgs args)
    public SlackGenerator(String name, SlackGeneratorArgs args, CustomResourceOptions options)
    
    type: splight:SlackGenerator
    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 SlackGeneratorArgs
    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 SlackGeneratorArgs
    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 SlackGeneratorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SlackGeneratorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SlackGeneratorArgs
    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 slackGeneratorResource = new Splight.SlackGenerator("slackGeneratorResource", new()
    {
        Description = "string",
        Geometry = "string",
        Name = "string",
        Tags = new[]
        {
            new Splight.Inputs.SlackGeneratorTagArgs
            {
                Id = "string",
                Name = "string",
            },
        },
        Timezone = "string",
    });
    
    example, err := splight.NewSlackGenerator(ctx, "slackGeneratorResource", &splight.SlackGeneratorArgs{
    	Description: pulumi.String("string"),
    	Geometry:    pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Tags: splight.SlackGeneratorTagArray{
    		&splight.SlackGeneratorTagArgs{
    			Id:   pulumi.String("string"),
    			Name: pulumi.String("string"),
    		},
    	},
    	Timezone: pulumi.String("string"),
    })
    
    var slackGeneratorResource = new SlackGenerator("slackGeneratorResource", SlackGeneratorArgs.builder()
        .description("string")
        .geometry("string")
        .name("string")
        .tags(SlackGeneratorTagArgs.builder()
            .id("string")
            .name("string")
            .build())
        .timezone("string")
        .build());
    
    slack_generator_resource = splight.SlackGenerator("slackGeneratorResource",
        description="string",
        geometry="string",
        name="string",
        tags=[{
            "id": "string",
            "name": "string",
        }],
        timezone="string")
    
    const slackGeneratorResource = new splight.SlackGenerator("slackGeneratorResource", {
        description: "string",
        geometry: "string",
        name: "string",
        tags: [{
            id: "string",
            name: "string",
        }],
        timezone: "string",
    });
    
    type: splight:SlackGenerator
    properties:
        description: string
        geometry: string
        name: string
        tags:
            - id: string
              name: string
        timezone: string
    

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

    Description string
    description of the resource
    Geometry string
    geo position and shape of the resource
    Name string
    name of the resource
    Tags List<Splight.Splight.Inputs.SlackGeneratorTag>
    tags of the resource
    Timezone string
    timezone that overrides location-based timezone of the resource
    Description string
    description of the resource
    Geometry string
    geo position and shape of the resource
    Name string
    name of the resource
    Tags []SlackGeneratorTagArgs
    tags of the resource
    Timezone string
    timezone that overrides location-based timezone of the resource
    description String
    description of the resource
    geometry String
    geo position and shape of the resource
    name String
    name of the resource
    tags List<SlackGeneratorTag>
    tags of the resource
    timezone String
    timezone that overrides location-based timezone of the resource
    description string
    description of the resource
    geometry string
    geo position and shape of the resource
    name string
    name of the resource
    tags SlackGeneratorTag[]
    tags of the resource
    timezone string
    timezone that overrides location-based timezone of the resource
    description str
    description of the resource
    geometry str
    geo position and shape of the resource
    name str
    name of the resource
    tags Sequence[SlackGeneratorTagArgs]
    tags of the resource
    timezone str
    timezone that overrides location-based timezone of the resource
    description String
    description of the resource
    geometry String
    geo position and shape of the resource
    name String
    name of the resource
    tags List<Property Map>
    tags of the resource
    timezone String
    timezone that overrides location-based timezone of the resource

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Kinds List<Splight.Splight.Outputs.SlackGeneratorKind>
    kind of the resource
    Id string
    The provider-assigned unique ID for this managed resource.
    Kinds []SlackGeneratorKind
    kind of the resource
    id String
    The provider-assigned unique ID for this managed resource.
    kinds List<SlackGeneratorKind>
    kind of the resource
    id string
    The provider-assigned unique ID for this managed resource.
    kinds SlackGeneratorKind[]
    kind of the resource
    id str
    The provider-assigned unique ID for this managed resource.
    kinds Sequence[SlackGeneratorKind]
    kind of the resource
    id String
    The provider-assigned unique ID for this managed resource.
    kinds List<Property Map>
    kind of the resource

    Look up Existing SlackGenerator Resource

    Get an existing SlackGenerator 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?: SlackGeneratorState, opts?: CustomResourceOptions): SlackGenerator
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            geometry: Optional[str] = None,
            kinds: Optional[Sequence[SlackGeneratorKindArgs]] = None,
            name: Optional[str] = None,
            tags: Optional[Sequence[SlackGeneratorTagArgs]] = None,
            timezone: Optional[str] = None) -> SlackGenerator
    func GetSlackGenerator(ctx *Context, name string, id IDInput, state *SlackGeneratorState, opts ...ResourceOption) (*SlackGenerator, error)
    public static SlackGenerator Get(string name, Input<string> id, SlackGeneratorState? state, CustomResourceOptions? opts = null)
    public static SlackGenerator get(String name, Output<String> id, SlackGeneratorState state, CustomResourceOptions options)
    resources:  _:    type: splight:SlackGenerator    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Description string
    description of the resource
    Geometry string
    geo position and shape of the resource
    Kinds List<Splight.Splight.Inputs.SlackGeneratorKind>
    kind of the resource
    Name string
    name of the resource
    Tags List<Splight.Splight.Inputs.SlackGeneratorTag>
    tags of the resource
    Timezone string
    timezone that overrides location-based timezone of the resource
    Description string
    description of the resource
    Geometry string
    geo position and shape of the resource
    Kinds []SlackGeneratorKindArgs
    kind of the resource
    Name string
    name of the resource
    Tags []SlackGeneratorTagArgs
    tags of the resource
    Timezone string
    timezone that overrides location-based timezone of the resource
    description String
    description of the resource
    geometry String
    geo position and shape of the resource
    kinds List<SlackGeneratorKind>
    kind of the resource
    name String
    name of the resource
    tags List<SlackGeneratorTag>
    tags of the resource
    timezone String
    timezone that overrides location-based timezone of the resource
    description string
    description of the resource
    geometry string
    geo position and shape of the resource
    kinds SlackGeneratorKind[]
    kind of the resource
    name string
    name of the resource
    tags SlackGeneratorTag[]
    tags of the resource
    timezone string
    timezone that overrides location-based timezone of the resource
    description str
    description of the resource
    geometry str
    geo position and shape of the resource
    kinds Sequence[SlackGeneratorKindArgs]
    kind of the resource
    name str
    name of the resource
    tags Sequence[SlackGeneratorTagArgs]
    tags of the resource
    timezone str
    timezone that overrides location-based timezone of the resource
    description String
    description of the resource
    geometry String
    geo position and shape of the resource
    kinds List<Property Map>
    kind of the resource
    name String
    name of the resource
    tags List<Property Map>
    tags of the resource
    timezone String
    timezone that overrides location-based timezone of the resource

    Supporting Types

    SlackGeneratorKind, SlackGeneratorKindArgs

    Id string
    kind id
    Name string
    kind name
    Id string
    kind id
    Name string
    kind name
    id String
    kind id
    name String
    kind name
    id string
    kind id
    name string
    kind name
    id str
    kind id
    name str
    kind name
    id String
    kind id
    name String
    kind name

    SlackGeneratorTag, SlackGeneratorTagArgs

    Id string
    tag id
    Name string
    tag name
    Id string
    tag id
    Name string
    tag name
    id String
    tag id
    name String
    tag name
    id string
    tag id
    name string
    tag name
    id str
    tag id
    name str
    tag name
    id String
    tag id
    name String
    tag name

    Import

    $ pulumi import splight:index/slackGenerator:SlackGenerator [options] splight_slack_generator.<name> <slack_generator_id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    splight splightplatform/pulumi-splight
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the splight Terraform Provider.
    splight logo
    splight v1.2.13 published on Friday, Feb 14, 2025 by splightplatform