Skip to content

Commit e7152d6

Browse files
committed
"version 1.3.0"
1 parent 86fd456 commit e7152d6

File tree

53 files changed

+5710
-533
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+5710
-533
lines changed

RELEASENOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Release Notes
2+
### May 2024
3+
* 1.3.0
4+
* support for ixnetwork version 10.20.2403.2
25
### April 2024
36
* 1.2.0
47
* support for ixnetwork version 10.00.2403.64 (10.00 Update-1)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"tests/test_async_operation.py::test_async_operation[10.39.32.111:443:linux]": true
3+
}

ixnetwork_restpy/pytest_tests/.pytest_cache/v/cache/nodeids

Lines changed: 121 additions & 121 deletions
Large diffs are not rendered by default.

ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/aggregation/aggregation.py

Lines changed: 21 additions & 11 deletions
Large diffs are not rendered by default.

ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/card.py

Lines changed: 21 additions & 11 deletions
Large diffs are not rendered by default.

ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/preferences/preferences.py

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ class Preferences(Base):
6666
"ResourceManagerLocation": "resourceManagerLocation",
6767
"ScriptgenTextEditorPath": "scriptgenTextEditorPath",
6868
"SelectDGOnCreation": "selectDGOnCreation",
69+
"SequenceCheckingWhenNoTxRxSync": "sequenceCheckingWhenNoTxRxSync",
6970
"ShortenScenarioObjectNameInMiddle": "shortenScenarioObjectNameInMiddle",
7071
"StreamLogsToSyslogServer": "streamLogsToSyslogServer",
7172
"SyslogHost": "syslogHost",
@@ -586,6 +587,21 @@ def SelectDGOnCreation(self, value):
586587
# type: (bool) -> None
587588
self._set_attribute(self._SDM_ATT_MAP["SelectDGOnCreation"], value)
588589

