incident_io_sdk 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +73 -810
- data/incident_io_sdk.gemspec +4 -4
- data/lib/incident_io_sdk/api_client.rb +4 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c1c566a2f77bb11b3ac7dde8aa6d309fe2fb0d8dac2be808cc152337f19d416
|
|
4
|
+
data.tar.gz: dd298e847b919a62d73d6957ec819c486dfe4d9df51e114cd577457bd59b10e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17073d38370555e9790805aed6270b9fda7345406d51753e9be38b4489de9d6fac54016d7edcf7898977e5999ddc259dcbc71438fe959e1706c40313cc14fcd7
|
|
7
|
+
data.tar.gz: cf9de664e22b5dbcff09ce22cb6f1a18112821fa8a43055cc8fbfac433e11b8e846fec050eefeccb26975caae03260c1085e004e0bbdd45eef6bea59f6059e8d
|
data/README.md
CHANGED
|
@@ -1,859 +1,122 @@
|
|
|
1
|
-
# incident_io_sdk
|
|
2
1
|
|
|
3
|
-
|
|
2
|
+
# Incident.io Ruby SDK
|
|
4
3
|
|
|
5
|
-
This
|
|
4
|
+
A comprehensive Ruby SDK for interacting with the [incident.io API](https://incident.io), generated using [OpenAPI Generator](https://openapi-generator.tech). This SDK provides full coverage of the REST API endpoints to integrate with the incident.io platform.
|
|
6
5
|
|
|
7
|
-
|
|
8
|
-
instructions around things like authentication and error handling.
|
|
6
|
+
## Table of Contents
|
|
9
7
|
|
|
10
|
-
|
|
8
|
+
- [Installation](#installation)
|
|
9
|
+
- [Usage](#usage)
|
|
10
|
+
- [Development](#development)
|
|
11
|
+
- [Testing](#testing)
|
|
12
|
+
- [Contributing](#contributing)
|
|
13
|
+
- [License](#license)
|
|
11
14
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
And you will need to create an API key via your [incident.io
|
|
15
|
-
dashboard](https://app.incident.io/settings/api-keys) to make requests.
|
|
16
|
-
|
|
17
|
-
# Making requests
|
|
18
|
-
|
|
19
|
-
Here are the key concepts required to make requests to the incident.io API.
|
|
20
|
-
|
|
21
|
-
## Authentication
|
|
22
|
-
|
|
23
|
-
For all requests made to the incident.io API, you'll need an API key.
|
|
24
|
-
|
|
25
|
-
To create an API key, head to the incident dashboard and visit [API
|
|
26
|
-
keys](https://app.incident.io/settings/api-keys). When you create the key, you'll be able to choose what actions it
|
|
27
|
-
can take for your account: choose carefully, as those roles can only be set
|
|
28
|
-
when you first create the key. We'll only show you the token once, so make sure
|
|
29
|
-
you store it somewhere safe.
|
|
30
|
-
|
|
31
|
-
API keys are global to your incident.io account, and can be managed by anyone
|
|
32
|
-
who has the right permissions. We display the user that created the API key,
|
|
33
|
-
and the API key will remain valid if that user becomes deactivated.
|
|
34
|
-
|
|
35
|
-
Once you have the key, you should make requests to the API that set the
|
|
36
|
-
`Authorization` request header using a \"Bearer\" authentication scheme:
|
|
15
|
+
## Installation
|
|
37
16
|
|
|
38
|
-
|
|
39
|
-
Authorization: Bearer <YOUR_API_KEY>
|
|
40
|
-
```
|
|
17
|
+
To install the gem, run the following command:
|
|
41
18
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
The incident.io API enforces rate limits to ensure consistent performance for all users.
|
|
45
|
-
|
|
46
|
-
The default rate limit is 1200 requests/minute per API key. This limit applies to most endpoints across the API.
|
|
47
|
-
|
|
48
|
-
Some endpoints have lower rate limits, particularly those that interact with external third-party systems that impose
|
|
49
|
-
their own limitations. These specific limits vary by endpoint, and we recommend relying on the rate-limit error
|
|
50
|
-
responses to understand usage patterns and implement appropriate retry strategies.
|
|
51
|
-
|
|
52
|
-
When you exceed a rate limit, the API will respond with a `429 Too Many Requests` status code, along with a JSON
|
|
53
|
-
response that includes information about the limit and when you can retry:
|
|
54
|
-
|
|
55
|
-
```json
|
|
56
|
-
{
|
|
57
|
-
\"type\": \"too_many_requests\",
|
|
58
|
-
\"status\": 429,
|
|
59
|
-
\"request_id\": \"b839a403-7704-41c1-bf6a-39a2d68caefa\",
|
|
60
|
-
\"rate_limit\": {
|
|
61
|
-
\"name\": \"api_key_name\",
|
|
62
|
-
\"limit\": 1200,
|
|
63
|
-
\"remaining\": 0,
|
|
64
|
-
\"retry_after\": \"Thu, 17 Apr 2025 11:17:18 UTC\"
|
|
65
|
-
},
|
|
66
|
-
\"errors\": [
|
|
67
|
-
{
|
|
68
|
-
\"code\": \"too_many_requests\",
|
|
69
|
-
\"message\": \"Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.\"
|
|
70
|
-
}
|
|
71
|
-
]
|
|
72
|
-
}
|
|
19
|
+
```bash
|
|
20
|
+
gem install incident_io_sdk
|
|
73
21
|
```
|
|
74
22
|
|
|
75
|
-
|
|
76
|
-
* The name of the API key (`name`)
|
|
77
|
-
* The bucket limit (`limit`)
|
|
78
|
-
* The number of requests remaining (`remaining`)
|
|
79
|
-
* When you can retry requests (`retry_after`)
|
|
80
|
-
|
|
81
|
-
## Errors
|
|
82
|
-
|
|
83
|
-
We use standard HTTP response codes to indicate the status or failure of API
|
|
84
|
-
requests.
|
|
85
|
-
|
|
86
|
-
The API response body will be JSON, and contain more detailed information on the
|
|
87
|
-
nature of the error.
|
|
88
|
-
|
|
89
|
-
An example error when a request is made without an API key:
|
|
90
|
-
|
|
91
|
-
```json
|
|
92
|
-
{
|
|
93
|
-
\"type\": \"authentication_error\",
|
|
94
|
-
\"status\": 401,
|
|
95
|
-
\"request_id\": \"8e3cc412-b49d-4957-9073-2c19d2c61804\",
|
|
96
|
-
\"errors\": [
|
|
97
|
-
{
|
|
98
|
-
\"code\": \"missing_authorization_material\",
|
|
99
|
-
\"message\": \"No authorization material provided in request\"
|
|
100
|
-
}
|
|
101
|
-
]
|
|
102
|
-
}
|
|
103
|
-
```
|
|
23
|
+
Alternatively, you can add it to your `Gemfile`:
|
|
104
24
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
- Contains the HTTP status (`401`)
|
|
108
|
-
- References the type of error (`authentication_error`)
|
|
109
|
-
- Includes a `request_id` that can be provided to incident.io support to help
|
|
110
|
-
debug questions with your API request
|
|
111
|
-
- Provides a list of individual errors, which go into detail about why the error
|
|
112
|
-
occurred
|
|
113
|
-
|
|
114
|
-
The most common error will be a 422 Validation Error, which is returned when the
|
|
115
|
-
request was rejected due to failing validations.
|
|
116
|
-
|
|
117
|
-
These errors look like this:
|
|
118
|
-
|
|
119
|
-
```json
|
|
120
|
-
{
|
|
121
|
-
\"type\": \"validation_error\",
|
|
122
|
-
\"status\": 422,
|
|
123
|
-
\"request_id\": \"631766c4-4afd-4803-997c-cd700928fa4b\",
|
|
124
|
-
\"errors\": [
|
|
125
|
-
{
|
|
126
|
-
\"code\": \"is_required\",
|
|
127
|
-
\"message\": \"A severity is required to open an incident\",
|
|
128
|
-
\"source\": {
|
|
129
|
-
\"field\": \"severity_id\"
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
]
|
|
133
|
-
}
|
|
25
|
+
```ruby
|
|
26
|
+
gem 'incident_io_sdk', '~> 0.1.1'
|
|
134
27
|
```
|
|
135
28
|
|
|
136
|
-
|
|
137
|
-
the `severity_id` field of the request payload. Errors like these can be mapped to
|
|
138
|
-
forms, should you be integrating with the API from a user-interface.
|
|
29
|
+
Then run:
|
|
139
30
|
|
|
140
|
-
|
|
31
|
+
```bash
|
|
32
|
+
bundle install
|
|
33
|
+
```
|
|
141
34
|
|
|
142
|
-
|
|
143
|
-
expect integrators to upgrade themselves to the latest API endpoints within 3
|
|
144
|
-
months of us deprecating the old service.
|
|
35
|
+
## Usage
|
|
145
36
|
|
|
146
|
-
|
|
37
|
+
### Initialization
|
|
147
38
|
|
|
148
|
-
|
|
149
|
-
- Adding new properties to responses from existing API endpoints
|
|
150
|
-
- Reordering properties returned from existing API endpoints
|
|
151
|
-
- Adding optional request parameters to existing API endpoints
|
|
152
|
-
- Altering the format or length of IDs
|
|
153
|
-
- Adding new values to enums
|
|
39
|
+
First, you'll need to configure the SDK with your API key:
|
|
154
40
|
|
|
155
|
-
|
|
156
|
-
|
|
41
|
+
```ruby
|
|
42
|
+
require 'incident_io_sdk'
|
|
157
43
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
configured via the `enumUnknownDefaultCase` parameter.
|
|
44
|
+
client = IncidentIoSdk::Client.new(api_key: 'your-api-key')
|
|
45
|
+
```
|
|
161
46
|
|
|
162
|
-
|
|
163
|
-
separate path, and run them in parallel.
|
|
47
|
+
### Making Requests
|
|
164
48
|
|
|
165
|
-
|
|
49
|
+
Once the client is initialized, you can use it to interact with the API:
|
|
166
50
|
|
|
167
|
-
|
|
168
|
-
|
|
51
|
+
```ruby
|
|
52
|
+
# Example: Fetching an incident
|
|
53
|
+
incident = client.incidents.get(incident_id: '12345')
|
|
169
54
|
|
|
170
|
-
|
|
55
|
+
puts incident.details
|
|
56
|
+
```
|
|
171
57
|
|
|
58
|
+
### Available Endpoints
|
|
172
59
|
|
|
173
|
-
|
|
60
|
+
You can use the SDK to interact with the following endpoints (examples):
|
|
174
61
|
|
|
175
|
-
-
|
|
176
|
-
-
|
|
177
|
-
- Generator version: 7.12.0
|
|
178
|
-
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
62
|
+
- **Get Incidents**: `client.incidents.get`
|
|
63
|
+
- **Create an Incident**: `client.incidents.create`
|
|
179
64
|
|
|
180
|
-
|
|
65
|
+
For full usage examples, refer to the [documentation](https://docs.incident.io).
|
|
181
66
|
|
|
182
|
-
|
|
67
|
+
## Development
|
|
183
68
|
|
|
184
|
-
|
|
69
|
+
### Prerequisites
|
|
185
70
|
|
|
186
|
-
|
|
187
|
-
gem build incident_io_sdk.gemspec
|
|
188
|
-
```
|
|
71
|
+
Ensure that you have the following installed:
|
|
189
72
|
|
|
190
|
-
|
|
73
|
+
- Ruby (>= 2.7)
|
|
74
|
+
- Bundler (install with `gem install bundler`)
|
|
75
|
+
- Dependencies can be installed with:
|
|
191
76
|
|
|
192
|
-
```
|
|
193
|
-
|
|
77
|
+
```bash
|
|
78
|
+
bundle install
|
|
194
79
|
```
|
|
195
80
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
81
|
+
### Running the Development Server
|
|
199
82
|
|
|
200
|
-
|
|
83
|
+
For development purposes, you can run the SDK in a local environment:
|
|
201
84
|
|
|
202
|
-
|
|
85
|
+
1. Clone the repository:
|
|
203
86
|
|
|
204
|
-
|
|
87
|
+
```bash
|
|
88
|
+
git clone https://github.com/mustafabayar/incident-io-sdk.git
|
|
89
|
+
cd incident-io-sdk
|
|
90
|
+
```
|
|
205
91
|
|
|
206
|
-
|
|
92
|
+
2. Install dependencies:
|
|
207
93
|
|
|
208
|
-
|
|
94
|
+
```bash
|
|
95
|
+
bundle install
|
|
96
|
+
```
|
|
209
97
|
|
|
210
|
-
|
|
98
|
+
## Testing
|
|
211
99
|
|
|
212
|
-
|
|
100
|
+
To run the test suite:
|
|
213
101
|
|
|
214
|
-
```
|
|
215
|
-
|
|
102
|
+
```bash
|
|
103
|
+
bundle exec rspec
|
|
216
104
|
```
|
|
217
105
|
|
|
218
|
-
|
|
106
|
+
This will run all tests under the `spec` directory.
|
|
219
107
|
|
|
220
|
-
|
|
108
|
+
## Contributing
|
|
221
109
|
|
|
222
|
-
|
|
223
|
-
# Load the gem
|
|
224
|
-
require 'incident_io_sdk'
|
|
110
|
+
We welcome contributions! If you'd like to help improve this SDK, please follow these steps:
|
|
225
111
|
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
begin
|
|
234
|
-
#List Actions V1
|
|
235
|
-
result = api_instance.actions_v1_list(opts)
|
|
236
|
-
p result
|
|
237
|
-
rescue IncidentIoSdk::ApiError => e
|
|
238
|
-
puts "Exception when calling ActionsV1Api->actions_v1_list: #{e}"
|
|
239
|
-
end
|
|
112
|
+
1. Fork the repository
|
|
113
|
+
2. Create a new branch for your feature or fix
|
|
114
|
+
3. Write tests and documentation as needed
|
|
115
|
+
4. Ensure all tests pass
|
|
116
|
+
5. Submit a pull request
|
|
240
117
|
|
|
241
|
-
|
|
118
|
+
Please make sure to update tests as appropriate.
|
|
242
119
|
|
|
243
|
-
##
|
|
244
|
-
|
|
245
|
-
All URIs are relative to *https://api.incident.io*
|
|
246
|
-
|
|
247
|
-
Class | Method | HTTP request | Description
|
|
248
|
-
------------ | ------------- | ------------- | -------------
|
|
249
|
-
*IncidentIoSdk::ActionsV1Api* | [**actions_v1_list**](docs/ActionsV1Api.md#actions_v1_list) | **GET** /v1/actions | List Actions V1
|
|
250
|
-
*IncidentIoSdk::ActionsV1Api* | [**actions_v1_show**](docs/ActionsV1Api.md#actions_v1_show) | **GET** /v1/actions/{id} | Show Actions V1
|
|
251
|
-
*IncidentIoSdk::ActionsV2Api* | [**actions_v2_list**](docs/ActionsV2Api.md#actions_v2_list) | **GET** /v2/actions | List Actions V2
|
|
252
|
-
*IncidentIoSdk::ActionsV2Api* | [**actions_v2_show**](docs/ActionsV2Api.md#actions_v2_show) | **GET** /v2/actions/{id} | Show Actions V2
|
|
253
|
-
*IncidentIoSdk::AlertAttributesV2Api* | [**alert_attributes_v2_create**](docs/AlertAttributesV2Api.md#alert_attributes_v2_create) | **POST** /v2/alert_attributes | Create Alert Attributes V2
|
|
254
|
-
*IncidentIoSdk::AlertAttributesV2Api* | [**alert_attributes_v2_destroy**](docs/AlertAttributesV2Api.md#alert_attributes_v2_destroy) | **DELETE** /v2/alert_attributes/{id} | Destroy Alert Attributes V2
|
|
255
|
-
*IncidentIoSdk::AlertAttributesV2Api* | [**alert_attributes_v2_list**](docs/AlertAttributesV2Api.md#alert_attributes_v2_list) | **GET** /v2/alert_attributes | List Alert Attributes V2
|
|
256
|
-
*IncidentIoSdk::AlertAttributesV2Api* | [**alert_attributes_v2_show**](docs/AlertAttributesV2Api.md#alert_attributes_v2_show) | **GET** /v2/alert_attributes/{id} | Show Alert Attributes V2
|
|
257
|
-
*IncidentIoSdk::AlertAttributesV2Api* | [**alert_attributes_v2_update**](docs/AlertAttributesV2Api.md#alert_attributes_v2_update) | **PUT** /v2/alert_attributes/{id} | Update Alert Attributes V2
|
|
258
|
-
*IncidentIoSdk::AlertEventsV2Api* | [**alert_events_v2_create_http**](docs/AlertEventsV2Api.md#alert_events_v2_create_http) | **POST** /v2/alert_events/http/{alert_source_config_id} | CreateHTTP Alert Events V2
|
|
259
|
-
*IncidentIoSdk::AlertRoutesV2Api* | [**alert_routes_v2_create**](docs/AlertRoutesV2Api.md#alert_routes_v2_create) | **POST** /v2/alert_routes | Create Alert Routes V2
|
|
260
|
-
*IncidentIoSdk::AlertRoutesV2Api* | [**alert_routes_v2_delete**](docs/AlertRoutesV2Api.md#alert_routes_v2_delete) | **DELETE** /v2/alert_routes/{id} | Delete Alert Routes V2
|
|
261
|
-
*IncidentIoSdk::AlertRoutesV2Api* | [**alert_routes_v2_list**](docs/AlertRoutesV2Api.md#alert_routes_v2_list) | **GET** /v2/alert_routes | List Alert Routes V2
|
|
262
|
-
*IncidentIoSdk::AlertRoutesV2Api* | [**alert_routes_v2_show**](docs/AlertRoutesV2Api.md#alert_routes_v2_show) | **GET** /v2/alert_routes/{id} | Show Alert Routes V2
|
|
263
|
-
*IncidentIoSdk::AlertRoutesV2Api* | [**alert_routes_v2_update**](docs/AlertRoutesV2Api.md#alert_routes_v2_update) | **PUT** /v2/alert_routes/{id} | Update Alert Routes V2
|
|
264
|
-
*IncidentIoSdk::AlertSourcesV2Api* | [**alert_sources_v2_create**](docs/AlertSourcesV2Api.md#alert_sources_v2_create) | **POST** /v2/alert_sources | Create Alert Sources V2
|
|
265
|
-
*IncidentIoSdk::AlertSourcesV2Api* | [**alert_sources_v2_delete**](docs/AlertSourcesV2Api.md#alert_sources_v2_delete) | **DELETE** /v2/alert_sources/{id} | Delete Alert Sources V2
|
|
266
|
-
*IncidentIoSdk::AlertSourcesV2Api* | [**alert_sources_v2_list**](docs/AlertSourcesV2Api.md#alert_sources_v2_list) | **GET** /v2/alert_sources | List Alert Sources V2
|
|
267
|
-
*IncidentIoSdk::AlertSourcesV2Api* | [**alert_sources_v2_show**](docs/AlertSourcesV2Api.md#alert_sources_v2_show) | **GET** /v2/alert_sources/{id} | Show Alert Sources V2
|
|
268
|
-
*IncidentIoSdk::AlertSourcesV2Api* | [**alert_sources_v2_update**](docs/AlertSourcesV2Api.md#alert_sources_v2_update) | **PUT** /v2/alert_sources/{id} | Update Alert Sources V2
|
|
269
|
-
*IncidentIoSdk::AlertsV2Api* | [**alerts_v2_list**](docs/AlertsV2Api.md#alerts_v2_list) | **GET** /v2/alerts | List Alerts V2
|
|
270
|
-
*IncidentIoSdk::AlertsV2Api* | [**alerts_v2_list_incident_alerts**](docs/AlertsV2Api.md#alerts_v2_list_incident_alerts) | **GET** /v2/incident_alerts | ListIncidentAlerts Alerts V2
|
|
271
|
-
*IncidentIoSdk::AlertsV2Api* | [**alerts_v2_show**](docs/AlertsV2Api.md#alerts_v2_show) | **GET** /v2/alerts/{id} | Show Alerts V2
|
|
272
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_create_entry**](docs/CatalogV2Api.md#catalog_v2_create_entry) | **POST** /v2/catalog_entries | CreateEntry Catalog V2
|
|
273
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_create_type**](docs/CatalogV2Api.md#catalog_v2_create_type) | **POST** /v2/catalog_types | CreateType Catalog V2
|
|
274
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_destroy_entry**](docs/CatalogV2Api.md#catalog_v2_destroy_entry) | **DELETE** /v2/catalog_entries/{id} | DestroyEntry Catalog V2
|
|
275
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_destroy_type**](docs/CatalogV2Api.md#catalog_v2_destroy_type) | **DELETE** /v2/catalog_types/{id} | DestroyType Catalog V2
|
|
276
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_list_entries**](docs/CatalogV2Api.md#catalog_v2_list_entries) | **GET** /v2/catalog_entries | ListEntries Catalog V2
|
|
277
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_list_resources**](docs/CatalogV2Api.md#catalog_v2_list_resources) | **GET** /v2/catalog_resources | ListResources Catalog V2
|
|
278
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_list_types**](docs/CatalogV2Api.md#catalog_v2_list_types) | **GET** /v2/catalog_types | ListTypes Catalog V2
|
|
279
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_show_entry**](docs/CatalogV2Api.md#catalog_v2_show_entry) | **GET** /v2/catalog_entries/{id} | ShowEntry Catalog V2
|
|
280
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_show_type**](docs/CatalogV2Api.md#catalog_v2_show_type) | **GET** /v2/catalog_types/{id} | ShowType Catalog V2
|
|
281
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_update_entry**](docs/CatalogV2Api.md#catalog_v2_update_entry) | **PUT** /v2/catalog_entries/{id} | UpdateEntry Catalog V2
|
|
282
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_update_type**](docs/CatalogV2Api.md#catalog_v2_update_type) | **PUT** /v2/catalog_types/{id} | UpdateType Catalog V2
|
|
283
|
-
*IncidentIoSdk::CatalogV2Api* | [**catalog_v2_update_type_schema**](docs/CatalogV2Api.md#catalog_v2_update_type_schema) | **POST** /v2/catalog_types/{id}/actions/update_schema | UpdateTypeSchema Catalog V2
|
|
284
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_create_entry**](docs/CatalogV3Api.md#catalog_v3_create_entry) | **POST** /v3/catalog_entries | CreateEntry Catalog V3
|
|
285
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_create_type**](docs/CatalogV3Api.md#catalog_v3_create_type) | **POST** /v3/catalog_types | CreateType Catalog V3
|
|
286
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_destroy_entry**](docs/CatalogV3Api.md#catalog_v3_destroy_entry) | **DELETE** /v3/catalog_entries/{id} | DestroyEntry Catalog V3
|
|
287
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_destroy_type**](docs/CatalogV3Api.md#catalog_v3_destroy_type) | **DELETE** /v3/catalog_types/{id} | DestroyType Catalog V3
|
|
288
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_list_entries**](docs/CatalogV3Api.md#catalog_v3_list_entries) | **GET** /v3/catalog_entries | ListEntries Catalog V3
|
|
289
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_list_resources**](docs/CatalogV3Api.md#catalog_v3_list_resources) | **GET** /v3/catalog_resources | ListResources Catalog V3
|
|
290
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_list_types**](docs/CatalogV3Api.md#catalog_v3_list_types) | **GET** /v3/catalog_types | ListTypes Catalog V3
|
|
291
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_show_entry**](docs/CatalogV3Api.md#catalog_v3_show_entry) | **GET** /v3/catalog_entries/{id} | ShowEntry Catalog V3
|
|
292
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_show_type**](docs/CatalogV3Api.md#catalog_v3_show_type) | **GET** /v3/catalog_types/{id} | ShowType Catalog V3
|
|
293
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_update_entry**](docs/CatalogV3Api.md#catalog_v3_update_entry) | **PUT** /v3/catalog_entries/{id} | UpdateEntry Catalog V3
|
|
294
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_update_type**](docs/CatalogV3Api.md#catalog_v3_update_type) | **PUT** /v3/catalog_types/{id} | UpdateType Catalog V3
|
|
295
|
-
*IncidentIoSdk::CatalogV3Api* | [**catalog_v3_update_type_schema**](docs/CatalogV3Api.md#catalog_v3_update_type_schema) | **POST** /v3/catalog_types/{id}/actions/update_schema | UpdateTypeSchema Catalog V3
|
|
296
|
-
*IncidentIoSdk::CustomFieldOptionsV1Api* | [**custom_field_options_v1_create**](docs/CustomFieldOptionsV1Api.md#custom_field_options_v1_create) | **POST** /v1/custom_field_options | Create Custom Field Options V1
|
|
297
|
-
*IncidentIoSdk::CustomFieldOptionsV1Api* | [**custom_field_options_v1_delete**](docs/CustomFieldOptionsV1Api.md#custom_field_options_v1_delete) | **DELETE** /v1/custom_field_options/{id} | Delete Custom Field Options V1
|
|
298
|
-
*IncidentIoSdk::CustomFieldOptionsV1Api* | [**custom_field_options_v1_list**](docs/CustomFieldOptionsV1Api.md#custom_field_options_v1_list) | **GET** /v1/custom_field_options | List Custom Field Options V1
|
|
299
|
-
*IncidentIoSdk::CustomFieldOptionsV1Api* | [**custom_field_options_v1_show**](docs/CustomFieldOptionsV1Api.md#custom_field_options_v1_show) | **GET** /v1/custom_field_options/{id} | Show Custom Field Options V1
|
|
300
|
-
*IncidentIoSdk::CustomFieldOptionsV1Api* | [**custom_field_options_v1_update**](docs/CustomFieldOptionsV1Api.md#custom_field_options_v1_update) | **PUT** /v1/custom_field_options/{id} | Update Custom Field Options V1
|
|
301
|
-
*IncidentIoSdk::CustomFieldsV1Api* | [**custom_fields_v1_create**](docs/CustomFieldsV1Api.md#custom_fields_v1_create) | **POST** /v1/custom_fields | Create Custom Fields V1
|
|
302
|
-
*IncidentIoSdk::CustomFieldsV1Api* | [**custom_fields_v1_delete**](docs/CustomFieldsV1Api.md#custom_fields_v1_delete) | **DELETE** /v1/custom_fields/{id} | Delete Custom Fields V1
|
|
303
|
-
*IncidentIoSdk::CustomFieldsV1Api* | [**custom_fields_v1_list**](docs/CustomFieldsV1Api.md#custom_fields_v1_list) | **GET** /v1/custom_fields | List Custom Fields V1
|
|
304
|
-
*IncidentIoSdk::CustomFieldsV1Api* | [**custom_fields_v1_show**](docs/CustomFieldsV1Api.md#custom_fields_v1_show) | **GET** /v1/custom_fields/{id} | Show Custom Fields V1
|
|
305
|
-
*IncidentIoSdk::CustomFieldsV1Api* | [**custom_fields_v1_update**](docs/CustomFieldsV1Api.md#custom_fields_v1_update) | **PUT** /v1/custom_fields/{id} | Update Custom Fields V1
|
|
306
|
-
*IncidentIoSdk::CustomFieldsV2Api* | [**custom_fields_v2_create**](docs/CustomFieldsV2Api.md#custom_fields_v2_create) | **POST** /v2/custom_fields | Create Custom Fields V2
|
|
307
|
-
*IncidentIoSdk::CustomFieldsV2Api* | [**custom_fields_v2_delete**](docs/CustomFieldsV2Api.md#custom_fields_v2_delete) | **DELETE** /v2/custom_fields/{id} | Delete Custom Fields V2
|
|
308
|
-
*IncidentIoSdk::CustomFieldsV2Api* | [**custom_fields_v2_list**](docs/CustomFieldsV2Api.md#custom_fields_v2_list) | **GET** /v2/custom_fields | List Custom Fields V2
|
|
309
|
-
*IncidentIoSdk::CustomFieldsV2Api* | [**custom_fields_v2_show**](docs/CustomFieldsV2Api.md#custom_fields_v2_show) | **GET** /v2/custom_fields/{id} | Show Custom Fields V2
|
|
310
|
-
*IncidentIoSdk::CustomFieldsV2Api* | [**custom_fields_v2_update**](docs/CustomFieldsV2Api.md#custom_fields_v2_update) | **PUT** /v2/custom_fields/{id} | Update Custom Fields V2
|
|
311
|
-
*IncidentIoSdk::EscalationsV2Api* | [**escalations_v2_create_path**](docs/EscalationsV2Api.md#escalations_v2_create_path) | **POST** /v2/escalation_paths | CreatePath Escalations V2
|
|
312
|
-
*IncidentIoSdk::EscalationsV2Api* | [**escalations_v2_destroy_path**](docs/EscalationsV2Api.md#escalations_v2_destroy_path) | **DELETE** /v2/escalation_paths/{id} | DestroyPath Escalations V2
|
|
313
|
-
*IncidentIoSdk::EscalationsV2Api* | [**escalations_v2_show_path**](docs/EscalationsV2Api.md#escalations_v2_show_path) | **GET** /v2/escalation_paths/{id} | ShowPath Escalations V2
|
|
314
|
-
*IncidentIoSdk::EscalationsV2Api* | [**escalations_v2_update_path**](docs/EscalationsV2Api.md#escalations_v2_update_path) | **PUT** /v2/escalation_paths/{id} | UpdatePath Escalations V2
|
|
315
|
-
*IncidentIoSdk::FollowUpsV2Api* | [**follow_ups_v2_list**](docs/FollowUpsV2Api.md#follow_ups_v2_list) | **GET** /v2/follow_ups | List Follow-ups V2
|
|
316
|
-
*IncidentIoSdk::FollowUpsV2Api* | [**follow_ups_v2_show**](docs/FollowUpsV2Api.md#follow_ups_v2_show) | **GET** /v2/follow_ups/{id} | Show Follow-ups V2
|
|
317
|
-
*IncidentIoSdk::IncidentAttachmentsV1Api* | [**incident_attachments_v1_create**](docs/IncidentAttachmentsV1Api.md#incident_attachments_v1_create) | **POST** /v1/incident_attachments | Create Incident Attachments V1
|
|
318
|
-
*IncidentIoSdk::IncidentAttachmentsV1Api* | [**incident_attachments_v1_delete**](docs/IncidentAttachmentsV1Api.md#incident_attachments_v1_delete) | **DELETE** /v1/incident_attachments/{id} | Delete Incident Attachments V1
|
|
319
|
-
*IncidentIoSdk::IncidentAttachmentsV1Api* | [**incident_attachments_v1_list**](docs/IncidentAttachmentsV1Api.md#incident_attachments_v1_list) | **GET** /v1/incident_attachments | List Incident Attachments V1
|
|
320
|
-
*IncidentIoSdk::IncidentMembershipsV1Api* | [**incident_memberships_v1_create**](docs/IncidentMembershipsV1Api.md#incident_memberships_v1_create) | **POST** /v1/incident_memberships | Create Incident Memberships V1
|
|
321
|
-
*IncidentIoSdk::IncidentMembershipsV1Api* | [**incident_memberships_v1_revoke**](docs/IncidentMembershipsV1Api.md#incident_memberships_v1_revoke) | **POST** /v1/incident_memberships/actions/revoke | Revoke Incident Memberships V1
|
|
322
|
-
*IncidentIoSdk::IncidentRolesV1Api* | [**incident_roles_v1_create**](docs/IncidentRolesV1Api.md#incident_roles_v1_create) | **POST** /v1/incident_roles | Create Incident Roles V1
|
|
323
|
-
*IncidentIoSdk::IncidentRolesV1Api* | [**incident_roles_v1_delete**](docs/IncidentRolesV1Api.md#incident_roles_v1_delete) | **DELETE** /v1/incident_roles/{id} | Delete Incident Roles V1
|
|
324
|
-
*IncidentIoSdk::IncidentRolesV1Api* | [**incident_roles_v1_list**](docs/IncidentRolesV1Api.md#incident_roles_v1_list) | **GET** /v1/incident_roles | List Incident Roles V1
|
|
325
|
-
*IncidentIoSdk::IncidentRolesV1Api* | [**incident_roles_v1_show**](docs/IncidentRolesV1Api.md#incident_roles_v1_show) | **GET** /v1/incident_roles/{id} | Show Incident Roles V1
|
|
326
|
-
*IncidentIoSdk::IncidentRolesV1Api* | [**incident_roles_v1_update**](docs/IncidentRolesV1Api.md#incident_roles_v1_update) | **PUT** /v1/incident_roles/{id} | Update Incident Roles V1
|
|
327
|
-
*IncidentIoSdk::IncidentRolesV2Api* | [**incident_roles_v2_create**](docs/IncidentRolesV2Api.md#incident_roles_v2_create) | **POST** /v2/incident_roles | Create Incident Roles V2
|
|
328
|
-
*IncidentIoSdk::IncidentRolesV2Api* | [**incident_roles_v2_delete**](docs/IncidentRolesV2Api.md#incident_roles_v2_delete) | **DELETE** /v2/incident_roles/{id} | Delete Incident Roles V2
|
|
329
|
-
*IncidentIoSdk::IncidentRolesV2Api* | [**incident_roles_v2_list**](docs/IncidentRolesV2Api.md#incident_roles_v2_list) | **GET** /v2/incident_roles | List Incident Roles V2
|
|
330
|
-
*IncidentIoSdk::IncidentRolesV2Api* | [**incident_roles_v2_show**](docs/IncidentRolesV2Api.md#incident_roles_v2_show) | **GET** /v2/incident_roles/{id} | Show Incident Roles V2
|
|
331
|
-
*IncidentIoSdk::IncidentRolesV2Api* | [**incident_roles_v2_update**](docs/IncidentRolesV2Api.md#incident_roles_v2_update) | **PUT** /v2/incident_roles/{id} | Update Incident Roles V2
|
|
332
|
-
*IncidentIoSdk::IncidentStatusesV1Api* | [**incident_statuses_v1_create**](docs/IncidentStatusesV1Api.md#incident_statuses_v1_create) | **POST** /v1/incident_statuses | Create Incident Statuses V1
|
|
333
|
-
*IncidentIoSdk::IncidentStatusesV1Api* | [**incident_statuses_v1_delete**](docs/IncidentStatusesV1Api.md#incident_statuses_v1_delete) | **DELETE** /v1/incident_statuses/{id} | Delete Incident Statuses V1
|
|
334
|
-
*IncidentIoSdk::IncidentStatusesV1Api* | [**incident_statuses_v1_list**](docs/IncidentStatusesV1Api.md#incident_statuses_v1_list) | **GET** /v1/incident_statuses | List Incident Statuses V1
|
|
335
|
-
*IncidentIoSdk::IncidentStatusesV1Api* | [**incident_statuses_v1_show**](docs/IncidentStatusesV1Api.md#incident_statuses_v1_show) | **GET** /v1/incident_statuses/{id} | Show Incident Statuses V1
|
|
336
|
-
*IncidentIoSdk::IncidentStatusesV1Api* | [**incident_statuses_v1_update**](docs/IncidentStatusesV1Api.md#incident_statuses_v1_update) | **PUT** /v1/incident_statuses/{id} | Update Incident Statuses V1
|
|
337
|
-
*IncidentIoSdk::IncidentTimestampsV2Api* | [**incident_timestamps_v2_list**](docs/IncidentTimestampsV2Api.md#incident_timestamps_v2_list) | **GET** /v2/incident_timestamps | List Incident Timestamps V2
|
|
338
|
-
*IncidentIoSdk::IncidentTimestampsV2Api* | [**incident_timestamps_v2_show**](docs/IncidentTimestampsV2Api.md#incident_timestamps_v2_show) | **GET** /v2/incident_timestamps/{id} | Show Incident Timestamps V2
|
|
339
|
-
*IncidentIoSdk::IncidentTypesV1Api* | [**incident_types_v1_list**](docs/IncidentTypesV1Api.md#incident_types_v1_list) | **GET** /v1/incident_types | List Incident Types V1
|
|
340
|
-
*IncidentIoSdk::IncidentTypesV1Api* | [**incident_types_v1_show**](docs/IncidentTypesV1Api.md#incident_types_v1_show) | **GET** /v1/incident_types/{id} | Show Incident Types V1
|
|
341
|
-
*IncidentIoSdk::IncidentUpdatesV2Api* | [**incident_updates_v2_list**](docs/IncidentUpdatesV2Api.md#incident_updates_v2_list) | **GET** /v2/incident_updates | List Incident Updates V2
|
|
342
|
-
*IncidentIoSdk::IncidentsV1Api* | [**incidents_v1_create**](docs/IncidentsV1Api.md#incidents_v1_create) | **POST** /v1/incidents | Create Incidents V1
|
|
343
|
-
*IncidentIoSdk::IncidentsV1Api* | [**incidents_v1_list**](docs/IncidentsV1Api.md#incidents_v1_list) | **GET** /v1/incidents | List Incidents V1
|
|
344
|
-
*IncidentIoSdk::IncidentsV1Api* | [**incidents_v1_show**](docs/IncidentsV1Api.md#incidents_v1_show) | **GET** /v1/incidents/{id} | Show Incidents V1
|
|
345
|
-
*IncidentIoSdk::IncidentsV2Api* | [**incidents_v2_create**](docs/IncidentsV2Api.md#incidents_v2_create) | **POST** /v2/incidents | Create Incidents V2
|
|
346
|
-
*IncidentIoSdk::IncidentsV2Api* | [**incidents_v2_edit**](docs/IncidentsV2Api.md#incidents_v2_edit) | **POST** /v2/incidents/{id}/actions/edit | Edit Incidents V2
|
|
347
|
-
*IncidentIoSdk::IncidentsV2Api* | [**incidents_v2_list**](docs/IncidentsV2Api.md#incidents_v2_list) | **GET** /v2/incidents | List Incidents V2
|
|
348
|
-
*IncidentIoSdk::IncidentsV2Api* | [**incidents_v2_show**](docs/IncidentsV2Api.md#incidents_v2_show) | **GET** /v2/incidents/{id} | Show Incidents V2
|
|
349
|
-
*IncidentIoSdk::SchedulesV2Api* | [**schedules_v2_create**](docs/SchedulesV2Api.md#schedules_v2_create) | **POST** /v2/schedules | Create Schedules V2
|
|
350
|
-
*IncidentIoSdk::SchedulesV2Api* | [**schedules_v2_create_override**](docs/SchedulesV2Api.md#schedules_v2_create_override) | **POST** /v2/schedule_overrides | CreateOverride Schedules V2
|
|
351
|
-
*IncidentIoSdk::SchedulesV2Api* | [**schedules_v2_destroy**](docs/SchedulesV2Api.md#schedules_v2_destroy) | **DELETE** /v2/schedules/{id} | Destroy Schedules V2
|
|
352
|
-
*IncidentIoSdk::SchedulesV2Api* | [**schedules_v2_list**](docs/SchedulesV2Api.md#schedules_v2_list) | **GET** /v2/schedules | List Schedules V2
|
|
353
|
-
*IncidentIoSdk::SchedulesV2Api* | [**schedules_v2_list_schedule_entries**](docs/SchedulesV2Api.md#schedules_v2_list_schedule_entries) | **GET** /v2/schedule_entries | ListScheduleEntries Schedules V2
|
|
354
|
-
*IncidentIoSdk::SchedulesV2Api* | [**schedules_v2_show**](docs/SchedulesV2Api.md#schedules_v2_show) | **GET** /v2/schedules/{id} | Show Schedules V2
|
|
355
|
-
*IncidentIoSdk::SchedulesV2Api* | [**schedules_v2_update**](docs/SchedulesV2Api.md#schedules_v2_update) | **PUT** /v2/schedules/{id} | Update Schedules V2
|
|
356
|
-
*IncidentIoSdk::SeveritiesV1Api* | [**severities_v1_create**](docs/SeveritiesV1Api.md#severities_v1_create) | **POST** /v1/severities | Create Severities V1
|
|
357
|
-
*IncidentIoSdk::SeveritiesV1Api* | [**severities_v1_delete**](docs/SeveritiesV1Api.md#severities_v1_delete) | **DELETE** /v1/severities/{id} | Delete Severities V1
|
|
358
|
-
*IncidentIoSdk::SeveritiesV1Api* | [**severities_v1_list**](docs/SeveritiesV1Api.md#severities_v1_list) | **GET** /v1/severities | List Severities V1
|
|
359
|
-
*IncidentIoSdk::SeveritiesV1Api* | [**severities_v1_show**](docs/SeveritiesV1Api.md#severities_v1_show) | **GET** /v1/severities/{id} | Show Severities V1
|
|
360
|
-
*IncidentIoSdk::SeveritiesV1Api* | [**severities_v1_update**](docs/SeveritiesV1Api.md#severities_v1_update) | **PUT** /v1/severities/{id} | Update Severities V1
|
|
361
|
-
*IncidentIoSdk::UsersV2Api* | [**users_v2_list**](docs/UsersV2Api.md#users_v2_list) | **GET** /v2/users | List Users V2
|
|
362
|
-
*IncidentIoSdk::UsersV2Api* | [**users_v2_show**](docs/UsersV2Api.md#users_v2_show) | **GET** /v2/users/{id} | Show Users V2
|
|
363
|
-
*IncidentIoSdk::UtilitiesV1Api* | [**utilities_v1_identity**](docs/UtilitiesV1Api.md#utilities_v1_identity) | **GET** /v1/identity | Identity Utilities V1
|
|
364
|
-
*IncidentIoSdk::UtilitiesV1Api* | [**utilities_v1_open_api**](docs/UtilitiesV1Api.md#utilities_v1_open_api) | **GET** /v1/openapi.json | OpenAPI Utilities V1
|
|
365
|
-
*IncidentIoSdk::UtilitiesV1Api* | [**utilities_v1_open_apiv3**](docs/UtilitiesV1Api.md#utilities_v1_open_apiv3) | **GET** /v1/openapiV3.json | OpenAPIV3 Utilities V1
|
|
366
|
-
*IncidentIoSdk::WorkflowsV2Api* | [**workflows_v2_create_workflow**](docs/WorkflowsV2Api.md#workflows_v2_create_workflow) | **POST** /v2/workflows | CreateWorkflow Workflows V2
|
|
367
|
-
*IncidentIoSdk::WorkflowsV2Api* | [**workflows_v2_destroy_workflow**](docs/WorkflowsV2Api.md#workflows_v2_destroy_workflow) | **DELETE** /v2/workflows/{id} | DestroyWorkflow Workflows V2
|
|
368
|
-
*IncidentIoSdk::WorkflowsV2Api* | [**workflows_v2_list_workflows**](docs/WorkflowsV2Api.md#workflows_v2_list_workflows) | **GET** /v2/workflows | ListWorkflows Workflows V2
|
|
369
|
-
*IncidentIoSdk::WorkflowsV2Api* | [**workflows_v2_show_workflow**](docs/WorkflowsV2Api.md#workflows_v2_show_workflow) | **GET** /v2/workflows/{id} | ShowWorkflow Workflows V2
|
|
370
|
-
*IncidentIoSdk::WorkflowsV2Api* | [**workflows_v2_update_workflow**](docs/WorkflowsV2Api.md#workflows_v2_update_workflow) | **PUT** /v2/workflows/{id} | UpdateWorkflow Workflows V2
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
## Documentation for Models
|
|
374
|
-
|
|
375
|
-
- [IncidentIoSdk::APIKeyV1](docs/APIKeyV1.md)
|
|
376
|
-
- [IncidentIoSdk::APIKeyV2](docs/APIKeyV2.md)
|
|
377
|
-
- [IncidentIoSdk::ActionV1](docs/ActionV1.md)
|
|
378
|
-
- [IncidentIoSdk::ActionV2](docs/ActionV2.md)
|
|
379
|
-
- [IncidentIoSdk::ActionsListResultV1](docs/ActionsListResultV1.md)
|
|
380
|
-
- [IncidentIoSdk::ActionsListResultV2](docs/ActionsListResultV2.md)
|
|
381
|
-
- [IncidentIoSdk::ActionsShowResultV1](docs/ActionsShowResultV1.md)
|
|
382
|
-
- [IncidentIoSdk::ActionsShowResultV2](docs/ActionsShowResultV2.md)
|
|
383
|
-
- [IncidentIoSdk::ActorV1](docs/ActorV1.md)
|
|
384
|
-
- [IncidentIoSdk::ActorV2](docs/ActorV2.md)
|
|
385
|
-
- [IncidentIoSdk::AfterPaginationMetaResultV2](docs/AfterPaginationMetaResultV2.md)
|
|
386
|
-
- [IncidentIoSdk::AlertAttributeCatalogEntryV2](docs/AlertAttributeCatalogEntryV2.md)
|
|
387
|
-
- [IncidentIoSdk::AlertAttributeEntryV2](docs/AlertAttributeEntryV2.md)
|
|
388
|
-
- [IncidentIoSdk::AlertAttributeV2](docs/AlertAttributeV2.md)
|
|
389
|
-
- [IncidentIoSdk::AlertAttributeValueV2](docs/AlertAttributeValueV2.md)
|
|
390
|
-
- [IncidentIoSdk::AlertAttributesCreatePayloadV2](docs/AlertAttributesCreatePayloadV2.md)
|
|
391
|
-
- [IncidentIoSdk::AlertAttributesCreateResultV2](docs/AlertAttributesCreateResultV2.md)
|
|
392
|
-
- [IncidentIoSdk::AlertAttributesListResultV2](docs/AlertAttributesListResultV2.md)
|
|
393
|
-
- [IncidentIoSdk::AlertAttributesShowResultV2](docs/AlertAttributesShowResultV2.md)
|
|
394
|
-
- [IncidentIoSdk::AlertAttributesUpdatePayloadV2](docs/AlertAttributesUpdatePayloadV2.md)
|
|
395
|
-
- [IncidentIoSdk::AlertAttributesUpdateResultV2](docs/AlertAttributesUpdateResultV2.md)
|
|
396
|
-
- [IncidentIoSdk::AlertEventsCreateHTTPPayloadV2](docs/AlertEventsCreateHTTPPayloadV2.md)
|
|
397
|
-
- [IncidentIoSdk::AlertEventsCreateHTTPResultV2](docs/AlertEventsCreateHTTPResultV2.md)
|
|
398
|
-
- [IncidentIoSdk::AlertRouteAlertSourcePayloadV2](docs/AlertRouteAlertSourcePayloadV2.md)
|
|
399
|
-
- [IncidentIoSdk::AlertRouteAlertSourceV2](docs/AlertRouteAlertSourceV2.md)
|
|
400
|
-
- [IncidentIoSdk::AlertRouteAutoGeneratedTemplateBindingPayloadV2](docs/AlertRouteAutoGeneratedTemplateBindingPayloadV2.md)
|
|
401
|
-
- [IncidentIoSdk::AlertRouteAutoGeneratedTemplateBindingV2](docs/AlertRouteAutoGeneratedTemplateBindingV2.md)
|
|
402
|
-
- [IncidentIoSdk::AlertRouteChannelConfigPayloadV2](docs/AlertRouteChannelConfigPayloadV2.md)
|
|
403
|
-
- [IncidentIoSdk::AlertRouteChannelConfigV2](docs/AlertRouteChannelConfigV2.md)
|
|
404
|
-
- [IncidentIoSdk::AlertRouteChannelTargetPayloadV2](docs/AlertRouteChannelTargetPayloadV2.md)
|
|
405
|
-
- [IncidentIoSdk::AlertRouteChannelTargetV2](docs/AlertRouteChannelTargetV2.md)
|
|
406
|
-
- [IncidentIoSdk::AlertRouteCustomFieldBindingPayloadV2](docs/AlertRouteCustomFieldBindingPayloadV2.md)
|
|
407
|
-
- [IncidentIoSdk::AlertRouteCustomFieldBindingV2](docs/AlertRouteCustomFieldBindingV2.md)
|
|
408
|
-
- [IncidentIoSdk::AlertRouteEscalationConfigPayloadV2](docs/AlertRouteEscalationConfigPayloadV2.md)
|
|
409
|
-
- [IncidentIoSdk::AlertRouteEscalationConfigV2](docs/AlertRouteEscalationConfigV2.md)
|
|
410
|
-
- [IncidentIoSdk::AlertRouteEscalationTargetPayloadV2](docs/AlertRouteEscalationTargetPayloadV2.md)
|
|
411
|
-
- [IncidentIoSdk::AlertRouteEscalationTargetV2](docs/AlertRouteEscalationTargetV2.md)
|
|
412
|
-
- [IncidentIoSdk::AlertRouteIncidentConfigPayloadV2](docs/AlertRouteIncidentConfigPayloadV2.md)
|
|
413
|
-
- [IncidentIoSdk::AlertRouteIncidentConfigV2](docs/AlertRouteIncidentConfigV2.md)
|
|
414
|
-
- [IncidentIoSdk::AlertRouteIncidentTemplatePayloadV2](docs/AlertRouteIncidentTemplatePayloadV2.md)
|
|
415
|
-
- [IncidentIoSdk::AlertRouteIncidentTemplateV2](docs/AlertRouteIncidentTemplateV2.md)
|
|
416
|
-
- [IncidentIoSdk::AlertRouteSeverityBindingPayloadV2](docs/AlertRouteSeverityBindingPayloadV2.md)
|
|
417
|
-
- [IncidentIoSdk::AlertRouteSeverityBindingV2](docs/AlertRouteSeverityBindingV2.md)
|
|
418
|
-
- [IncidentIoSdk::AlertRouteSlimV2](docs/AlertRouteSlimV2.md)
|
|
419
|
-
- [IncidentIoSdk::AlertRouteTemplateBindingPayloadV2](docs/AlertRouteTemplateBindingPayloadV2.md)
|
|
420
|
-
- [IncidentIoSdk::AlertRouteTemplateBindingV2](docs/AlertRouteTemplateBindingV2.md)
|
|
421
|
-
- [IncidentIoSdk::AlertRouteV2](docs/AlertRouteV2.md)
|
|
422
|
-
- [IncidentIoSdk::AlertRoutesCreatePayloadV2](docs/AlertRoutesCreatePayloadV2.md)
|
|
423
|
-
- [IncidentIoSdk::AlertRoutesCreateResultV2](docs/AlertRoutesCreateResultV2.md)
|
|
424
|
-
- [IncidentIoSdk::AlertRoutesListResultV2](docs/AlertRoutesListResultV2.md)
|
|
425
|
-
- [IncidentIoSdk::AlertRoutesShowResultV2](docs/AlertRoutesShowResultV2.md)
|
|
426
|
-
- [IncidentIoSdk::AlertRoutesUpdatePayloadV2](docs/AlertRoutesUpdatePayloadV2.md)
|
|
427
|
-
- [IncidentIoSdk::AlertRoutesUpdateResultV2](docs/AlertRoutesUpdateResultV2.md)
|
|
428
|
-
- [IncidentIoSdk::AlertSlimV2](docs/AlertSlimV2.md)
|
|
429
|
-
- [IncidentIoSdk::AlertSourceEmailOptionsV2](docs/AlertSourceEmailOptionsV2.md)
|
|
430
|
-
- [IncidentIoSdk::AlertSourceJiraOptionsV2](docs/AlertSourceJiraOptionsV2.md)
|
|
431
|
-
- [IncidentIoSdk::AlertSourceV2](docs/AlertSourceV2.md)
|
|
432
|
-
- [IncidentIoSdk::AlertSourcesCreatePayloadV2](docs/AlertSourcesCreatePayloadV2.md)
|
|
433
|
-
- [IncidentIoSdk::AlertSourcesCreateResultV2](docs/AlertSourcesCreateResultV2.md)
|
|
434
|
-
- [IncidentIoSdk::AlertSourcesListResultV2](docs/AlertSourcesListResultV2.md)
|
|
435
|
-
- [IncidentIoSdk::AlertSourcesShowResultV2](docs/AlertSourcesShowResultV2.md)
|
|
436
|
-
- [IncidentIoSdk::AlertSourcesUpdatePayloadV2](docs/AlertSourcesUpdatePayloadV2.md)
|
|
437
|
-
- [IncidentIoSdk::AlertSourcesUpdateResultV2](docs/AlertSourcesUpdateResultV2.md)
|
|
438
|
-
- [IncidentIoSdk::AlertTemplateAttributePayloadV2](docs/AlertTemplateAttributePayloadV2.md)
|
|
439
|
-
- [IncidentIoSdk::AlertTemplateAttributeV2](docs/AlertTemplateAttributeV2.md)
|
|
440
|
-
- [IncidentIoSdk::AlertTemplatePayloadV2](docs/AlertTemplatePayloadV2.md)
|
|
441
|
-
- [IncidentIoSdk::AlertTemplateV2](docs/AlertTemplateV2.md)
|
|
442
|
-
- [IncidentIoSdk::AlertV2](docs/AlertV2.md)
|
|
443
|
-
- [IncidentIoSdk::AlertsListIncidentAlertsResultV2](docs/AlertsListIncidentAlertsResultV2.md)
|
|
444
|
-
- [IncidentIoSdk::AlertsListResultV2](docs/AlertsListResultV2.md)
|
|
445
|
-
- [IncidentIoSdk::AlertsShowResultV2](docs/AlertsShowResultV2.md)
|
|
446
|
-
- [IncidentIoSdk::AuditLogActorMetadataV2](docs/AuditLogActorMetadataV2.md)
|
|
447
|
-
- [IncidentIoSdk::AuditLogActorV2](docs/AuditLogActorV2.md)
|
|
448
|
-
- [IncidentIoSdk::AuditLogEntryContextV2](docs/AuditLogEntryContextV2.md)
|
|
449
|
-
- [IncidentIoSdk::AuditLogPrivateIncidentAccessAttemptedMetadataV2](docs/AuditLogPrivateIncidentAccessAttemptedMetadataV2.md)
|
|
450
|
-
- [IncidentIoSdk::AuditLogTargetV2](docs/AuditLogTargetV2.md)
|
|
451
|
-
- [IncidentIoSdk::AuditLogUserRoleMembershipChangedMetadataV2](docs/AuditLogUserRoleMembershipChangedMetadataV2.md)
|
|
452
|
-
- [IncidentIoSdk::AuditLogUserSCIMGroupMappingChangedMetadataV2](docs/AuditLogUserSCIMGroupMappingChangedMetadataV2.md)
|
|
453
|
-
- [IncidentIoSdk::AuditLogsAPIKeyCreatedV1](docs/AuditLogsAPIKeyCreatedV1.md)
|
|
454
|
-
- [IncidentIoSdk::AuditLogsAPIKeyDeletedV1](docs/AuditLogsAPIKeyDeletedV1.md)
|
|
455
|
-
- [IncidentIoSdk::AuditLogsAlertRouteCreatedV1](docs/AuditLogsAlertRouteCreatedV1.md)
|
|
456
|
-
- [IncidentIoSdk::AuditLogsAlertRouteDeletedV1](docs/AuditLogsAlertRouteDeletedV1.md)
|
|
457
|
-
- [IncidentIoSdk::AuditLogsAlertRouteUpdatedV1](docs/AuditLogsAlertRouteUpdatedV1.md)
|
|
458
|
-
- [IncidentIoSdk::AuditLogsAlertSchemaUpdatedV1](docs/AuditLogsAlertSchemaUpdatedV1.md)
|
|
459
|
-
- [IncidentIoSdk::AuditLogsAlertSourceConfigCreatedV1](docs/AuditLogsAlertSourceConfigCreatedV1.md)
|
|
460
|
-
- [IncidentIoSdk::AuditLogsAlertSourceConfigDeletedV1](docs/AuditLogsAlertSourceConfigDeletedV1.md)
|
|
461
|
-
- [IncidentIoSdk::AuditLogsAlertSourceConfigUpdatedV1](docs/AuditLogsAlertSourceConfigUpdatedV1.md)
|
|
462
|
-
- [IncidentIoSdk::AuditLogsAnnouncementRuleCreatedV1](docs/AuditLogsAnnouncementRuleCreatedV1.md)
|
|
463
|
-
- [IncidentIoSdk::AuditLogsAnnouncementRuleDeletedV1](docs/AuditLogsAnnouncementRuleDeletedV1.md)
|
|
464
|
-
- [IncidentIoSdk::AuditLogsAnnouncementRuleUpdatedV1](docs/AuditLogsAnnouncementRuleUpdatedV1.md)
|
|
465
|
-
- [IncidentIoSdk::AuditLogsCatalogTypeCreatedV1](docs/AuditLogsCatalogTypeCreatedV1.md)
|
|
466
|
-
- [IncidentIoSdk::AuditLogsCatalogTypeDeletedV1](docs/AuditLogsCatalogTypeDeletedV1.md)
|
|
467
|
-
- [IncidentIoSdk::AuditLogsCatalogTypeUpdatedV1](docs/AuditLogsCatalogTypeUpdatedV1.md)
|
|
468
|
-
- [IncidentIoSdk::AuditLogsCustomFieldCreatedV1](docs/AuditLogsCustomFieldCreatedV1.md)
|
|
469
|
-
- [IncidentIoSdk::AuditLogsCustomFieldDeletedV1](docs/AuditLogsCustomFieldDeletedV1.md)
|
|
470
|
-
- [IncidentIoSdk::AuditLogsCustomFieldUpdatedV1](docs/AuditLogsCustomFieldUpdatedV1.md)
|
|
471
|
-
- [IncidentIoSdk::AuditLogsDebriefInviteRuleCreatedV1](docs/AuditLogsDebriefInviteRuleCreatedV1.md)
|
|
472
|
-
- [IncidentIoSdk::AuditLogsDebriefInviteRuleDeletedV1](docs/AuditLogsDebriefInviteRuleDeletedV1.md)
|
|
473
|
-
- [IncidentIoSdk::AuditLogsDebriefInviteRuleUpdatedV1](docs/AuditLogsDebriefInviteRuleUpdatedV1.md)
|
|
474
|
-
- [IncidentIoSdk::AuditLogsEscalationPathCreatedV1](docs/AuditLogsEscalationPathCreatedV1.md)
|
|
475
|
-
- [IncidentIoSdk::AuditLogsEscalationPathDeletedV1](docs/AuditLogsEscalationPathDeletedV1.md)
|
|
476
|
-
- [IncidentIoSdk::AuditLogsEscalationPathUpdatedV1](docs/AuditLogsEscalationPathUpdatedV1.md)
|
|
477
|
-
- [IncidentIoSdk::AuditLogsFollowUpPriorityCreatedV1](docs/AuditLogsFollowUpPriorityCreatedV1.md)
|
|
478
|
-
- [IncidentIoSdk::AuditLogsFollowUpPriorityDeletedV1](docs/AuditLogsFollowUpPriorityDeletedV1.md)
|
|
479
|
-
- [IncidentIoSdk::AuditLogsFollowUpPriorityUpdatedV1](docs/AuditLogsFollowUpPriorityUpdatedV1.md)
|
|
480
|
-
- [IncidentIoSdk::AuditLogsHolidayUserFeedCreatedV1](docs/AuditLogsHolidayUserFeedCreatedV1.md)
|
|
481
|
-
- [IncidentIoSdk::AuditLogsHolidayUserFeedDeletedV1](docs/AuditLogsHolidayUserFeedDeletedV1.md)
|
|
482
|
-
- [IncidentIoSdk::AuditLogsHolidayUserFeedUpdatedV1](docs/AuditLogsHolidayUserFeedUpdatedV1.md)
|
|
483
|
-
- [IncidentIoSdk::AuditLogsIncidentCallSettingUpdatedV1](docs/AuditLogsIncidentCallSettingUpdatedV1.md)
|
|
484
|
-
- [IncidentIoSdk::AuditLogsIncidentDurationMetricCreatedV1](docs/AuditLogsIncidentDurationMetricCreatedV1.md)
|
|
485
|
-
- [IncidentIoSdk::AuditLogsIncidentDurationMetricDeletedV1](docs/AuditLogsIncidentDurationMetricDeletedV1.md)
|
|
486
|
-
- [IncidentIoSdk::AuditLogsIncidentDurationMetricUpdatedV1](docs/AuditLogsIncidentDurationMetricUpdatedV1.md)
|
|
487
|
-
- [IncidentIoSdk::AuditLogsIncidentRoleCreatedV1](docs/AuditLogsIncidentRoleCreatedV1.md)
|
|
488
|
-
- [IncidentIoSdk::AuditLogsIncidentRoleDeletedV1](docs/AuditLogsIncidentRoleDeletedV1.md)
|
|
489
|
-
- [IncidentIoSdk::AuditLogsIncidentRoleUpdatedV1](docs/AuditLogsIncidentRoleUpdatedV1.md)
|
|
490
|
-
- [IncidentIoSdk::AuditLogsIncidentStatusCreatedV1](docs/AuditLogsIncidentStatusCreatedV1.md)
|
|
491
|
-
- [IncidentIoSdk::AuditLogsIncidentStatusDeletedV1](docs/AuditLogsIncidentStatusDeletedV1.md)
|
|
492
|
-
- [IncidentIoSdk::AuditLogsIncidentStatusUpdatedV1](docs/AuditLogsIncidentStatusUpdatedV1.md)
|
|
493
|
-
- [IncidentIoSdk::AuditLogsIncidentTimestampCreatedV1](docs/AuditLogsIncidentTimestampCreatedV1.md)
|
|
494
|
-
- [IncidentIoSdk::AuditLogsIncidentTimestampDeletedV1](docs/AuditLogsIncidentTimestampDeletedV1.md)
|
|
495
|
-
- [IncidentIoSdk::AuditLogsIncidentTimestampUpdatedV1](docs/AuditLogsIncidentTimestampUpdatedV1.md)
|
|
496
|
-
- [IncidentIoSdk::AuditLogsIncidentTypeCreatedV1](docs/AuditLogsIncidentTypeCreatedV1.md)
|
|
497
|
-
- [IncidentIoSdk::AuditLogsIncidentTypeDeletedV1](docs/AuditLogsIncidentTypeDeletedV1.md)
|
|
498
|
-
- [IncidentIoSdk::AuditLogsIncidentTypeUpdatedV1](docs/AuditLogsIncidentTypeUpdatedV1.md)
|
|
499
|
-
- [IncidentIoSdk::AuditLogsIntegrationInstalledV1](docs/AuditLogsIntegrationInstalledV1.md)
|
|
500
|
-
- [IncidentIoSdk::AuditLogsIntegrationUninstalledV1](docs/AuditLogsIntegrationUninstalledV1.md)
|
|
501
|
-
- [IncidentIoSdk::AuditLogsInternalStatusPageCreatedV1](docs/AuditLogsInternalStatusPageCreatedV1.md)
|
|
502
|
-
- [IncidentIoSdk::AuditLogsInternalStatusPageDeletedV1](docs/AuditLogsInternalStatusPageDeletedV1.md)
|
|
503
|
-
- [IncidentIoSdk::AuditLogsInternalStatusPageUpdatedV1](docs/AuditLogsInternalStatusPageUpdatedV1.md)
|
|
504
|
-
- [IncidentIoSdk::AuditLogsNudgeCreatedV1](docs/AuditLogsNudgeCreatedV1.md)
|
|
505
|
-
- [IncidentIoSdk::AuditLogsNudgeDeletedV1](docs/AuditLogsNudgeDeletedV1.md)
|
|
506
|
-
- [IncidentIoSdk::AuditLogsNudgeUpdatedV1](docs/AuditLogsNudgeUpdatedV1.md)
|
|
507
|
-
- [IncidentIoSdk::AuditLogsPolicyCreatedV1](docs/AuditLogsPolicyCreatedV1.md)
|
|
508
|
-
- [IncidentIoSdk::AuditLogsPolicyDeletedV1](docs/AuditLogsPolicyDeletedV1.md)
|
|
509
|
-
- [IncidentIoSdk::AuditLogsPolicyUpdatedV1](docs/AuditLogsPolicyUpdatedV1.md)
|
|
510
|
-
- [IncidentIoSdk::AuditLogsPostIncidentTaskCreatedV1](docs/AuditLogsPostIncidentTaskCreatedV1.md)
|
|
511
|
-
- [IncidentIoSdk::AuditLogsPostIncidentTaskDeletedV1](docs/AuditLogsPostIncidentTaskDeletedV1.md)
|
|
512
|
-
- [IncidentIoSdk::AuditLogsPostIncidentTaskUpdatedV1](docs/AuditLogsPostIncidentTaskUpdatedV1.md)
|
|
513
|
-
- [IncidentIoSdk::AuditLogsPostmortemSectionCreatedV1](docs/AuditLogsPostmortemSectionCreatedV1.md)
|
|
514
|
-
- [IncidentIoSdk::AuditLogsPostmortemSectionCreatedV2](docs/AuditLogsPostmortemSectionCreatedV2.md)
|
|
515
|
-
- [IncidentIoSdk::AuditLogsPostmortemSectionDeletedV1](docs/AuditLogsPostmortemSectionDeletedV1.md)
|
|
516
|
-
- [IncidentIoSdk::AuditLogsPostmortemSectionDeletedV2](docs/AuditLogsPostmortemSectionDeletedV2.md)
|
|
517
|
-
- [IncidentIoSdk::AuditLogsPostmortemSectionUpdatedV1](docs/AuditLogsPostmortemSectionUpdatedV1.md)
|
|
518
|
-
- [IncidentIoSdk::AuditLogsPostmortemSectionUpdatedV2](docs/AuditLogsPostmortemSectionUpdatedV2.md)
|
|
519
|
-
- [IncidentIoSdk::AuditLogsPostmortemTemplateCreatedV1](docs/AuditLogsPostmortemTemplateCreatedV1.md)
|
|
520
|
-
- [IncidentIoSdk::AuditLogsPostmortemTemplateCreatedV2](docs/AuditLogsPostmortemTemplateCreatedV2.md)
|
|
521
|
-
- [IncidentIoSdk::AuditLogsPostmortemTemplateDeletedV1](docs/AuditLogsPostmortemTemplateDeletedV1.md)
|
|
522
|
-
- [IncidentIoSdk::AuditLogsPostmortemTemplateDeletedV2](docs/AuditLogsPostmortemTemplateDeletedV2.md)
|
|
523
|
-
- [IncidentIoSdk::AuditLogsPostmortemTemplateUpdatedV1](docs/AuditLogsPostmortemTemplateUpdatedV1.md)
|
|
524
|
-
- [IncidentIoSdk::AuditLogsPostmortemTemplateUpdatedV2](docs/AuditLogsPostmortemTemplateUpdatedV2.md)
|
|
525
|
-
- [IncidentIoSdk::AuditLogsPrivateIncidentAccessAttemptedV1](docs/AuditLogsPrivateIncidentAccessAttemptedV1.md)
|
|
526
|
-
- [IncidentIoSdk::AuditLogsPrivateIncidentAccessRequestedV1](docs/AuditLogsPrivateIncidentAccessRequestedV1.md)
|
|
527
|
-
- [IncidentIoSdk::AuditLogsPrivateIncidentMembershipGrantedV1](docs/AuditLogsPrivateIncidentMembershipGrantedV1.md)
|
|
528
|
-
- [IncidentIoSdk::AuditLogsPrivateIncidentMembershipRevokedV1](docs/AuditLogsPrivateIncidentMembershipRevokedV1.md)
|
|
529
|
-
- [IncidentIoSdk::AuditLogsRbacRoleCreatedV1](docs/AuditLogsRbacRoleCreatedV1.md)
|
|
530
|
-
- [IncidentIoSdk::AuditLogsRbacRoleDeletedV1](docs/AuditLogsRbacRoleDeletedV1.md)
|
|
531
|
-
- [IncidentIoSdk::AuditLogsRbacRoleUpdatedV1](docs/AuditLogsRbacRoleUpdatedV1.md)
|
|
532
|
-
- [IncidentIoSdk::AuditLogsScheduleCreatedV1](docs/AuditLogsScheduleCreatedV1.md)
|
|
533
|
-
- [IncidentIoSdk::AuditLogsScheduleDeletedV1](docs/AuditLogsScheduleDeletedV1.md)
|
|
534
|
-
- [IncidentIoSdk::AuditLogsScheduleOverrideCreatedV1](docs/AuditLogsScheduleOverrideCreatedV1.md)
|
|
535
|
-
- [IncidentIoSdk::AuditLogsScheduleOverrideDeletedV1](docs/AuditLogsScheduleOverrideDeletedV1.md)
|
|
536
|
-
- [IncidentIoSdk::AuditLogsScheduleOverrideUpdatedV1](docs/AuditLogsScheduleOverrideUpdatedV1.md)
|
|
537
|
-
- [IncidentIoSdk::AuditLogsScheduleUpdatedV1](docs/AuditLogsScheduleUpdatedV1.md)
|
|
538
|
-
- [IncidentIoSdk::AuditLogsScimGroupRoleMappingsUpdatedV1](docs/AuditLogsScimGroupRoleMappingsUpdatedV1.md)
|
|
539
|
-
- [IncidentIoSdk::AuditLogsSeverityCreatedV1](docs/AuditLogsSeverityCreatedV1.md)
|
|
540
|
-
- [IncidentIoSdk::AuditLogsSeverityDeletedV1](docs/AuditLogsSeverityDeletedV1.md)
|
|
541
|
-
- [IncidentIoSdk::AuditLogsSeverityUpdatedV1](docs/AuditLogsSeverityUpdatedV1.md)
|
|
542
|
-
- [IncidentIoSdk::AuditLogsStatusPageCreatedV1](docs/AuditLogsStatusPageCreatedV1.md)
|
|
543
|
-
- [IncidentIoSdk::AuditLogsStatusPageDeletedV1](docs/AuditLogsStatusPageDeletedV1.md)
|
|
544
|
-
- [IncidentIoSdk::AuditLogsStatusPageSubPageCreatedV1](docs/AuditLogsStatusPageSubPageCreatedV1.md)
|
|
545
|
-
- [IncidentIoSdk::AuditLogsStatusPageSubPageDeletedV1](docs/AuditLogsStatusPageSubPageDeletedV1.md)
|
|
546
|
-
- [IncidentIoSdk::AuditLogsStatusPageSubPageUpdatedV1](docs/AuditLogsStatusPageSubPageUpdatedV1.md)
|
|
547
|
-
- [IncidentIoSdk::AuditLogsStatusPageTemplateCreatedV1](docs/AuditLogsStatusPageTemplateCreatedV1.md)
|
|
548
|
-
- [IncidentIoSdk::AuditLogsStatusPageTemplateDeletedV1](docs/AuditLogsStatusPageTemplateDeletedV1.md)
|
|
549
|
-
- [IncidentIoSdk::AuditLogsStatusPageTemplateUpdatedV1](docs/AuditLogsStatusPageTemplateUpdatedV1.md)
|
|
550
|
-
- [IncidentIoSdk::AuditLogsStatusPageUpdatedV1](docs/AuditLogsStatusPageUpdatedV1.md)
|
|
551
|
-
- [IncidentIoSdk::AuditLogsUserCreatedV1](docs/AuditLogsUserCreatedV1.md)
|
|
552
|
-
- [IncidentIoSdk::AuditLogsUserDeactivatedV1](docs/AuditLogsUserDeactivatedV1.md)
|
|
553
|
-
- [IncidentIoSdk::AuditLogsUserReinstatedV1](docs/AuditLogsUserReinstatedV1.md)
|
|
554
|
-
- [IncidentIoSdk::AuditLogsUserRoleMembershipsUpdatedV1](docs/AuditLogsUserRoleMembershipsUpdatedV1.md)
|
|
555
|
-
- [IncidentIoSdk::AuditLogsUserUpdatedV1](docs/AuditLogsUserUpdatedV1.md)
|
|
556
|
-
- [IncidentIoSdk::AuditLogsWorkflowCreatedV1](docs/AuditLogsWorkflowCreatedV1.md)
|
|
557
|
-
- [IncidentIoSdk::AuditLogsWorkflowDeletedV1](docs/AuditLogsWorkflowDeletedV1.md)
|
|
558
|
-
- [IncidentIoSdk::AuditLogsWorkflowUpdatedV1](docs/AuditLogsWorkflowUpdatedV1.md)
|
|
559
|
-
- [IncidentIoSdk::CatalogCreateEntryPayloadV2](docs/CatalogCreateEntryPayloadV2.md)
|
|
560
|
-
- [IncidentIoSdk::CatalogCreateEntryPayloadV3](docs/CatalogCreateEntryPayloadV3.md)
|
|
561
|
-
- [IncidentIoSdk::CatalogCreateEntryResultV2](docs/CatalogCreateEntryResultV2.md)
|
|
562
|
-
- [IncidentIoSdk::CatalogCreateEntryResultV3](docs/CatalogCreateEntryResultV3.md)
|
|
563
|
-
- [IncidentIoSdk::CatalogCreateTypePayloadV2](docs/CatalogCreateTypePayloadV2.md)
|
|
564
|
-
- [IncidentIoSdk::CatalogCreateTypePayloadV3](docs/CatalogCreateTypePayloadV3.md)
|
|
565
|
-
- [IncidentIoSdk::CatalogCreateTypeResultV2](docs/CatalogCreateTypeResultV2.md)
|
|
566
|
-
- [IncidentIoSdk::CatalogCreateTypeResultV3](docs/CatalogCreateTypeResultV3.md)
|
|
567
|
-
- [IncidentIoSdk::CatalogEngineParamBindingPayloadV3](docs/CatalogEngineParamBindingPayloadV3.md)
|
|
568
|
-
- [IncidentIoSdk::CatalogEngineParamBindingValuePayloadV3](docs/CatalogEngineParamBindingValuePayloadV3.md)
|
|
569
|
-
- [IncidentIoSdk::CatalogEntryEngineParamBindingV2](docs/CatalogEntryEngineParamBindingV2.md)
|
|
570
|
-
- [IncidentIoSdk::CatalogEntryEngineParamBindingV3](docs/CatalogEntryEngineParamBindingV3.md)
|
|
571
|
-
- [IncidentIoSdk::CatalogEntryEngineParamBindingValueV2](docs/CatalogEntryEngineParamBindingValueV2.md)
|
|
572
|
-
- [IncidentIoSdk::CatalogEntryEngineParamBindingValueV3](docs/CatalogEntryEngineParamBindingValueV3.md)
|
|
573
|
-
- [IncidentIoSdk::CatalogEntryReferenceV2](docs/CatalogEntryReferenceV2.md)
|
|
574
|
-
- [IncidentIoSdk::CatalogEntryV2](docs/CatalogEntryV2.md)
|
|
575
|
-
- [IncidentIoSdk::CatalogEntryV3](docs/CatalogEntryV3.md)
|
|
576
|
-
- [IncidentIoSdk::CatalogListEntriesResultV2](docs/CatalogListEntriesResultV2.md)
|
|
577
|
-
- [IncidentIoSdk::CatalogListEntriesResultV3](docs/CatalogListEntriesResultV3.md)
|
|
578
|
-
- [IncidentIoSdk::CatalogListResourcesResultV2](docs/CatalogListResourcesResultV2.md)
|
|
579
|
-
- [IncidentIoSdk::CatalogListResourcesResultV3](docs/CatalogListResourcesResultV3.md)
|
|
580
|
-
- [IncidentIoSdk::CatalogListTypesResultV2](docs/CatalogListTypesResultV2.md)
|
|
581
|
-
- [IncidentIoSdk::CatalogListTypesResultV3](docs/CatalogListTypesResultV3.md)
|
|
582
|
-
- [IncidentIoSdk::CatalogResourceV2](docs/CatalogResourceV2.md)
|
|
583
|
-
- [IncidentIoSdk::CatalogResourceV3](docs/CatalogResourceV3.md)
|
|
584
|
-
- [IncidentIoSdk::CatalogShowEntryResultV2](docs/CatalogShowEntryResultV2.md)
|
|
585
|
-
- [IncidentIoSdk::CatalogShowEntryResultV3](docs/CatalogShowEntryResultV3.md)
|
|
586
|
-
- [IncidentIoSdk::CatalogShowTypeResultV2](docs/CatalogShowTypeResultV2.md)
|
|
587
|
-
- [IncidentIoSdk::CatalogShowTypeResultV3](docs/CatalogShowTypeResultV3.md)
|
|
588
|
-
- [IncidentIoSdk::CatalogTypeAttributePathItemPayloadV2](docs/CatalogTypeAttributePathItemPayloadV2.md)
|
|
589
|
-
- [IncidentIoSdk::CatalogTypeAttributePathItemPayloadV3](docs/CatalogTypeAttributePathItemPayloadV3.md)
|
|
590
|
-
- [IncidentIoSdk::CatalogTypeAttributePathItemV2](docs/CatalogTypeAttributePathItemV2.md)
|
|
591
|
-
- [IncidentIoSdk::CatalogTypeAttributePathItemV3](docs/CatalogTypeAttributePathItemV3.md)
|
|
592
|
-
- [IncidentIoSdk::CatalogTypeAttributePayloadV2](docs/CatalogTypeAttributePayloadV2.md)
|
|
593
|
-
- [IncidentIoSdk::CatalogTypeAttributePayloadV3](docs/CatalogTypeAttributePayloadV3.md)
|
|
594
|
-
- [IncidentIoSdk::CatalogTypeAttributeV2](docs/CatalogTypeAttributeV2.md)
|
|
595
|
-
- [IncidentIoSdk::CatalogTypeAttributeV3](docs/CatalogTypeAttributeV3.md)
|
|
596
|
-
- [IncidentIoSdk::CatalogTypeSchemaV2](docs/CatalogTypeSchemaV2.md)
|
|
597
|
-
- [IncidentIoSdk::CatalogTypeSchemaV3](docs/CatalogTypeSchemaV3.md)
|
|
598
|
-
- [IncidentIoSdk::CatalogTypeV2](docs/CatalogTypeV2.md)
|
|
599
|
-
- [IncidentIoSdk::CatalogTypeV3](docs/CatalogTypeV3.md)
|
|
600
|
-
- [IncidentIoSdk::CatalogUpdateEntryPayloadV2](docs/CatalogUpdateEntryPayloadV2.md)
|
|
601
|
-
- [IncidentIoSdk::CatalogUpdateEntryPayloadV3](docs/CatalogUpdateEntryPayloadV3.md)
|
|
602
|
-
- [IncidentIoSdk::CatalogUpdateEntryResultV2](docs/CatalogUpdateEntryResultV2.md)
|
|
603
|
-
- [IncidentIoSdk::CatalogUpdateEntryResultV3](docs/CatalogUpdateEntryResultV3.md)
|
|
604
|
-
- [IncidentIoSdk::CatalogUpdateTypePayloadV2](docs/CatalogUpdateTypePayloadV2.md)
|
|
605
|
-
- [IncidentIoSdk::CatalogUpdateTypePayloadV3](docs/CatalogUpdateTypePayloadV3.md)
|
|
606
|
-
- [IncidentIoSdk::CatalogUpdateTypeResultV2](docs/CatalogUpdateTypeResultV2.md)
|
|
607
|
-
- [IncidentIoSdk::CatalogUpdateTypeResultV3](docs/CatalogUpdateTypeResultV3.md)
|
|
608
|
-
- [IncidentIoSdk::CatalogUpdateTypeSchemaPayloadV2](docs/CatalogUpdateTypeSchemaPayloadV2.md)
|
|
609
|
-
- [IncidentIoSdk::CatalogUpdateTypeSchemaPayloadV3](docs/CatalogUpdateTypeSchemaPayloadV3.md)
|
|
610
|
-
- [IncidentIoSdk::CatalogUpdateTypeSchemaResultV2](docs/CatalogUpdateTypeSchemaResultV2.md)
|
|
611
|
-
- [IncidentIoSdk::CatalogUpdateTypeSchemaResultV3](docs/CatalogUpdateTypeSchemaResultV3.md)
|
|
612
|
-
- [IncidentIoSdk::ConditionGroupPayloadV2](docs/ConditionGroupPayloadV2.md)
|
|
613
|
-
- [IncidentIoSdk::ConditionGroupV2](docs/ConditionGroupV2.md)
|
|
614
|
-
- [IncidentIoSdk::ConditionOperationV2](docs/ConditionOperationV2.md)
|
|
615
|
-
- [IncidentIoSdk::ConditionPayloadV2](docs/ConditionPayloadV2.md)
|
|
616
|
-
- [IncidentIoSdk::ConditionSubjectV2](docs/ConditionSubjectV2.md)
|
|
617
|
-
- [IncidentIoSdk::ConditionV2](docs/ConditionV2.md)
|
|
618
|
-
- [IncidentIoSdk::CustomFieldEntryPayloadV1](docs/CustomFieldEntryPayloadV1.md)
|
|
619
|
-
- [IncidentIoSdk::CustomFieldEntryPayloadV2](docs/CustomFieldEntryPayloadV2.md)
|
|
620
|
-
- [IncidentIoSdk::CustomFieldEntryV1](docs/CustomFieldEntryV1.md)
|
|
621
|
-
- [IncidentIoSdk::CustomFieldEntryV2](docs/CustomFieldEntryV2.md)
|
|
622
|
-
- [IncidentIoSdk::CustomFieldFilterByOptionsV2](docs/CustomFieldFilterByOptionsV2.md)
|
|
623
|
-
- [IncidentIoSdk::CustomFieldOptionV1](docs/CustomFieldOptionV1.md)
|
|
624
|
-
- [IncidentIoSdk::CustomFieldOptionV2](docs/CustomFieldOptionV2.md)
|
|
625
|
-
- [IncidentIoSdk::CustomFieldOptionsCreatePayloadV1](docs/CustomFieldOptionsCreatePayloadV1.md)
|
|
626
|
-
- [IncidentIoSdk::CustomFieldOptionsCreateResultV1](docs/CustomFieldOptionsCreateResultV1.md)
|
|
627
|
-
- [IncidentIoSdk::CustomFieldOptionsListResultV1](docs/CustomFieldOptionsListResultV1.md)
|
|
628
|
-
- [IncidentIoSdk::CustomFieldOptionsShowResultV1](docs/CustomFieldOptionsShowResultV1.md)
|
|
629
|
-
- [IncidentIoSdk::CustomFieldOptionsUpdatePayloadV1](docs/CustomFieldOptionsUpdatePayloadV1.md)
|
|
630
|
-
- [IncidentIoSdk::CustomFieldOptionsUpdateResultV1](docs/CustomFieldOptionsUpdateResultV1.md)
|
|
631
|
-
- [IncidentIoSdk::CustomFieldTypeInfoV1](docs/CustomFieldTypeInfoV1.md)
|
|
632
|
-
- [IncidentIoSdk::CustomFieldTypeInfoV2](docs/CustomFieldTypeInfoV2.md)
|
|
633
|
-
- [IncidentIoSdk::CustomFieldV1](docs/CustomFieldV1.md)
|
|
634
|
-
- [IncidentIoSdk::CustomFieldV2](docs/CustomFieldV2.md)
|
|
635
|
-
- [IncidentIoSdk::CustomFieldValuePayloadV1](docs/CustomFieldValuePayloadV1.md)
|
|
636
|
-
- [IncidentIoSdk::CustomFieldValuePayloadV2](docs/CustomFieldValuePayloadV2.md)
|
|
637
|
-
- [IncidentIoSdk::CustomFieldValueV1](docs/CustomFieldValueV1.md)
|
|
638
|
-
- [IncidentIoSdk::CustomFieldValueV2](docs/CustomFieldValueV2.md)
|
|
639
|
-
- [IncidentIoSdk::CustomFieldsCreatePayloadV1](docs/CustomFieldsCreatePayloadV1.md)
|
|
640
|
-
- [IncidentIoSdk::CustomFieldsCreatePayloadV2](docs/CustomFieldsCreatePayloadV2.md)
|
|
641
|
-
- [IncidentIoSdk::CustomFieldsCreateResultV1](docs/CustomFieldsCreateResultV1.md)
|
|
642
|
-
- [IncidentIoSdk::CustomFieldsCreateResultV2](docs/CustomFieldsCreateResultV2.md)
|
|
643
|
-
- [IncidentIoSdk::CustomFieldsListResultV1](docs/CustomFieldsListResultV1.md)
|
|
644
|
-
- [IncidentIoSdk::CustomFieldsListResultV2](docs/CustomFieldsListResultV2.md)
|
|
645
|
-
- [IncidentIoSdk::CustomFieldsShowResultV1](docs/CustomFieldsShowResultV1.md)
|
|
646
|
-
- [IncidentIoSdk::CustomFieldsShowResultV2](docs/CustomFieldsShowResultV2.md)
|
|
647
|
-
- [IncidentIoSdk::CustomFieldsUpdatePayloadV1](docs/CustomFieldsUpdatePayloadV1.md)
|
|
648
|
-
- [IncidentIoSdk::CustomFieldsUpdatePayloadV2](docs/CustomFieldsUpdatePayloadV2.md)
|
|
649
|
-
- [IncidentIoSdk::CustomFieldsUpdateResultV1](docs/CustomFieldsUpdateResultV1.md)
|
|
650
|
-
- [IncidentIoSdk::CustomFieldsUpdateResultV2](docs/CustomFieldsUpdateResultV2.md)
|
|
651
|
-
- [IncidentIoSdk::EmbeddedCatalogEntryV1](docs/EmbeddedCatalogEntryV1.md)
|
|
652
|
-
- [IncidentIoSdk::EmbeddedCatalogEntryV2](docs/EmbeddedCatalogEntryV2.md)
|
|
653
|
-
- [IncidentIoSdk::EmbeddedIncidentRoleV2](docs/EmbeddedIncidentRoleV2.md)
|
|
654
|
-
- [IncidentIoSdk::EngineParamBindingPayloadV2](docs/EngineParamBindingPayloadV2.md)
|
|
655
|
-
- [IncidentIoSdk::EngineParamBindingV2](docs/EngineParamBindingV2.md)
|
|
656
|
-
- [IncidentIoSdk::EngineParamBindingValuePayloadV2](docs/EngineParamBindingValuePayloadV2.md)
|
|
657
|
-
- [IncidentIoSdk::EngineParamBindingValueV2](docs/EngineParamBindingValueV2.md)
|
|
658
|
-
- [IncidentIoSdk::EngineReferenceV2](docs/EngineReferenceV2.md)
|
|
659
|
-
- [IncidentIoSdk::EscalationPathNodeIfElsePayloadV2](docs/EscalationPathNodeIfElsePayloadV2.md)
|
|
660
|
-
- [IncidentIoSdk::EscalationPathNodeIfElseV2](docs/EscalationPathNodeIfElseV2.md)
|
|
661
|
-
- [IncidentIoSdk::EscalationPathNodeLevelV2](docs/EscalationPathNodeLevelV2.md)
|
|
662
|
-
- [IncidentIoSdk::EscalationPathNodeNotifyChannelV2](docs/EscalationPathNodeNotifyChannelV2.md)
|
|
663
|
-
- [IncidentIoSdk::EscalationPathNodePayloadV2](docs/EscalationPathNodePayloadV2.md)
|
|
664
|
-
- [IncidentIoSdk::EscalationPathNodeRepeatV2](docs/EscalationPathNodeRepeatV2.md)
|
|
665
|
-
- [IncidentIoSdk::EscalationPathNodeV2](docs/EscalationPathNodeV2.md)
|
|
666
|
-
- [IncidentIoSdk::EscalationPathRoundRobinConfigV2](docs/EscalationPathRoundRobinConfigV2.md)
|
|
667
|
-
- [IncidentIoSdk::EscalationPathTargetV2](docs/EscalationPathTargetV2.md)
|
|
668
|
-
- [IncidentIoSdk::EscalationPathV2](docs/EscalationPathV2.md)
|
|
669
|
-
- [IncidentIoSdk::EscalationsCreatePathPayloadV2](docs/EscalationsCreatePathPayloadV2.md)
|
|
670
|
-
- [IncidentIoSdk::EscalationsCreatePathResultV2](docs/EscalationsCreatePathResultV2.md)
|
|
671
|
-
- [IncidentIoSdk::EscalationsShowPathResultV2](docs/EscalationsShowPathResultV2.md)
|
|
672
|
-
- [IncidentIoSdk::EscalationsUpdatePathPayloadV2](docs/EscalationsUpdatePathPayloadV2.md)
|
|
673
|
-
- [IncidentIoSdk::EscalationsUpdatePathResultV2](docs/EscalationsUpdatePathResultV2.md)
|
|
674
|
-
- [IncidentIoSdk::ExpressionBranchPayloadV2](docs/ExpressionBranchPayloadV2.md)
|
|
675
|
-
- [IncidentIoSdk::ExpressionBranchV2](docs/ExpressionBranchV2.md)
|
|
676
|
-
- [IncidentIoSdk::ExpressionBranchesOptsPayloadV2](docs/ExpressionBranchesOptsPayloadV2.md)
|
|
677
|
-
- [IncidentIoSdk::ExpressionBranchesOptsV2](docs/ExpressionBranchesOptsV2.md)
|
|
678
|
-
- [IncidentIoSdk::ExpressionElseBranchPayloadV2](docs/ExpressionElseBranchPayloadV2.md)
|
|
679
|
-
- [IncidentIoSdk::ExpressionElseBranchV2](docs/ExpressionElseBranchV2.md)
|
|
680
|
-
- [IncidentIoSdk::ExpressionFilterOptsPayloadV2](docs/ExpressionFilterOptsPayloadV2.md)
|
|
681
|
-
- [IncidentIoSdk::ExpressionFilterOptsV2](docs/ExpressionFilterOptsV2.md)
|
|
682
|
-
- [IncidentIoSdk::ExpressionNavigateOptsPayloadV2](docs/ExpressionNavigateOptsPayloadV2.md)
|
|
683
|
-
- [IncidentIoSdk::ExpressionNavigateOptsV2](docs/ExpressionNavigateOptsV2.md)
|
|
684
|
-
- [IncidentIoSdk::ExpressionOperationPayloadV2](docs/ExpressionOperationPayloadV2.md)
|
|
685
|
-
- [IncidentIoSdk::ExpressionOperationV2](docs/ExpressionOperationV2.md)
|
|
686
|
-
- [IncidentIoSdk::ExpressionParseOptsPayloadV2](docs/ExpressionParseOptsPayloadV2.md)
|
|
687
|
-
- [IncidentIoSdk::ExpressionParseOptsV2](docs/ExpressionParseOptsV2.md)
|
|
688
|
-
- [IncidentIoSdk::ExpressionPayloadV2](docs/ExpressionPayloadV2.md)
|
|
689
|
-
- [IncidentIoSdk::ExpressionV2](docs/ExpressionV2.md)
|
|
690
|
-
- [IncidentIoSdk::ExternalIssueReferenceV1](docs/ExternalIssueReferenceV1.md)
|
|
691
|
-
- [IncidentIoSdk::ExternalIssueReferenceV2](docs/ExternalIssueReferenceV2.md)
|
|
692
|
-
- [IncidentIoSdk::ExternalIssueReferenceV6](docs/ExternalIssueReferenceV6.md)
|
|
693
|
-
- [IncidentIoSdk::ExternalResourceV1](docs/ExternalResourceV1.md)
|
|
694
|
-
- [IncidentIoSdk::FollowUpPriorityV2](docs/FollowUpPriorityV2.md)
|
|
695
|
-
- [IncidentIoSdk::FollowUpV2](docs/FollowUpV2.md)
|
|
696
|
-
- [IncidentIoSdk::FollowUpsListResultV2](docs/FollowUpsListResultV2.md)
|
|
697
|
-
- [IncidentIoSdk::FollowUpsShowResultV2](docs/FollowUpsShowResultV2.md)
|
|
698
|
-
- [IncidentIoSdk::GroupingKeyV2](docs/GroupingKeyV2.md)
|
|
699
|
-
- [IncidentIoSdk::IdentityV1](docs/IdentityV1.md)
|
|
700
|
-
- [IncidentIoSdk::IncidentAlertV2](docs/IncidentAlertV2.md)
|
|
701
|
-
- [IncidentIoSdk::IncidentAttachmentV1](docs/IncidentAttachmentV1.md)
|
|
702
|
-
- [IncidentIoSdk::IncidentAttachmentsCreatePayloadV1](docs/IncidentAttachmentsCreatePayloadV1.md)
|
|
703
|
-
- [IncidentIoSdk::IncidentAttachmentsCreatePayloadV1Resource](docs/IncidentAttachmentsCreatePayloadV1Resource.md)
|
|
704
|
-
- [IncidentIoSdk::IncidentAttachmentsCreateResultV1](docs/IncidentAttachmentsCreateResultV1.md)
|
|
705
|
-
- [IncidentIoSdk::IncidentAttachmentsListResultV1](docs/IncidentAttachmentsListResultV1.md)
|
|
706
|
-
- [IncidentIoSdk::IncidentDurationMetricV2](docs/IncidentDurationMetricV2.md)
|
|
707
|
-
- [IncidentIoSdk::IncidentDurationMetricWithValueV2](docs/IncidentDurationMetricWithValueV2.md)
|
|
708
|
-
- [IncidentIoSdk::IncidentEditPayloadV2](docs/IncidentEditPayloadV2.md)
|
|
709
|
-
- [IncidentIoSdk::IncidentMembershipV1](docs/IncidentMembershipV1.md)
|
|
710
|
-
- [IncidentIoSdk::IncidentMembershipsCreatePayloadV1](docs/IncidentMembershipsCreatePayloadV1.md)
|
|
711
|
-
- [IncidentIoSdk::IncidentMembershipsCreateResultV1](docs/IncidentMembershipsCreateResultV1.md)
|
|
712
|
-
- [IncidentIoSdk::IncidentMembershipsRevokePayloadV1](docs/IncidentMembershipsRevokePayloadV1.md)
|
|
713
|
-
- [IncidentIoSdk::IncidentRoleAssignmentPayloadV1](docs/IncidentRoleAssignmentPayloadV1.md)
|
|
714
|
-
- [IncidentIoSdk::IncidentRoleAssignmentPayloadV2](docs/IncidentRoleAssignmentPayloadV2.md)
|
|
715
|
-
- [IncidentIoSdk::IncidentRoleAssignmentV1](docs/IncidentRoleAssignmentV1.md)
|
|
716
|
-
- [IncidentIoSdk::IncidentRoleAssignmentV2](docs/IncidentRoleAssignmentV2.md)
|
|
717
|
-
- [IncidentIoSdk::IncidentRoleV1](docs/IncidentRoleV1.md)
|
|
718
|
-
- [IncidentIoSdk::IncidentRoleV2](docs/IncidentRoleV2.md)
|
|
719
|
-
- [IncidentIoSdk::IncidentRolesCreatePayloadV1](docs/IncidentRolesCreatePayloadV1.md)
|
|
720
|
-
- [IncidentIoSdk::IncidentRolesCreatePayloadV2](docs/IncidentRolesCreatePayloadV2.md)
|
|
721
|
-
- [IncidentIoSdk::IncidentRolesCreateResultV1](docs/IncidentRolesCreateResultV1.md)
|
|
722
|
-
- [IncidentIoSdk::IncidentRolesCreateResultV2](docs/IncidentRolesCreateResultV2.md)
|
|
723
|
-
- [IncidentIoSdk::IncidentRolesListResultV1](docs/IncidentRolesListResultV1.md)
|
|
724
|
-
- [IncidentIoSdk::IncidentRolesListResultV2](docs/IncidentRolesListResultV2.md)
|
|
725
|
-
- [IncidentIoSdk::IncidentRolesShowResultV1](docs/IncidentRolesShowResultV1.md)
|
|
726
|
-
- [IncidentIoSdk::IncidentRolesShowResultV2](docs/IncidentRolesShowResultV2.md)
|
|
727
|
-
- [IncidentIoSdk::IncidentRolesUpdatePayloadV1](docs/IncidentRolesUpdatePayloadV1.md)
|
|
728
|
-
- [IncidentIoSdk::IncidentRolesUpdatePayloadV2](docs/IncidentRolesUpdatePayloadV2.md)
|
|
729
|
-
- [IncidentIoSdk::IncidentRolesUpdateResultV1](docs/IncidentRolesUpdateResultV1.md)
|
|
730
|
-
- [IncidentIoSdk::IncidentRolesUpdateResultV2](docs/IncidentRolesUpdateResultV2.md)
|
|
731
|
-
- [IncidentIoSdk::IncidentSlimV2](docs/IncidentSlimV2.md)
|
|
732
|
-
- [IncidentIoSdk::IncidentStatusV1](docs/IncidentStatusV1.md)
|
|
733
|
-
- [IncidentIoSdk::IncidentStatusV2](docs/IncidentStatusV2.md)
|
|
734
|
-
- [IncidentIoSdk::IncidentStatusesCreatePayloadV1](docs/IncidentStatusesCreatePayloadV1.md)
|
|
735
|
-
- [IncidentIoSdk::IncidentStatusesCreateResultV1](docs/IncidentStatusesCreateResultV1.md)
|
|
736
|
-
- [IncidentIoSdk::IncidentStatusesListResultV1](docs/IncidentStatusesListResultV1.md)
|
|
737
|
-
- [IncidentIoSdk::IncidentStatusesShowResultV1](docs/IncidentStatusesShowResultV1.md)
|
|
738
|
-
- [IncidentIoSdk::IncidentStatusesUpdatePayloadV1](docs/IncidentStatusesUpdatePayloadV1.md)
|
|
739
|
-
- [IncidentIoSdk::IncidentStatusesUpdateResultV1](docs/IncidentStatusesUpdateResultV1.md)
|
|
740
|
-
- [IncidentIoSdk::IncidentTimestampV2](docs/IncidentTimestampV2.md)
|
|
741
|
-
- [IncidentIoSdk::IncidentTimestampValuePayloadV2](docs/IncidentTimestampValuePayloadV2.md)
|
|
742
|
-
- [IncidentIoSdk::IncidentTimestampValueV1](docs/IncidentTimestampValueV1.md)
|
|
743
|
-
- [IncidentIoSdk::IncidentTimestampValueV2](docs/IncidentTimestampValueV2.md)
|
|
744
|
-
- [IncidentIoSdk::IncidentTimestampWithValueV2](docs/IncidentTimestampWithValueV2.md)
|
|
745
|
-
- [IncidentIoSdk::IncidentTimestampsListResultV2](docs/IncidentTimestampsListResultV2.md)
|
|
746
|
-
- [IncidentIoSdk::IncidentTimestampsShowResultV2](docs/IncidentTimestampsShowResultV2.md)
|
|
747
|
-
- [IncidentIoSdk::IncidentTypeV1](docs/IncidentTypeV1.md)
|
|
748
|
-
- [IncidentIoSdk::IncidentTypeV2](docs/IncidentTypeV2.md)
|
|
749
|
-
- [IncidentIoSdk::IncidentTypesListResultV1](docs/IncidentTypesListResultV1.md)
|
|
750
|
-
- [IncidentIoSdk::IncidentTypesShowResultV1](docs/IncidentTypesShowResultV1.md)
|
|
751
|
-
- [IncidentIoSdk::IncidentUpdateV2](docs/IncidentUpdateV2.md)
|
|
752
|
-
- [IncidentIoSdk::IncidentUpdatesListResultV2](docs/IncidentUpdatesListResultV2.md)
|
|
753
|
-
- [IncidentIoSdk::IncidentV1](docs/IncidentV1.md)
|
|
754
|
-
- [IncidentIoSdk::IncidentV2](docs/IncidentV2.md)
|
|
755
|
-
- [IncidentIoSdk::IncidentWithStatusChangeV2](docs/IncidentWithStatusChangeV2.md)
|
|
756
|
-
- [IncidentIoSdk::IncidentsCreatePayloadV1](docs/IncidentsCreatePayloadV1.md)
|
|
757
|
-
- [IncidentIoSdk::IncidentsCreatePayloadV2](docs/IncidentsCreatePayloadV2.md)
|
|
758
|
-
- [IncidentIoSdk::IncidentsCreateResultV1](docs/IncidentsCreateResultV1.md)
|
|
759
|
-
- [IncidentIoSdk::IncidentsCreateResultV2](docs/IncidentsCreateResultV2.md)
|
|
760
|
-
- [IncidentIoSdk::IncidentsEditPayloadV2](docs/IncidentsEditPayloadV2.md)
|
|
761
|
-
- [IncidentIoSdk::IncidentsEditResultV2](docs/IncidentsEditResultV2.md)
|
|
762
|
-
- [IncidentIoSdk::IncidentsListResultV1](docs/IncidentsListResultV1.md)
|
|
763
|
-
- [IncidentIoSdk::IncidentsListResultV2](docs/IncidentsListResultV2.md)
|
|
764
|
-
- [IncidentIoSdk::IncidentsShowResultV1](docs/IncidentsShowResultV1.md)
|
|
765
|
-
- [IncidentIoSdk::IncidentsShowResultV2](docs/IncidentsShowResultV2.md)
|
|
766
|
-
- [IncidentIoSdk::ManagementMetaV2](docs/ManagementMetaV2.md)
|
|
767
|
-
- [IncidentIoSdk::PaginationMetaResultV1](docs/PaginationMetaResultV1.md)
|
|
768
|
-
- [IncidentIoSdk::PaginationMetaResultV2](docs/PaginationMetaResultV2.md)
|
|
769
|
-
- [IncidentIoSdk::PaginationMetaResultV3](docs/PaginationMetaResultV3.md)
|
|
770
|
-
- [IncidentIoSdk::PaginationMetaResultWithTotalV1](docs/PaginationMetaResultWithTotalV1.md)
|
|
771
|
-
- [IncidentIoSdk::PaginationMetaResultWithTotalV2](docs/PaginationMetaResultWithTotalV2.md)
|
|
772
|
-
- [IncidentIoSdk::RBACRoleV2](docs/RBACRoleV2.md)
|
|
773
|
-
- [IncidentIoSdk::RetrospectiveIncidentOptionsV2](docs/RetrospectiveIncidentOptionsV2.md)
|
|
774
|
-
- [IncidentIoSdk::ReturnsMetaV2](docs/ReturnsMetaV2.md)
|
|
775
|
-
- [IncidentIoSdk::ScheduleConfigCreatePayloadV2](docs/ScheduleConfigCreatePayloadV2.md)
|
|
776
|
-
- [IncidentIoSdk::ScheduleConfigUpdatePayloadV2](docs/ScheduleConfigUpdatePayloadV2.md)
|
|
777
|
-
- [IncidentIoSdk::ScheduleConfigV2](docs/ScheduleConfigV2.md)
|
|
778
|
-
- [IncidentIoSdk::ScheduleCreatePayloadV2](docs/ScheduleCreatePayloadV2.md)
|
|
779
|
-
- [IncidentIoSdk::ScheduleEntriesListPayloadV2](docs/ScheduleEntriesListPayloadV2.md)
|
|
780
|
-
- [IncidentIoSdk::ScheduleEntryV2](docs/ScheduleEntryV2.md)
|
|
781
|
-
- [IncidentIoSdk::ScheduleHolidaysPublicConfigPayloadV2](docs/ScheduleHolidaysPublicConfigPayloadV2.md)
|
|
782
|
-
- [IncidentIoSdk::ScheduleHolidaysPublicConfigV2](docs/ScheduleHolidaysPublicConfigV2.md)
|
|
783
|
-
- [IncidentIoSdk::ScheduleLayerCreatePayloadV2](docs/ScheduleLayerCreatePayloadV2.md)
|
|
784
|
-
- [IncidentIoSdk::ScheduleLayerUpdatePayloadV2](docs/ScheduleLayerUpdatePayloadV2.md)
|
|
785
|
-
- [IncidentIoSdk::ScheduleLayerV2](docs/ScheduleLayerV2.md)
|
|
786
|
-
- [IncidentIoSdk::ScheduleOverrideV2](docs/ScheduleOverrideV2.md)
|
|
787
|
-
- [IncidentIoSdk::ScheduleRotationCreatePayloadV2](docs/ScheduleRotationCreatePayloadV2.md)
|
|
788
|
-
- [IncidentIoSdk::ScheduleRotationHandoverV2](docs/ScheduleRotationHandoverV2.md)
|
|
789
|
-
- [IncidentIoSdk::ScheduleRotationUpdatePayloadV2](docs/ScheduleRotationUpdatePayloadV2.md)
|
|
790
|
-
- [IncidentIoSdk::ScheduleRotationV2](docs/ScheduleRotationV2.md)
|
|
791
|
-
- [IncidentIoSdk::ScheduleRotationWorkingIntervalCreatePayloadV2](docs/ScheduleRotationWorkingIntervalCreatePayloadV2.md)
|
|
792
|
-
- [IncidentIoSdk::ScheduleRotationWorkingIntervalUpdatePayloadV2](docs/ScheduleRotationWorkingIntervalUpdatePayloadV2.md)
|
|
793
|
-
- [IncidentIoSdk::ScheduleRotationWorkingIntervalV2](docs/ScheduleRotationWorkingIntervalV2.md)
|
|
794
|
-
- [IncidentIoSdk::ScheduleUpdatePayloadV2](docs/ScheduleUpdatePayloadV2.md)
|
|
795
|
-
- [IncidentIoSdk::ScheduleV2](docs/ScheduleV2.md)
|
|
796
|
-
- [IncidentIoSdk::SchedulesCreateOverridePayloadV2](docs/SchedulesCreateOverridePayloadV2.md)
|
|
797
|
-
- [IncidentIoSdk::SchedulesCreateOverrideResultV2](docs/SchedulesCreateOverrideResultV2.md)
|
|
798
|
-
- [IncidentIoSdk::SchedulesCreatePayloadV2](docs/SchedulesCreatePayloadV2.md)
|
|
799
|
-
- [IncidentIoSdk::SchedulesCreateResultV2](docs/SchedulesCreateResultV2.md)
|
|
800
|
-
- [IncidentIoSdk::SchedulesListResultV2](docs/SchedulesListResultV2.md)
|
|
801
|
-
- [IncidentIoSdk::SchedulesListScheduleEntriesResultV2](docs/SchedulesListScheduleEntriesResultV2.md)
|
|
802
|
-
- [IncidentIoSdk::SchedulesShowResultV2](docs/SchedulesShowResultV2.md)
|
|
803
|
-
- [IncidentIoSdk::SchedulesUpdatePayloadV2](docs/SchedulesUpdatePayloadV2.md)
|
|
804
|
-
- [IncidentIoSdk::SchedulesUpdateResultV2](docs/SchedulesUpdateResultV2.md)
|
|
805
|
-
- [IncidentIoSdk::SeveritiesCreatePayloadV1](docs/SeveritiesCreatePayloadV1.md)
|
|
806
|
-
- [IncidentIoSdk::SeveritiesCreateResultV1](docs/SeveritiesCreateResultV1.md)
|
|
807
|
-
- [IncidentIoSdk::SeveritiesListResultV1](docs/SeveritiesListResultV1.md)
|
|
808
|
-
- [IncidentIoSdk::SeveritiesShowResultV1](docs/SeveritiesShowResultV1.md)
|
|
809
|
-
- [IncidentIoSdk::SeveritiesUpdatePayloadV1](docs/SeveritiesUpdatePayloadV1.md)
|
|
810
|
-
- [IncidentIoSdk::SeveritiesUpdateResultV1](docs/SeveritiesUpdateResultV1.md)
|
|
811
|
-
- [IncidentIoSdk::SeverityV1](docs/SeverityV1.md)
|
|
812
|
-
- [IncidentIoSdk::SeverityV2](docs/SeverityV2.md)
|
|
813
|
-
- [IncidentIoSdk::StepConfigPayloadV2](docs/StepConfigPayloadV2.md)
|
|
814
|
-
- [IncidentIoSdk::StepConfigSlimV2](docs/StepConfigSlimV2.md)
|
|
815
|
-
- [IncidentIoSdk::StepConfigV2](docs/StepConfigV2.md)
|
|
816
|
-
- [IncidentIoSdk::TriggerSlimV2](docs/TriggerSlimV2.md)
|
|
817
|
-
- [IncidentIoSdk::UserReferencePayloadV1](docs/UserReferencePayloadV1.md)
|
|
818
|
-
- [IncidentIoSdk::UserReferencePayloadV2](docs/UserReferencePayloadV2.md)
|
|
819
|
-
- [IncidentIoSdk::UserV1](docs/UserV1.md)
|
|
820
|
-
- [IncidentIoSdk::UserV2](docs/UserV2.md)
|
|
821
|
-
- [IncidentIoSdk::UserWithRolesV2](docs/UserWithRolesV2.md)
|
|
822
|
-
- [IncidentIoSdk::UsersListResultV2](docs/UsersListResultV2.md)
|
|
823
|
-
- [IncidentIoSdk::UsersShowResultV2](docs/UsersShowResultV2.md)
|
|
824
|
-
- [IncidentIoSdk::UtilitiesIdentityResultV1](docs/UtilitiesIdentityResultV1.md)
|
|
825
|
-
- [IncidentIoSdk::WebhookIncidentUserV2](docs/WebhookIncidentUserV2.md)
|
|
826
|
-
- [IncidentIoSdk::WebhookIncidentV2](docs/WebhookIncidentV2.md)
|
|
827
|
-
- [IncidentIoSdk::WebhookPrivateResourceV2](docs/WebhookPrivateResourceV2.md)
|
|
828
|
-
- [IncidentIoSdk::WebhooksPrivateIncidentActionCreatedV1ResponseBody](docs/WebhooksPrivateIncidentActionCreatedV1ResponseBody.md)
|
|
829
|
-
- [IncidentIoSdk::WebhooksPrivateIncidentActionUpdatedV1ResponseBody](docs/WebhooksPrivateIncidentActionUpdatedV1ResponseBody.md)
|
|
830
|
-
- [IncidentIoSdk::WebhooksPrivateIncidentFollowUpCreatedV1ResponseBody](docs/WebhooksPrivateIncidentFollowUpCreatedV1ResponseBody.md)
|
|
831
|
-
- [IncidentIoSdk::WebhooksPrivateIncidentFollowUpUpdatedV1ResponseBody](docs/WebhooksPrivateIncidentFollowUpUpdatedV1ResponseBody.md)
|
|
832
|
-
- [IncidentIoSdk::WebhooksPrivateIncidentIncidentCreatedV2ResponseBody](docs/WebhooksPrivateIncidentIncidentCreatedV2ResponseBody.md)
|
|
833
|
-
- [IncidentIoSdk::WebhooksPrivateIncidentIncidentUpdatedV2ResponseBody](docs/WebhooksPrivateIncidentIncidentUpdatedV2ResponseBody.md)
|
|
834
|
-
- [IncidentIoSdk::WebhooksPrivateIncidentMembershipGrantedV1ResponseBody](docs/WebhooksPrivateIncidentMembershipGrantedV1ResponseBody.md)
|
|
835
|
-
- [IncidentIoSdk::WebhooksPrivateIncidentMembershipRevokedV1ResponseBody](docs/WebhooksPrivateIncidentMembershipRevokedV1ResponseBody.md)
|
|
836
|
-
- [IncidentIoSdk::WebhooksPublicIncidentActionCreatedV1ResponseBody](docs/WebhooksPublicIncidentActionCreatedV1ResponseBody.md)
|
|
837
|
-
- [IncidentIoSdk::WebhooksPublicIncidentActionUpdatedV1ResponseBody](docs/WebhooksPublicIncidentActionUpdatedV1ResponseBody.md)
|
|
838
|
-
- [IncidentIoSdk::WebhooksPublicIncidentFollowUpCreatedV1ResponseBody](docs/WebhooksPublicIncidentFollowUpCreatedV1ResponseBody.md)
|
|
839
|
-
- [IncidentIoSdk::WebhooksPublicIncidentFollowUpUpdatedV1ResponseBody](docs/WebhooksPublicIncidentFollowUpUpdatedV1ResponseBody.md)
|
|
840
|
-
- [IncidentIoSdk::WebhooksPublicIncidentIncidentCreatedV2ResponseBody](docs/WebhooksPublicIncidentIncidentCreatedV2ResponseBody.md)
|
|
841
|
-
- [IncidentIoSdk::WebhooksPublicIncidentIncidentStatusUpdatedV2ResponseBody](docs/WebhooksPublicIncidentIncidentStatusUpdatedV2ResponseBody.md)
|
|
842
|
-
- [IncidentIoSdk::WebhooksPublicIncidentIncidentUpdatedV2ResponseBody](docs/WebhooksPublicIncidentIncidentUpdatedV2ResponseBody.md)
|
|
843
|
-
- [IncidentIoSdk::WeekdayIntervalConfigV2](docs/WeekdayIntervalConfigV2.md)
|
|
844
|
-
- [IncidentIoSdk::WeekdayIntervalV2](docs/WeekdayIntervalV2.md)
|
|
845
|
-
- [IncidentIoSdk::WorkflowDelayV2](docs/WorkflowDelayV2.md)
|
|
846
|
-
- [IncidentIoSdk::WorkflowSlimV2](docs/WorkflowSlimV2.md)
|
|
847
|
-
- [IncidentIoSdk::WorkflowV2](docs/WorkflowV2.md)
|
|
848
|
-
- [IncidentIoSdk::WorkflowsCreateWorkflowPayloadV2](docs/WorkflowsCreateWorkflowPayloadV2.md)
|
|
849
|
-
- [IncidentIoSdk::WorkflowsCreateWorkflowResultV2](docs/WorkflowsCreateWorkflowResultV2.md)
|
|
850
|
-
- [IncidentIoSdk::WorkflowsListWorkflowsResultV2](docs/WorkflowsListWorkflowsResultV2.md)
|
|
851
|
-
- [IncidentIoSdk::WorkflowsShowWorkflowResultV2](docs/WorkflowsShowWorkflowResultV2.md)
|
|
852
|
-
- [IncidentIoSdk::WorkflowsUpdateWorkflowPayloadV2](docs/WorkflowsUpdateWorkflowPayloadV2.md)
|
|
853
|
-
- [IncidentIoSdk::WorkflowsUpdateWorkflowResultV2](docs/WorkflowsUpdateWorkflowResultV2.md)
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
## Documentation for Authorization
|
|
857
|
-
|
|
858
|
-
Endpoints do not require authorization.
|
|
120
|
+
## License
|
|
859
121
|
|
|
122
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
data/incident_io_sdk.gemspec
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = "incident_io_sdk"
|
|
7
|
-
s.version = "0.1.
|
|
7
|
+
s.version = "0.1.2"
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.authors = ["Mustafa Bayar"]
|
|
10
10
|
s.email = ["mbcoders@gmail.com"]
|
|
@@ -14,9 +14,9 @@ Gem::Specification.new do |s|
|
|
|
14
14
|
s.license = "MIT"
|
|
15
15
|
s.required_ruby_version = ">= 2.7"
|
|
16
16
|
s.metadata = {
|
|
17
|
-
"source_code_uri" => "https://github.com/mustafabayar/
|
|
18
|
-
"changelog_uri" => "https://github.com/mustafabayar/
|
|
19
|
-
"bug_tracker_uri" => "https://github.com/mustafabayar/
|
|
17
|
+
"source_code_uri" => "https://github.com/mustafabayar/incident-io-sdk",
|
|
18
|
+
"changelog_uri" => "https://github.com/mustafabayar/incident-io-sdk/releases",
|
|
19
|
+
"bug_tracker_uri" => "https://github.com/mustafabayar/incident-io-sdk/issues",
|
|
20
20
|
"documentation_uri" => "https://docs.incident.io"
|
|
21
21
|
}
|
|
22
22
|
|
|
@@ -96,6 +96,10 @@ module IncidentIoSdk
|
|
|
96
96
|
http_method = http_method.to_sym.downcase
|
|
97
97
|
|
|
98
98
|
header_params = @default_headers.merge(opts[:header_params] || {})
|
|
99
|
+
if @config.access_token_with_refresh
|
|
100
|
+
header_params['Authorization'] = "Bearer #{@config.access_token_with_refresh}"
|
|
101
|
+
end
|
|
102
|
+
|
|
99
103
|
query_params = opts[:query_params] || {}
|
|
100
104
|
form_params = opts[:form_params] || {}
|
|
101
105
|
follow_location = opts[:follow_location] || true
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: incident_io_sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mustafa Bayar
|
|
@@ -1087,9 +1087,9 @@ homepage: https://github.com/mustafabayar/incident_io_sdk
|
|
|
1087
1087
|
licenses:
|
|
1088
1088
|
- MIT
|
|
1089
1089
|
metadata:
|
|
1090
|
-
source_code_uri: https://github.com/mustafabayar/
|
|
1091
|
-
changelog_uri: https://github.com/mustafabayar/
|
|
1092
|
-
bug_tracker_uri: https://github.com/mustafabayar/
|
|
1090
|
+
source_code_uri: https://github.com/mustafabayar/incident-io-sdk
|
|
1091
|
+
changelog_uri: https://github.com/mustafabayar/incident-io-sdk/releases
|
|
1092
|
+
bug_tracker_uri: https://github.com/mustafabayar/incident-io-sdk/issues
|
|
1093
1093
|
documentation_uri: https://docs.incident.io
|
|
1094
1094
|
post_install_message:
|
|
1095
1095
|
rdoc_options: []
|