Skip to content

Commit c5538aa

Browse files
author
mhowes
committed
Doc Update
1 parent 39c333d commit c5538aa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

dyn/tm/services/dsf.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -437,11 +437,11 @@ def to_json(self, svc_id=None, skip_svc=False):
437437

438438
@property
439439
def implicitPublish(self):
440+
"Toggle for this specific :class:`DSFRecord` for turning on and off implicit Publishing for record Updates."
440441
return self._implicitPublish
441442

442443
@implicitPublish.setter
443444
def implicitPublish(self, value):
444-
"Toggle for this specific :class:`DSFRecord` for turning on and off implicit Publishing for record Updates."
445445
if value != True and value != False:
446446
raise Exception('Value must be True or False')
447447
self._implicitPublish = value
@@ -1737,11 +1737,11 @@ def record_set_id(self):
17371737

17381738
@property
17391739
def implicitPublish(self):
1740+
"Toggle for this specific :class:`DSFRecordSet` for turning on and off implicit Publishing for record Updates."
17401741
return self._implicitPublish
17411742

17421743
@implicitPublish.setter
17431744
def implicitPublish(self, value):
1744-
"Toggle for this specific :class:`DSFRecordSet` for turning on and off implicit Publishing for record Updates."
17451745
if value != True and value != False:
17461746
raise Exception('Value must be True or False')
17471747
self._implicitPublish = value
@@ -2003,11 +2003,11 @@ def failover_chain_id(self):
20032003

20042004
@property
20052005
def implicitPublish(self):
2006+
"Toggle for this specific :class:`DSFFailoverChain` for turning on and off implicit Publishing for record Updates."
20062007
return self._implicitPublish
20072008

20082009
@implicitPublish.setter
20092010
def implicitPublish(self, value):
2010-
"Toggle for this specific :class:`DSFFailoverChain` for turning on and off implicit Publishing for record Updates."
20112011
if value != True and value != False:
20122012
raise Exception('Value must be True or False')
20132013
self._implicitPublish = value
@@ -2262,11 +2262,11 @@ def to_json(self, svc_id=None, skip_svc=False):
22622262

22632263
@property
22642264
def implicitPublish(self):
2265+
"Toggle for this specific :class:`DSFResponsePool` for turning on and off implicit Publishing for record Updates."
22652266
return self._implicitPublish
22662267

22672268
@implicitPublish.setter
22682269
def implicitPublish(self, value):
2269-
"Toggle for this specific :class:`DSFResponsePool` for turning on and off implicit Publishing for record Updates."
22702270
if value != True and value != False:
22712271
raise Exception('Value must be True or False')
22722272
self._implicitPublish = value
@@ -2560,11 +2560,11 @@ def ruleset_id(self):
25602560

25612561
@property
25622562
def implicitPublish(self):
2563+
"Toggle for this specific :class:`DSFRuleset` for turning on and off implicit Publishing for record Updates."
25632564
return self._implicitPublish
25642565

25652566
@implicitPublish.setter
25662567
def implicitPublish(self, value):
2567-
"Toggle for this specific :class:`DSFRuleset` for turning on and off implicit Publishing for record Updates."
25682568
if value != True and value != False:
25692569
raise Exception('Value must be True or False')
25702570
self._implicitPublish = value
@@ -3435,11 +3435,11 @@ def ttl(self, value):
34353435

34363436
@property
34373437
def implicitPublish(self):
3438+
"Toggle for this specific :class:`TrafficDirector` for turning on and off implicit Publishing for record Updates."
34383439
return self._implicitPublish
34393440

34403441
@implicitPublish.setter
34413442
def implicitPublish(self, value):
3442-
"Toggle for this specific :class:`TrafficDirector` for turning on and off implicit Publishing for record Updates."
34433443
if value != True and value != False:
34443444
raise Exception('Value must be True or False')
34453445
self._implicitPublish = value

0 commit comments

Comments
 (0)