Show / Hide Table of Contents

Class GetVendor

Inheritance
System.Object
GetVendor
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Pagerduty
Assembly: Pulumi.Pagerduty.dll
Syntax
public static class GetVendor

Methods

View Source

InvokeAsync(GetVendorArgs, InvokeOptions)

Use this data source to get information about a specific vendor that you can use for a service integration (e.g Amazon Cloudwatch, Splunk, Datadog).

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Pagerduty = Pulumi.Pagerduty;

class MyStack : Stack
{
public MyStack()
{
    var datadog = Output.Create(Pagerduty.GetVendor.InvokeAsync(new Pagerduty.GetVendorArgs
    {
        Name = "Datadog",
    }));
    var exampleUser = new Pagerduty.User("exampleUser", new Pagerduty.UserArgs
    {
        Email = "125.greenholt.earline@graham.name",
        Teams = 
        {
            pagerduty_team.Example.Id,
        },
    });
    var foo = new Pagerduty.EscalationPolicy("foo", new Pagerduty.EscalationPolicyArgs
    {
        NumLoops = 2,
        Rules = 
        {
            new Pagerduty.Inputs.EscalationPolicyRuleArgs
            {
                EscalationDelayInMinutes = 10,
                Target = 
                {

                    {
                        { "id", exampleUser.Id },
                        { "type", "user" },
                    },
                },
            },
        },
    });
    var exampleService = new Pagerduty.Service("exampleService", new Pagerduty.ServiceArgs
    {
        AcknowledgementTimeout = 600,
        AutoResolveTimeout = 14400,
        EscalationPolicy = pagerduty_escalation_policy.Example.Id,
    });
    var exampleServiceIntegration = new Pagerduty.ServiceIntegration("exampleServiceIntegration", new Pagerduty.ServiceIntegrationArgs
    {
        Service = exampleService.Id,
        Type = "generic_events_api_inbound_integration",
        Vendor = datadog.Apply(datadog => datadog.Id),
    });
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetVendorResult> InvokeAsync(GetVendorArgs args, InvokeOptions options = null)
Parameters
Type Name Description
GetVendorArgs args
Pulumi.InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetVendorResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.