590+
@property
591+
def SequenceCheckingWhenNoTxRxSync(self):
592+
# type: () -> bool
593+
"""
594+
Returns
595+
-------
596+
- bool: When true, advanced sequence checking is preferred if Tx-Rx Sync is unavailable on any port.
597+
"""
598+
return self._get_attribute(self._SDM_ATT_MAP["SequenceCheckingWhenNoTxRxSync"])
599+
600+
@SequenceCheckingWhenNoTxRxSync.setter
601+
def SequenceCheckingWhenNoTxRxSync(self, value):
602+
# type: (bool) -> None
603+
self._set_attribute(self._SDM_ATT_MAP["SequenceCheckingWhenNoTxRxSync"], value)
604+
589605
@property
590606
def ShortenScenarioObjectNameInMiddle(self):
591607
# type: () -> bool
@@ -697,13 +713,14 @@ def update(
697713
ResourceManagerLocation=None,
698714
ScriptgenTextEditorPath=None,
699715
SelectDGOnCreation=None,
716+
SequenceCheckingWhenNoTxRxSync=None,
700717
ShortenScenarioObjectNameInMiddle=None,
701718
StreamLogsToSyslogServer=None,
702719
SyslogHost=None,
703720
SyslogPort=None,
704721
TransmitMode=None,
705722
):
706-
# type: (bool, bool, int, str, str, str, bool, int, bool, bool, bool, bool, bool, bool, bool, bool, bool, bool, int, int, str, bool, bool, bool, bool, str, List[str], str, str, bool, bool, bool, str, int, str) -> Preferences
723+
# type: (bool, bool, int, str, str, str, bool, int, bool, bool, bool, bool, bool, bool, bool, bool, bool, bool, int, int, str, bool, bool, bool, bool, str, List[str], str, str, bool, bool, bool, bool, str, int, str) -> Preferences
707724
"""Updates preferences resource on the server.
708725
709726
Args
@@ -738,6 +755,7 @@ def update(
738755
- ResourceManagerLocation (str): Set the Resource Manager resources location
739756
- ScriptgenTextEditorPath (str): Set the text editor path for Scriptgen
740757
- SelectDGOnCreation (bool): When true, Device Group will be auto selected in Scenario on a new Topology creation
758+
- SequenceCheckingWhenNoTxRxSync (bool): When true, advanced sequence checking is preferred if Tx-Rx Sync is unavailable on any port.
741759
- ShortenScenarioObjectNameInMiddle (bool): Shorten Topology/DG/NG names in the middle. If this is true, Topology/Device Group/Network Group names are shortened in the middle (with .), otherwise at the end
742760
- StreamLogsToSyslogServer (bool): Enables streaming Logs To Syslog Server
743761
- SyslogHost (str): syslog host
@@ -783,13 +801,14 @@ def find(
783801
ResourceManagerLocation=None,
784802
ScriptgenTextEditorPath=None,
785803
SelectDGOnCreation=None,
804+
SequenceCheckingWhenNoTxRxSync=None,
786805
ShortenScenarioObjectNameInMiddle=None,
787806
StreamLogsToSyslogServer=None,
788807
SyslogHost=None,
789808
SyslogPort=None,
790809
TransmitMode=None,
791810
):
792-
# type: (bool, bool, int, str, str, str, bool, int, bool, bool, bool, bool, bool, bool, bool, bool, bool, bool, int, int, str, bool, bool, bool, bool, str, List[str], List[str], str, str, bool, bool, bool, str, int, str) -> Preferences
811+
# type: (bool, bool, int, str, str, str, bool, int, bool, bool, bool, bool, bool, bool, bool, bool, bool, bool, int, int, str, bool, bool, bool, bool, str, List[str], List[str], str, str, bool, bool, bool, bool, str, int, str) -> Preferences
793812
"""Finds and retrieves preferences resources from the server.
794813
795814
All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve preferences resources from the server.
@@ -829,6 +848,7 @@ def find(
829848
- ResourceManagerLocation (str): Set the Resource Manager resources location
830849
- ScriptgenTextEditorPath (str): Set the text editor path for Scriptgen
831850
- SelectDGOnCreation (bool): When true, Device Group will be auto selected in Scenario on a new Topology creation
851+
- SequenceCheckingWhenNoTxRxSync (bool): When true, advanced sequence checking is preferred if Tx-Rx Sync is unavailable on any port.
832852
- ShortenScenarioObjectNameInMiddle (bool): Shorten Topology/DG/NG names in the middle. If this is true, Topology/Device Group/Network Group names are shortened in the middle (with .), otherwise at the end
833853
- StreamLogsToSyslogServer (bool): Enables streaming Logs To Syslog Server
834854
- SyslogHost (str): syslog host

ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv4peer/bgpipv4peer_55dbd04b8eece05365779cb1ad7445b1.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def EnableTraceroute(self):
403403
"""
404404
Returns
405405
-------
406-
- obj(ixnetwork_restpy.multivalue.Multivalue): This will enable the traceroute functionality on all the BGP peers configured in this port.
406+
- obj(ixnetwork_restpy.multivalue.Multivalue): Enable this flag for using Traceroute feature.
407407
"""
408408
from ixnetwork_restpy.multivalue import Multivalue
409409

@@ -625,7 +625,7 @@ def MaxTtl(self):
625625
"""
626626
Returns
627627
-------
628-
- obj(ixnetwork_restpy.multivalue.Multivalue): The TTL value used in the probes will start from 1 and incremented up to this value.
628+
- obj(ixnetwork_restpy.multivalue.Multivalue): Max TTL
629629
"""
630630
from ixnetwork_restpy.multivalue import Multivalue
631631

@@ -846,7 +846,7 @@ def ProbeInterval(self):
846846
"""
847847
Returns
848848
-------
849-
- obj(ixnetwork_restpy.multivalue.Multivalue): Time interval in milliseconds between each probe per hop.
849+
- obj(ixnetwork_restpy.multivalue.Multivalue): Probe Interval
850850
"""
851851
from ixnetwork_restpy.multivalue import Multivalue
852852

@@ -870,7 +870,7 @@ def QueryCount(self):
870870
"""
871871
Returns
872872
-------
873-
- obj(ixnetwork_restpy.multivalue.Multivalue): Maximum number of paths that can be discovered.
873+
- obj(ixnetwork_restpy.multivalue.Multivalue): Query Count
874874
"""
875875
from ixnetwork_restpy.multivalue import Multivalue
876876

@@ -1144,7 +1144,7 @@ def WaitTime(self):
11441144
"""
11451145
Returns
11461146
-------
1147-
- obj(ixnetwork_restpy.multivalue.Multivalue): Time in milliseconds to wait for a response.
1147+
- obj(ixnetwork_restpy.multivalue.Multivalue): Wait Time(msec)
11481148
"""
11491149
from ixnetwork_restpy.multivalue import Multivalue
11501150

ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv6peer/bgpipv6peer_e8e18076800a69bc4dec7b793af29c5c.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def EnableTraceroute(self):
403403
"""
404404
Returns
405405
-------
406-
- obj(ixnetwork_restpy.multivalue.Multivalue): This will enable the traceroute functionality on all the BGP peers configured in this port.
406+
- obj(ixnetwork_restpy.multivalue.Multivalue): Enable this flag for using Traceroute feature.
407407
"""
408408
from ixnetwork_restpy.multivalue import Multivalue
409409

@@ -625,7 +625,7 @@ def MaxTtl(self):
625625
"""
626626
Returns
627627
-------
628-
- obj(ixnetwork_restpy.multivalue.Multivalue): The TTL value used in the probes will start from 1 and incremented up to this value.
628+
- obj(ixnetwork_restpy.multivalue.Multivalue): Max TTL
629629
"""
630630
from ixnetwork_restpy.multivalue import Multivalue
631631

@@ -846,7 +846,7 @@ def ProbeInterval(self):
846846
"""
847847
Returns
848848
-------
849-
- obj(ixnetwork_restpy.multivalue.Multivalue): Time interval in milliseconds between each probe per hop.
849+
- obj(ixnetwork_restpy.multivalue.Multivalue): Probe Interval
850850
"""
851851
from ixnetwork_restpy.multivalue import Multivalue
852852

@@ -870,7 +870,7 @@ def QueryCount(self):
870870
"""
871871
Returns
872872
-------
873-
- obj(ixnetwork_restpy.multivalue.Multivalue): Maximum number of paths that can be discovered.
873+
- obj(ixnetwork_restpy.multivalue.Multivalue): Query Count
874874
"""
875875
from ixnetwork_restpy.multivalue import Multivalue
876876

@@ -1144,7 +1144,7 @@ def WaitTime(self):
11441144
"""
11451145
Returns
11461146
-------
1147-
- obj(ixnetwork_restpy.multivalue.Multivalue): Time in milliseconds to wait for a response.
1147+
- obj(ixnetwork_restpy.multivalue.Multivalue): Wait Time(msec)
11481148
"""
11491149
from ixnetwork_restpy.multivalue import Multivalue
11501150

0 commit comments

Comments
 (0)