Show / Hide Table of Contents

Class BusinessService

A business service allows you to model capabilities that span multiple technical services and that may be owned by several different teams.

Example Usage

using Pulumi;
using Pagerduty = Pulumi.Pagerduty;

class MyStack : Stack
{
public MyStack()
{
    var example = new Pagerduty.BusinessService("example", new Pagerduty.BusinessServiceArgs
    {
        Description = "A very descriptive description of this business service",
        PointOfContact = "PagerDuty Admin",
    });
}

}
Inheritance
System.Object
Pulumi.Resource
Pulumi.CustomResource
BusinessService
Inherited Members
Pulumi.CustomResource.Id
Pulumi.Resource.GetResourceType()
Pulumi.Resource.GetResourceName()
Pulumi.Resource.Urn
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 class BusinessService : CustomResource

Constructors

View Source

BusinessService(String, BusinessServiceArgs, CustomResourceOptions)

Create a BusinessService resource with the given unique name, arguments, and options.

Declaration
public BusinessService(string name, BusinessServiceArgs args = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

BusinessServiceArgs args

The arguments used to populate this resource's properties

Pulumi.CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

Description

Declaration
public Output<string> Description { get; }
Property Value
Type Description
Pulumi.Output<System.String>
View Source

HtmlUrl

Declaration
public Output<string> HtmlUrl { get; }
Property Value
Type Description
Pulumi.Output<System.String>
View Source

Name

The name of the business service.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Pulumi.Output<System.String>
View Source

PointOfContact

The owner of the business service.

Declaration
public Output<string> PointOfContact { get; }
Property Value
Type Description
Pulumi.Output<System.String>
View Source

Self

Declaration
public Output<string> Self { get; }
Property Value
Type Description
Pulumi.Output<System.String>
View Source

Summary

Declaration
public Output<string> Summary { get; }
Property Value
Type Description
Pulumi.Output<System.String>
View Source

Type

Default value is business_service. Can also be set as business_service_reference.

Declaration
public Output<string> Type { get; }
Property Value
Type Description
Pulumi.Output<System.String>

Methods

View Source

Get(String, Input<String>, BusinessServiceState, CustomResourceOptions)

Get an existing BusinessService resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static BusinessService Get(string name, Input<string> id, BusinessServiceState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Pulumi.Input<System.String> id

The unique provider ID of the resource to lookup.

BusinessServiceState state

Any extra arguments used during the lookup.

Pulumi.CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
BusinessService
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.