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
Inherited Members
Namespace: Pulumi.Pagerduty
Assembly: Pulumi.Pagerduty.dll
Syntax
public class BusinessService : CustomResource
Constructors
View SourceBusinessService(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 SourceDescription
Declaration
public Output<string> Description { get; }
Property Value
| Type | Description |
|---|---|
| Pulumi.Output<System.String> |
HtmlUrl
Declaration
public Output<string> HtmlUrl { get; }
Property Value
| Type | Description |
|---|---|
| Pulumi.Output<System.String> |
Name
The name of the business service.
Declaration
public Output<string> Name { get; }
Property Value
| Type | Description |
|---|---|
| Pulumi.Output<System.String> |
PointOfContact
The owner of the business service.
Declaration
public Output<string> PointOfContact { get; }
Property Value
| Type | Description |
|---|---|
| Pulumi.Output<System.String> |
Self
Declaration
public Output<string> Self { get; }
Property Value
| Type | Description |
|---|---|
| Pulumi.Output<System.String> |
Summary
Declaration
public Output<string> Summary { get; }
Property Value
| Type | Description |
|---|---|
| Pulumi.Output<System.String> |
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 SourceGet(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 |