Skip to content

Commit eae7fed

Browse files
authoredJan 24, 2020
Merge pull request #36 from opsgenie/remove-you-can-refer-here
Remove redundant "You can refer here for example values" statements
2 parents cf99b7f + aef072c commit eae7fed

6 files changed

+8
-9
lines changed
 

‎docs/AddDetailsToAlertPayload.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
**user** | **str** | Display name of the request owner | [optional]
77
**note** | **str** | Additional note that will be added while creating the alert | [optional]
88
**source** | **str** | Source field of the alert. Default value is IP address of the incoming request | [optional]
9-
**details** | **dict(str, str)** | Key-value pairs to add as custom property into alert. You can refer here for example values |
9+
**details** | **dict(str, str)** | Key-value pairs to add as custom property into alert. |
1010

1111
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1212

‎docs/AddDetailsToAlertPayloadAllOf.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**details** | **dict(str, str)** | Key-value pairs to add as custom property into alert. You can refer here for example values |
6+
**details** | **dict(str, str)** | Key-value pairs to add as custom property into alert. |
77

88
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
99

‎opsgenie-oas.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4839,7 +4839,7 @@
48394839
"additionalProperties": {
48404840
"type": "string"
48414841
},
4842-
"description": "Key-value pairs to add as custom property into alert. You can refer here for example values"
4842+
"description": "Key-value pairs to add as custom property into alert."
48434843
}
48444844
}
48454845
}

‎opsgenie-oas.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8786,8 +8786,7 @@ components:
87868786
type: object
87878787
additionalProperties:
87888788
type: string
8789-
description: Key-value pairs to add as custom property into alert. You
8790-
can refer here for example values
8789+
description: Key-value pairs to add as custom property into alert.
87918790
x-opsgenie-domain: alert
87928791
AlertRequestStatus:
87938792
type: object

‎opsgenie_sdk/api/alert/add_details_to_alert_payload.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def source(self, source):
135135
def details(self):
136136
"""Gets the details of this AddDetailsToAlertPayload. # noqa: E501
137137
138-
Key-value pairs to add as custom property into alert. You can refer here for example values # noqa: E501
138+
Key-value pairs to add as custom property into alert. # noqa: E501
139139
140140
:return: The details of this AddDetailsToAlertPayload. # noqa: E501
141141
:rtype: dict(str, str)
@@ -146,7 +146,7 @@ def details(self):
146146
def details(self, details):
147147
"""Sets the details of this AddDetailsToAlertPayload.
148148
149-
Key-value pairs to add as custom property into alert. You can refer here for example values # noqa: E501
149+
Key-value pairs to add as custom property into alert. # noqa: E501
150150
151151
:param details: The details of this AddDetailsToAlertPayload. # noqa: E501
152152
:type: dict(str, str)

‎opsgenie_sdk/api/alert/add_details_to_alert_payload_all_of.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__(self, details=None): # noqa: E501
5151
def details(self):
5252
"""Gets the details of this AddDetailsToAlertPayloadAllOf. # noqa: E501
5353
54-
Key-value pairs to add as custom property into alert. You can refer here for example values # noqa: E501
54+
Key-value pairs to add as custom property into alert. # noqa: E501
5555
5656
:return: The details of this AddDetailsToAlertPayloadAllOf. # noqa: E501
5757
:rtype: dict(str, str)
@@ -62,7 +62,7 @@ def details(self):
6262
def details(self, details):
6363
"""Sets the details of this AddDetailsToAlertPayloadAllOf.
6464
65-
Key-value pairs to add as custom property into alert. You can refer here for example values # noqa: E501
65+
Key-value pairs to add as custom property into alert. # noqa: E501
6666
6767
:param details: The details of this AddDetailsToAlertPayloadAllOf. # noqa: E501
6868
:type: dict(str, str)

0 commit comments

Comments
 (0)