@@ -412,6 +412,12 @@ class CheckConfiguration(CheckConfigurationRef):
412
412
:type modified_on: datetime
413
413
:param timeout: Timeout in minutes for the check.
414
414
:type timeout: int
415
+ :param is_disabled: True if the check is disabled.
416
+ :type is_disabled: bool
417
+ :param version: Configuration version.
418
+ :type version: int
419
+ :param settings: Check settings.
420
+ :type settings: TaskCheckConfig
415
421
"""
416
422
417
423
_attribute_map = {
@@ -425,10 +431,13 @@ class CheckConfiguration(CheckConfigurationRef):
425
431
'issue' : {'key' : 'issue' , 'type' : 'CheckIssue' },
426
432
'modified_by' : {'key' : 'modifiedBy' , 'type' : 'IdentityRef' },
427
433
'modified_on' : {'key' : 'modifiedOn' , 'type' : 'iso-8601' },
428
- 'timeout' : {'key' : 'timeout' , 'type' : 'int' }
434
+ 'timeout' : {'key' : 'timeout' , 'type' : 'int' },
435
+ 'is_disabled' : {'key' : 'isDisabled' , 'type' : 'bool' },
436
+ 'version' : {'key' : 'version' , 'type' : 'int' },
437
+ 'settings' : {'key' : 'settings' , 'type' : 'TaskCheckConfig' }
429
438
}
430
439
431
- def __init__ (self , id = None , resource = None , type = None , url = None , _links = None , created_by = None , created_on = None , issue = None , modified_by = None , modified_on = None , timeout = None ):
440
+ def __init__ (self , id = None , resource = None , type = None , url = None , _links = None , created_by = None , created_on = None , issue = None , modified_by = None , modified_on = None , timeout = None , is_disabled = None , version = None , settings = None ):
432
441
super (CheckConfiguration , self ).__init__ (id = id , resource = resource , type = type , url = url )
433
442
self ._links = _links
434
443
self .created_by = created_by
@@ -437,7 +446,9 @@ def __init__(self, id=None, resource=None, type=None, url=None, _links=None, cre
437
446
self .modified_by = modified_by
438
447
self .modified_on = modified_on
439
448
self .timeout = timeout
440
-
449
+ self .is_disabled = is_disabled
450
+ self .version = version
451
+ self .settings = settings
441
452
442
453
class CheckRun (CheckRunResult ):
443
454
"""
0 commit comments