pagerduty.ServiceDependency
Explore with Pulumi AI
A service dependency is a relationship between two services that this service uses, or that are used by this service, and are critical for successful operation.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.pagerduty.ServiceDependency;
import com.pulumi.pagerduty.ServiceDependencyArgs;
import com.pulumi.pagerduty.inputs.ServiceDependencyDependencyArgs;
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 foo = new ServiceDependency("foo", ServiceDependencyArgs.builder()
.dependency(ServiceDependencyDependencyArgs.builder()
.dependentService(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.supportingService(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build())
.build());
var bar = new ServiceDependency("bar", ServiceDependencyArgs.builder()
.dependency(ServiceDependencyDependencyArgs.builder()
.dependentService(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.supportingService(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build())
.build());
}
}
resources:
foo:
type: pagerduty:ServiceDependency
properties:
dependency:
dependentService:
id: ${fooPagerdutyBusinessService.id}
type: ${fooPagerdutyBusinessService.type}
supportingService:
id: ${fooPagerdutyService.id}
type: ${fooPagerdutyService.type}
bar:
type: pagerduty:ServiceDependency
properties:
dependency:
dependentService:
id: ${fooPagerdutyBusinessService.id}
type: ${fooPagerdutyBusinessService.type}
supportingService:
id: ${two.id}
type: ${two.type}
Create ServiceDependency Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceDependency(name: string, args?: ServiceDependencyArgs, opts?: CustomResourceOptions);
@overload
def ServiceDependency(resource_name: str,
args: Optional[ServiceDependencyArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceDependency(resource_name: str,
opts: Optional[ResourceOptions] = None,
dependency: Optional[ServiceDependencyDependencyArgs] = None)
func NewServiceDependency(ctx *Context, name string, args *ServiceDependencyArgs, opts ...ResourceOption) (*ServiceDependency, error)
public ServiceDependency(string name, ServiceDependencyArgs? args = null, CustomResourceOptions? opts = null)
public ServiceDependency(String name, ServiceDependencyArgs args)
public ServiceDependency(String name, ServiceDependencyArgs args, CustomResourceOptions options)
type: pagerduty:ServiceDependency
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServiceDependencyArgs
- 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 ServiceDependencyArgs
- 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 ServiceDependencyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceDependencyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceDependencyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var serviceDependencyResource = new Pagerduty.ServiceDependency("serviceDependencyResource", new()
{
Dependency = new Pagerduty.Inputs.ServiceDependencyDependencyArgs
{
DependentServices = new[]
{
new Pagerduty.Inputs.ServiceDependencyDependencyDependentServiceArgs
{
Id = "string",
Type = "string",
},
},
SupportingServices = new[]
{
new Pagerduty.Inputs.ServiceDependencyDependencySupportingServiceArgs
{
Id = "string",
Type = "string",
},
},
Type = "string",
},
});
example, err := pagerduty.NewServiceDependency(ctx, "serviceDependencyResource", &pagerduty.ServiceDependencyArgs{
Dependency: &pagerduty.ServiceDependencyDependencyArgs{
DependentServices: pagerduty.ServiceDependencyDependencyDependentServiceArray{
&pagerduty.ServiceDependencyDependencyDependentServiceArgs{
Id: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
SupportingServices: pagerduty.ServiceDependencyDependencySupportingServiceArray{
&pagerduty.ServiceDependencyDependencySupportingServiceArgs{
Id: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Type: pulumi.String("string"),
},
})
var serviceDependencyResource = new ServiceDependency("serviceDependencyResource", ServiceDependencyArgs.builder()
.dependency(ServiceDependencyDependencyArgs.builder()
.dependentServices(ServiceDependencyDependencyDependentServiceArgs.builder()
.id("string")
.type("string")
.build())
.supportingServices(ServiceDependencyDependencySupportingServiceArgs.builder()
.id("string")
.type("string")
.build())
.type("string")
.build())
.build());
service_dependency_resource = pagerduty.ServiceDependency("serviceDependencyResource", dependency={
"dependent_services": [{
"id": "string",
"type": "string",
}],
"supporting_services": [{
"id": "string",
"type": "string",
}],
"type": "string",
})
const serviceDependencyResource = new pagerduty.ServiceDependency("serviceDependencyResource", {dependency: {
dependentServices: [{
id: "string",
type: "string",
}],
supportingServices: [{
id: "string",
type: "string",
}],
type: "string",
}});
type: pagerduty:ServiceDependency
properties:
dependency:
dependentServices:
- id: string
type: string
supportingServices:
- id: string
type: string
type: string
ServiceDependency Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ServiceDependency resource accepts the following input properties:
- Dependency
Service
Dependency Dependency - The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
- Dependency
Service
Dependency Dependency Args - The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
- dependency
Service
Dependency Dependency - The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
- dependency
Service
Dependency Dependency - The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
- dependency
Service
Dependency Dependency Args - The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
- dependency Property Map
- The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceDependency 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 ServiceDependency Resource
Get an existing ServiceDependency 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?: ServiceDependencyState, opts?: CustomResourceOptions): ServiceDependency
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dependency: Optional[ServiceDependencyDependencyArgs] = None) -> ServiceDependency
func GetServiceDependency(ctx *Context, name string, id IDInput, state *ServiceDependencyState, opts ...ResourceOption) (*ServiceDependency, error)
public static ServiceDependency Get(string name, Input<string> id, ServiceDependencyState? state, CustomResourceOptions? opts = null)
public static ServiceDependency get(String name, Output<String> id, ServiceDependencyState state, CustomResourceOptions options)
resources: _: type: pagerduty:ServiceDependency get: id: ${id}
- 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.
- Dependency
Service
Dependency Dependency - The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
- Dependency
Service
Dependency Dependency Args - The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
- dependency
Service
Dependency Dependency - The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
- dependency
Service
Dependency Dependency - The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
- dependency
Service
Dependency Dependency Args - The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
- dependency Property Map
- The relationship between the
supporting_service
anddependent_service
. One and only one dependency block must be defined.
Supporting Types
ServiceDependencyDependency, ServiceDependencyDependencyArgs
- Dependent
Services List<ServiceDependency Dependency Dependent Service> - The service that dependents on the supporting service. Dependency dependent service documented below. One and only one
dependent_service
dependency block must be defined. - Supporting
Services List<ServiceDependency Dependency Supporting Service> - The service that supports the dependent service. Dependency supporting service documented below. One and only one
supporting_service
dependency block must be defined. - Type string
- Can be
business_service
,service
,business_service_reference
ortechnical_service_reference
.
- Dependent
Services []ServiceDependency Dependency Dependent Service - The service that dependents on the supporting service. Dependency dependent service documented below. One and only one
dependent_service
dependency block must be defined. - Supporting
Services []ServiceDependency Dependency Supporting Service - The service that supports the dependent service. Dependency supporting service documented below. One and only one
supporting_service
dependency block must be defined. - Type string
- Can be
business_service
,service
,business_service_reference
ortechnical_service_reference
.
- dependent
Services List<ServiceDependency Dependency Dependent Service> - The service that dependents on the supporting service. Dependency dependent service documented below. One and only one
dependent_service
dependency block must be defined. - supporting
Services List<ServiceDependency Dependency Supporting Service> - The service that supports the dependent service. Dependency supporting service documented below. One and only one
supporting_service
dependency block must be defined. - type String
- Can be
business_service
,service
,business_service_reference
ortechnical_service_reference
.
- dependent
Services ServiceDependency Dependency Dependent Service[] - The service that dependents on the supporting service. Dependency dependent service documented below. One and only one
dependent_service
dependency block must be defined. - supporting
Services ServiceDependency Dependency Supporting Service[] - The service that supports the dependent service. Dependency supporting service documented below. One and only one
supporting_service
dependency block must be defined. - type string
- Can be
business_service
,service
,business_service_reference
ortechnical_service_reference
.
- dependent_
services Sequence[ServiceDependency Dependency Dependent Service] - The service that dependents on the supporting service. Dependency dependent service documented below. One and only one
dependent_service
dependency block must be defined. - supporting_
services Sequence[ServiceDependency Dependency Supporting Service] - The service that supports the dependent service. Dependency supporting service documented below. One and only one
supporting_service
dependency block must be defined. - type str
- Can be
business_service
,service
,business_service_reference
ortechnical_service_reference
.
- dependent
Services List<Property Map> - The service that dependents on the supporting service. Dependency dependent service documented below. One and only one
dependent_service
dependency block must be defined. - supporting
Services List<Property Map> - The service that supports the dependent service. Dependency supporting service documented below. One and only one
supporting_service
dependency block must be defined. - type String
- Can be
business_service
,service
,business_service_reference
ortechnical_service_reference
.
ServiceDependencyDependencyDependentService, ServiceDependencyDependencyDependentServiceArgs
ServiceDependencyDependencySupportingService, ServiceDependencyDependencySupportingServiceArgs
Import
Service dependencies can be imported using the related supporting service id, supporting service type (business_service
or service
) and the dependency id separated by a dot, e.g.
$ pulumi import pagerduty:index/serviceDependency:ServiceDependency main P4B2Z7G.business_service.D5RTHKRNGU4PYE90PJ
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- PagerDuty pulumi/pulumi-pagerduty
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
pagerduty
Terraform Provider.