technical_services
Creates, updates, deletes, gets or lists a technical_services resource.
Overview
| Name | technical_services |
| Type | Resource |
| Id | pagerduty.service_dependencies.technical_services |
Fields
The following fields are returned by SELECT queries:
- list
An array of service relationships.
| Name | Datatype | Description |
|---|---|---|
id | string | |
dependent_service | object | The reference to the service that is dependent on the technical service. |
supporting_service | object | The reference to the service that supports the technical service. |
type | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | id | Get all immediate dependencies of any technical service.<br />Technical services are also known as services.<br /><br />For more information see the [API Concepts Document](https://developer.pagerduty.com/api-reference/a47605517c19a-api-concepts#services)<br /><br />Scoped OAuth requires: services.read<br /> |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the resource. |
SELECT examples
- list
Get all immediate dependencies of any technical service.<br />Technical services are also known as services.<br /><br />For more information see the [API Concepts Document](https://developer.pagerduty.com/api-reference/a47605517c19a-api-concepts#services)<br /><br />Scoped OAuth requires: services.read<br />
SELECT
id,
dependent_service,
supporting_service,
type
FROM pagerduty.service_dependencies.technical_services
WHERE id = '{{ id }}' -- required
;