|
2 | 2 |
|
3 | 3 | ## Properties |
4 | 4 |
|
5 | | -| Name | Type | Description | Notes | |
6 | | -| ------------------ | -------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | |
7 | | -| **AggregationKey** | Pointer to **string** | An arbitrary string to use for aggregation. Limited to 100 characters. If you specify a key, all events using that key are grouped together in the Event Stream. | [optional] | |
8 | | -| **AlertType** | Pointer to [**EventAlertType**](EventAlertType.md) | | [optional] | |
9 | | -| **DateHappened** | Pointer to **int64** | POSIX timestamp of the event. Must be sent as an integer (that is no quotes). Limited to events no older than 7 days. | [optional] | |
10 | | -| **DeviceName** | Pointer to **string** | A device name. | [optional] | |
11 | | -| **Host** | Pointer to **string** | Host name to associate with the event. Any tags associated with the host are also applied to this event. | [optional] | |
12 | | -| **Id** | Pointer to **int64** | Integer ID of the event. | [optional] [readonly] | |
13 | | -| **Payload** | Pointer to **string** | Payload of the event. | [optional] [readonly] | |
14 | | -| **Priority** | Pointer to [**EventPriority**](EventPriority.md) | | [optional] | |
15 | | -| **RelatedEventId** | Pointer to **int64** | ID of the parent event. Must be sent as an integer (that is no quotes). | [optional] | |
16 | | -| **SourceTypeName** | Pointer to **string** | The type of event being posted. Option examples include nagios, hudson, jenkins, my_apps, chef, puppet, git, bitbucket, etc. A complete list of source attribute values [available here](https://docs.datadoghq.com/integrations/faq/list-of-api-source-attribute-value). | [optional] | |
17 | | -| **Tags** | Pointer to **[]string** | A list of tags to apply to the event. | [optional] | |
| 5 | +| Name | Type | Description | Notes | |
| 6 | +| ------------------ | -------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | |
| 7 | +| **AggregationKey** | Pointer to **string** | An arbitrary string to use for aggregation. Limited to 100 characters. If you specify a key, all events using that key are grouped together in the Event Stream. | [optional] | |
| 8 | +| **AlertType** | Pointer to [**EventAlertType**](EventAlertType.md) | | [optional] | |
| 9 | +| **DateHappened** | Pointer to **int64** | POSIX timestamp of the event. Must be sent as an integer (that is no quotes). Limited to events no older than 7 days. | [optional] | |
| 10 | +| **DeviceName** | Pointer to **string** | A device name. | [optional] | |
| 11 | +| **Host** | Pointer to **string** | Host name to associate with the event. Any tags associated with the host are also applied to this event. | [optional] | |
| 12 | +| **Priority** | Pointer to [**EventPriority**](EventPriority.md) | | [optional] | |
| 13 | +| **RelatedEventId** | Pointer to **int64** | ID of the parent event. Must be sent as an integer (that is no quotes). | [optional] | |
| 14 | +| **SourceTypeName** | Pointer to **string** | The type of event being posted. Option examples include nagios, hudson, jenkins, my_apps, chef, puppet, git, bitbucket, etc. A complete list of source attribute values [available here](https://docs.datadoghq.com/integrations/faq/list-of-api-source-attribute-value). | [optional] | |
| 15 | +| **Tags** | Pointer to **[]string** | A list of tags to apply to the event. | [optional] | |
18 | 16 | | **Text** | **string** | The body of the event. Limited to 4000 characters. The text supports markdown. To use markdown in the event text, start the text block with `%%% \\n` and end the text block with `\\n %%%`. Use `msg_text` with the Datadog Ruby library. | |
19 | 17 | | **Title** | **string** | The event title. | |
20 | | -| **Url** | Pointer to **string** | URL of the event. | [optional] [readonly] | |
21 | 18 |
|
22 | 19 | ## Methods |
23 | 20 |
|
@@ -163,56 +160,6 @@ SetHost sets Host field to given value. |
163 | 160 |
|
164 | 161 | HasHost returns a boolean if a field has been set. |
165 | 162 |
|
166 | | -### GetId |
167 | | - |
168 | | -`func (o *EventCreateRequest) GetId() int64` |
169 | | - |
170 | | -GetId returns the Id field if non-nil, zero value otherwise. |
171 | | - |
172 | | -### GetIdOk |
173 | | - |
174 | | -`func (o *EventCreateRequest) GetIdOk() (*int64, bool)` |
175 | | - |
176 | | -GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise |
177 | | -and a boolean to check if the value has been set. |
178 | | - |
179 | | -### SetId |
180 | | - |
181 | | -`func (o *EventCreateRequest) SetId(v int64)` |
182 | | - |
183 | | -SetId sets Id field to given value. |
184 | | - |
185 | | -### HasId |
186 | | - |
187 | | -`func (o *EventCreateRequest) HasId() bool` |
188 | | - |
189 | | -HasId returns a boolean if a field has been set. |
190 | | - |
191 | | -### GetPayload |
192 | | - |
193 | | -`func (o *EventCreateRequest) GetPayload() string` |
194 | | - |
195 | | -GetPayload returns the Payload field if non-nil, zero value otherwise. |
196 | | - |
197 | | -### GetPayloadOk |
198 | | - |
199 | | -`func (o *EventCreateRequest) GetPayloadOk() (*string, bool)` |
200 | | - |
201 | | -GetPayloadOk returns a tuple with the Payload field if it's non-nil, zero value otherwise |
202 | | -and a boolean to check if the value has been set. |
203 | | - |
204 | | -### SetPayload |
205 | | - |
206 | | -`func (o *EventCreateRequest) SetPayload(v string)` |
207 | | - |
208 | | -SetPayload sets Payload field to given value. |
209 | | - |
210 | | -### HasPayload |
211 | | - |
212 | | -`func (o *EventCreateRequest) HasPayload() bool` |
213 | | - |
214 | | -HasPayload returns a boolean if a field has been set. |
215 | | - |
216 | 163 | ### GetPriority |
217 | 164 |
|
218 | 165 | `func (o *EventCreateRequest) GetPriority() EventPriority` |
@@ -351,29 +298,4 @@ and a boolean to check if the value has been set. |
351 | 298 |
|
352 | 299 | SetTitle sets Title field to given value. |
353 | 300 |
|
354 | | -### GetUrl |
355 | | - |
356 | | -`func (o *EventCreateRequest) GetUrl() string` |
357 | | - |
358 | | -GetUrl returns the Url field if non-nil, zero value otherwise. |
359 | | - |
360 | | -### GetUrlOk |
361 | | - |
362 | | -`func (o *EventCreateRequest) GetUrlOk() (*string, bool)` |
363 | | - |
364 | | -GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise |
365 | | -and a boolean to check if the value has been set. |
366 | | - |
367 | | -### SetUrl |
368 | | - |
369 | | -`func (o *EventCreateRequest) SetUrl(v string)` |
370 | | - |
371 | | -SetUrl sets Url field to given value. |
372 | | - |
373 | | -### HasUrl |
374 | | - |
375 | | -`func (o *EventCreateRequest) HasUrl() bool` |
376 | | - |
377 | | -HasUrl returns a boolean if a field has been set. |
378 | | - |
379 | 301 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) |
0 commit comments