Rootly
Functionality
Manages functionalities (e.g Logging In, Search, Adds items to Cart).
Example Usage
using Pulumi;
using Rootly = Pulumi.Rootly;
class MyStack : Stack
{
public MyStack()
{
var foo = new Rootly.Functionality("foo", new Rootly.FunctionalityArgs
{
});
}
}
package main
import (
"github.com/pulumi/pulumi-rootly/sdk/go/rootly"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rootly.NewFunctionality(ctx, "foo", nil)
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_rootly as rootly
foo = rootly.Functionality("foo")
import * as pulumi from "@pulumi/pulumi";
import * as rootly from "@pulumi/rootly";
const foo = new rootly.Functionality("foo", {});
Coming soon!
Create a Functionality Resource
new Functionality(name: string, args?: FunctionalityArgs, opts?: CustomResourceOptions);
@overload
def Functionality(resource_name: str,
opts: Optional[ResourceOptions] = None,
color: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
slug: Optional[str] = None)
@overload
def Functionality(resource_name: str,
args: Optional[FunctionalityArgs] = None,
opts: Optional[ResourceOptions] = None)
func NewFunctionality(ctx *Context, name string, args *FunctionalityArgs, opts ...ResourceOption) (*Functionality, error)
public Functionality(string name, FunctionalityArgs? args = null, CustomResourceOptions? opts = null)
public Functionality(String name, FunctionalityArgs args)
public Functionality(String name, FunctionalityArgs args, CustomResourceOptions options)
type: rootly:Functionality
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FunctionalityArgs
- 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 FunctionalityArgs
- 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 FunctionalityArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FunctionalityArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FunctionalityArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Functionality 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 Functionality resource accepts the following input properties:
- Color string
The color of the severity
- Description string
The description of the functionality
- Name string
The name of the functionality
- Slug string
The slug of the severity
- Color string
The color of the severity
- Description string
The description of the functionality
- Name string
The name of the functionality
- Slug string
The slug of the severity
- color String
The color of the severity
- description String
The description of the functionality
- name String
The name of the functionality
- slug String
The slug of the severity
- color string
The color of the severity
- description string
The description of the functionality
- name string
The name of the functionality
- slug string
The slug of the severity
- color str
The color of the severity
- description str
The description of the functionality
- name str
The name of the functionality
- slug str
The slug of the severity
- color String
The color of the severity
- description String
The description of the functionality
- name String
The name of the functionality
- slug String
The slug of the severity
Outputs
All input properties are implicitly available as output properties. Additionally, the Functionality 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 an Existing Functionality Resource
Get an existing Functionality 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?: FunctionalityState, opts?: CustomResourceOptions): Functionality
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
color: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
slug: Optional[str] = None) -> Functionality
func GetFunctionality(ctx *Context, name string, id IDInput, state *FunctionalityState, opts ...ResourceOption) (*Functionality, error)
public static Functionality Get(string name, Input<string> id, FunctionalityState? state, CustomResourceOptions? opts = null)
public static Functionality get(String name, Output<String> id, FunctionalityState 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.
- Color string
The color of the severity
- Description string
The description of the functionality
- Name string
The name of the functionality
- Slug string
The slug of the severity
- Color string
The color of the severity
- Description string
The description of the functionality
- Name string
The name of the functionality
- Slug string
The slug of the severity
- color String
The color of the severity
- description String
The description of the functionality
- name String
The name of the functionality
- slug String
The slug of the severity
- color string
The color of the severity
- description string
The description of the functionality
- name string
The name of the functionality
- slug string
The slug of the severity
- color str
The color of the severity
- description str
The description of the functionality
- name str
The name of the functionality
- slug str
The slug of the severity
- color String
The color of the severity
- description String
The description of the functionality
- name String
The name of the functionality
- slug String
The slug of the severity
Import
$ pulumi import rootly:index/functionality:Functionality foo 11111111-2222-3333-4444-555555555555
Package Details
- Repository
- https://github.com/rootlyhq/pulumi-rootly
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
rootly
Terraform Provider.