1. Packages
  2. Checkly
  3. API Docs
  4. TriggerCheck
Checkly v1.1.4 published on Thursday, Mar 9, 2023 by checkly

checkly.TriggerCheck

Explore with Pulumi AI

checkly logo
Checkly v1.1.4 published on Thursday, Mar 9, 2023 by checkly

    Example Usage

    using Pulumi;
    using Checkly = Pulumi.Checkly;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var testTriggerCheck = new Checkly.TriggerCheck("testTriggerCheck", new Checkly.TriggerCheckArgs
            {
                CheckId = "c1ff95c5-d7f6-4a90-9ce2-1e605f117592",
            });
            this.TestTriggerCheckUrl = testTriggerCheck.Url;
        }
    
        [Output("testTriggerCheckUrl")]
        public Output<string> TestTriggerCheckUrl { get; set; }
    }
    
    package main
    
    import (
    	"github.com/checkly/pulumi-checkly/sdk/go/checkly"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		testTriggerCheck, err := checkly.NewTriggerCheck(ctx, "testTriggerCheck", &checkly.TriggerCheckArgs{
    			CheckId: pulumi.String("c1ff95c5-d7f6-4a90-9ce2-1e605f117592"),
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("testTriggerCheckUrl", testTriggerCheck.Url)
    		return nil
    	})
    }
    

    Coming soon!

    import pulumi
    import pulumi_checkly as checkly
    
    test_trigger_check = checkly.TriggerCheck("testTriggerCheck", check_id="c1ff95c5-d7f6-4a90-9ce2-1e605f117592")
    pulumi.export("testTriggerCheckUrl", test_trigger_check.url)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as pulumi from "@checkly/pulumi";
    
    const testTriggerCheck = new checkly.TriggerCheck("testTriggerCheck", {checkId: "c1ff95c5-d7f6-4a90-9ce2-1e605f117592"});
    export const testTriggerCheckUrl = testTriggerCheck.url;
    

    Coming soon!

    Create TriggerCheck Resource

    new TriggerCheck(name: string, args: TriggerCheckArgs, opts?: CustomResourceOptions);
    @overload
    def TriggerCheck(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     check_id: Optional[str] = None,
                     token: Optional[str] = None,
                     url: Optional[str] = None)
    @overload
    def TriggerCheck(resource_name: str,
                     args: TriggerCheckArgs,
                     opts: Optional[ResourceOptions] = None)
    func NewTriggerCheck(ctx *Context, name string, args TriggerCheckArgs, opts ...ResourceOption) (*TriggerCheck, error)
    public TriggerCheck(string name, TriggerCheckArgs args, CustomResourceOptions? opts = null)
    public TriggerCheck(String name, TriggerCheckArgs args)
    public TriggerCheck(String name, TriggerCheckArgs args, CustomResourceOptions options)
    
    type: checkly:TriggerCheck
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args TriggerCheckArgs
    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 TriggerCheckArgs
    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 TriggerCheckArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TriggerCheckArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TriggerCheckArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    CheckId string
    The id of the check that you want to attach the trigger to.
    Token string
    The token value created to trigger the check
    Url string
    The request URL to trigger the check run.
    CheckId string
    The id of the check that you want to attach the trigger to.
    Token string
    The token value created to trigger the check
    Url string
    The request URL to trigger the check run.
    checkId String
    The id of the check that you want to attach the trigger to.
    token String
    The token value created to trigger the check
    url String
    The request URL to trigger the check run.
    checkId string
    The id of the check that you want to attach the trigger to.
    token string
    The token value created to trigger the check
    url string
    The request URL to trigger the check run.
    check_id str
    The id of the check that you want to attach the trigger to.
    token str
    The token value created to trigger the check
    url str
    The request URL to trigger the check run.
    checkId String
    The id of the check that you want to attach the trigger to.
    token String
    The token value created to trigger the check
    url String
    The request URL to trigger the check run.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TriggerCheck 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 Existing TriggerCheck Resource

    Get an existing TriggerCheck 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?: TriggerCheckState, opts?: CustomResourceOptions): TriggerCheck
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            check_id: Optional[str] = None,
            token: Optional[str] = None,
            url: Optional[str] = None) -> TriggerCheck
    func GetTriggerCheck(ctx *Context, name string, id IDInput, state *TriggerCheckState, opts ...ResourceOption) (*TriggerCheck, error)
    public static TriggerCheck Get(string name, Input<string> id, TriggerCheckState? state, CustomResourceOptions? opts = null)
    public static TriggerCheck get(String name, Output<String> id, TriggerCheckState 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.
    The following state arguments are supported:
    CheckId string
    The id of the check that you want to attach the trigger to.
    Token string
    The token value created to trigger the check
    Url string
    The request URL to trigger the check run.
    CheckId string
    The id of the check that you want to attach the trigger to.
    Token string
    The token value created to trigger the check
    Url string
    The request URL to trigger the check run.
    checkId String
    The id of the check that you want to attach the trigger to.
    token String
    The token value created to trigger the check
    url String
    The request URL to trigger the check run.
    checkId string
    The id of the check that you want to attach the trigger to.
    token string
    The token value created to trigger the check
    url string
    The request URL to trigger the check run.
    check_id str
    The id of the check that you want to attach the trigger to.
    token str
    The token value created to trigger the check
    url str
    The request URL to trigger the check run.
    checkId String
    The id of the check that you want to attach the trigger to.
    token String
    The token value created to trigger the check
    url String
    The request URL to trigger the check run.

    Package Details

    Repository
    checkly checkly/pulumi-checkly
    License
    MIT
    Notes
    This Pulumi package is based on the checkly Terraform Provider.
    checkly logo
    Checkly v1.1.4 published on Thursday, Mar 9, 2023 by checkly