@@ -35,7 +35,6 @@ class IngestionPolicyReadModel(object):
35
35
swagger_types = {
36
36
'accounts' : 'list[AccessControlElement]' ,
37
37
'alert' : 'Alert' ,
38
- 'alert_id' : 'str' ,
39
38
'customer' : 'str' ,
40
39
'description' : 'str' ,
41
40
'groups' : 'list[AccessControlElement]' ,
@@ -56,7 +55,6 @@ class IngestionPolicyReadModel(object):
56
55
attribute_map = {
57
56
'accounts' : 'accounts' ,
58
57
'alert' : 'alert' ,
59
- 'alert_id' : 'alertId' ,
60
58
'customer' : 'customer' ,
61
59
'description' : 'description' ,
62
60
'groups' : 'groups' ,
@@ -74,15 +72,14 @@ class IngestionPolicyReadModel(object):
74
72
'tags_anded' : 'tagsAnded'
75
73
}
76
74
77
- def __init__ (self , accounts = None , alert = None , alert_id = None , customer = None , description = None , groups = None , id = None , is_limited = None , last_updated_account_id = None , last_updated_ms = None , limit_pps = None , metadata = None , name = None , namespaces = None , point_tags = None , scope = None , sources = None , tags_anded = None , _configuration = None ): # noqa: E501
75
+ def __init__ (self , accounts = None , alert = None , customer = None , description = None , groups = None , id = None , is_limited = None , last_updated_account_id = None , last_updated_ms = None , limit_pps = None , metadata = None , name = None , namespaces = None , point_tags = None , scope = None , sources = None , tags_anded = None , _configuration = None ): # noqa: E501
78
76
"""IngestionPolicyReadModel - a model defined in Swagger""" # noqa: E501
79
77
if _configuration is None :
80
78
_configuration = Configuration ()
81
79
self ._configuration = _configuration
82
80
83
81
self ._accounts = None
84
82
self ._alert = None
85
- self ._alert_id = None
86
83
self ._customer = None
87
84
self ._description = None
88
85
self ._groups = None
@@ -104,8 +101,6 @@ def __init__(self, accounts=None, alert=None, alert_id=None, customer=None, desc
104
101
self .accounts = accounts
105
102
if alert is not None :
106
103
self .alert = alert
107
- if alert_id is not None :
108
- self .alert_id = alert_id
109
104
if customer is not None :
110
105
self .customer = customer
111
106
if description is not None :
@@ -183,29 +178,6 @@ def alert(self, alert):
183
178
184
179
self ._alert = alert
185
180
186
- @property
187
- def alert_id (self ):
188
- """Gets the alert_id of this IngestionPolicyReadModel. # noqa: E501
189
-
190
- The ingestion policy alert Id # noqa: E501
191
-
192
- :return: The alert_id of this IngestionPolicyReadModel. # noqa: E501
193
- :rtype: str
194
- """
195
- return self ._alert_id
196
-
197
- @alert_id .setter
198
- def alert_id (self , alert_id ):
199
- """Sets the alert_id of this IngestionPolicyReadModel.
200
-
201
- The ingestion policy alert Id # noqa: E501
202
-
203
- :param alert_id: The alert_id of this IngestionPolicyReadModel. # noqa: E501
204
- :type: str
205
- """
206
-
207
- self ._alert_id = alert_id
208
-
209
181
@property
210
182
def customer (self ):
211
183
"""Gets the customer of this IngestionPolicyReadModel. # noqa: E501
0 commit comments