pagerduty.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 System.Collections.Generic;
using Pulumi;
using Pagerduty = Pulumi.Pagerduty;
return await Deployment.RunAsync(() =>
{
var example = new Pagerduty.BusinessService("example", new()
{
Description = "A very descriptive description of this business service",
PointOfContact = "PagerDuty Admin",
Team = "P37RSRS",
});
});
package main
import (
"github.com/pulumi/pulumi-pagerduty/sdk/v3/go/pagerduty"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := pagerduty.NewBusinessService(ctx, "example", &pagerduty.BusinessServiceArgs{
Description: pulumi.String("A very descriptive description of this business service"),
PointOfContact: pulumi.String("PagerDuty Admin"),
Team: pulumi.String("P37RSRS"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.pagerduty.BusinessService;
import com.pulumi.pagerduty.BusinessServiceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new BusinessService("example", BusinessServiceArgs.builder()
.description("A very descriptive description of this business service")
.pointOfContact("PagerDuty Admin")
.team("P37RSRS")
.build());
}
}
import pulumi
import pulumi_pagerduty as pagerduty
example = pagerduty.BusinessService("example",
description="A very descriptive description of this business service",
point_of_contact="PagerDuty Admin",
team="P37RSRS")
import * as pulumi from "@pulumi/pulumi";
import * as pagerduty from "@pulumi/pagerduty";
const example = new pagerduty.BusinessService("example", {
description: "A very descriptive description of this business service",
pointOfContact: "PagerDuty Admin",
team: "P37RSRS",
});
resources:
example:
type: pagerduty:BusinessService
properties:
description: A very descriptive description of this business service
pointOfContact: PagerDuty Admin
team: P37RSRS
Create BusinessService Resource
new BusinessService(name: string, args?: BusinessServiceArgs, opts?: CustomResourceOptions);
@overload
def BusinessService(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
name: Optional[str] = None,
point_of_contact: Optional[str] = None,
team: Optional[str] = None,
type: Optional[str] = None)
@overload
def BusinessService(resource_name: str,
args: Optional[BusinessServiceArgs] = None,
opts: Optional[ResourceOptions] = None)
func NewBusinessService(ctx *Context, name string, args *BusinessServiceArgs, opts ...ResourceOption) (*BusinessService, error)
public BusinessService(string name, BusinessServiceArgs? args = null, CustomResourceOptions? opts = null)
public BusinessService(String name, BusinessServiceArgs args)
public BusinessService(String name, BusinessServiceArgs args, CustomResourceOptions options)
type: pagerduty:BusinessService
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BusinessServiceArgs
- 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 BusinessServiceArgs
- 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 BusinessServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BusinessServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BusinessServiceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
BusinessService 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 BusinessService resource accepts the following input properties:
- Description string
- Name string
The name of the business service.
- Point
Of stringContact The owner of the business service.
- Team string
ID of the team that owns the business service.
- Type string
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
- Description string
- Name string
The name of the business service.
- Point
Of stringContact The owner of the business service.
- Team string
ID of the team that owns the business service.
- Type string
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
- description String
- name String
The name of the business service.
- point
Of StringContact The owner of the business service.
- team String
ID of the team that owns the business service.
- type String
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
- description string
- name string
The name of the business service.
- point
Of stringContact The owner of the business service.
- team string
ID of the team that owns the business service.
- type string
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
- description str
- name str
The name of the business service.
- point_
of_ strcontact The owner of the business service.
- team str
ID of the team that owns the business service.
- type str
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
- description String
- name String
The name of the business service.
- point
Of StringContact The owner of the business service.
- team String
ID of the team that owns the business service.
- type String
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
Outputs
All input properties are implicitly available as output properties. Additionally, the BusinessService resource produces the following output properties:
Look up Existing BusinessService Resource
Get an existing BusinessService 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?: BusinessServiceState, opts?: CustomResourceOptions): BusinessService
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
html_url: Optional[str] = None,
name: Optional[str] = None,
point_of_contact: Optional[str] = None,
self: Optional[str] = None,
summary: Optional[str] = None,
team: Optional[str] = None,
type: Optional[str] = None) -> BusinessService
func GetBusinessService(ctx *Context, name string, id IDInput, state *BusinessServiceState, opts ...ResourceOption) (*BusinessService, error)
public static BusinessService Get(string name, Input<string> id, BusinessServiceState? state, CustomResourceOptions? opts = null)
public static BusinessService get(String name, Output<String> id, BusinessServiceState 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.
- Description string
- Html
Url string - Name string
The name of the business service.
- Point
Of stringContact The owner of the business service.
- Self string
- Summary string
- Team string
ID of the team that owns the business service.
- Type string
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
- Description string
- Html
Url string - Name string
The name of the business service.
- Point
Of stringContact The owner of the business service.
- Self string
- Summary string
- Team string
ID of the team that owns the business service.
- Type string
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
- description String
- html
Url String - name String
The name of the business service.
- point
Of StringContact The owner of the business service.
- self String
- summary String
- team String
ID of the team that owns the business service.
- type String
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
- description string
- html
Url string - name string
The name of the business service.
- point
Of stringContact The owner of the business service.
- self string
- summary string
- team string
ID of the team that owns the business service.
- type string
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
- description str
- html_
url str - name str
The name of the business service.
- point_
of_ strcontact The owner of the business service.
- self str
- summary str
- team str
ID of the team that owns the business service.
- type str
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
- description String
- html
Url String - name String
The name of the business service.
- point
Of StringContact The owner of the business service.
- self String
- summary String
- team String
ID of the team that owns the business service.
- type String
Deprecated (Optional) Default (and only supported) value is
business_service
.This will change to a computed resource in the next major release.
Import
Services can be imported using the id
, e.g.
$ pulumi import pagerduty:index/businessService:BusinessService main PLBP09X
Package Details
- Repository
- PagerDuty pulumi/pulumi-pagerduty
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
pagerduty
Terraform Provider.