diff --git a/RELEASENOTES.md b/RELEASENOTES.md index b3627a3c6..2e1028139 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,4 +1,10 @@ # Release Notes +### October 2022 +* 1.1.7 + * support ixnetwork version 9.20.2206.84 (9.20 Update-3) + * support uhd version 1.5 patch-2 + * bug fixes in batch add + * drill down statistics sample corrected ### May 2022 * 1.1.6 * support ixnetwork version 9.20.2201.69 (9.20 Update-1) diff --git a/ixnetwork_restpy/assistants/batch/batchadd.py b/ixnetwork_restpy/assistants/batch/batchadd.py index bbf9330f5..5f08a449e 100644 --- a/ixnetwork_restpy/assistants/batch/batchadd.py +++ b/ixnetwork_restpy/assistants/batch/batchadd.py @@ -196,7 +196,18 @@ def _make_xpath_json(self, node, config, child_list): elif "arg1" in element and isinstance( element["arg1"], Base ): - element["arg1"] = element["arg1"]._properties["xpath"] + if "href" in element["arg1"]._properties: + element["arg1"] = self._get_select_response( + element["arg1"]._properties["href"] + )[0]["xpath"] + elif "xpath" in element["arg1"]._properties: + element["arg1"] = element["arg1"]._properties[ + "xpath" + ] + else: + raise Exception( + "neither xpath nor href present, something went wrong!" + ) temp_list.append(element) else: temp_list.append(element) diff --git a/ixnetwork_restpy/pytest_tests/tests/batch/batch_add/test_batch_add_traffic.py b/ixnetwork_restpy/pytest_tests/tests/batch/batch_add/test_batch_add_traffic.py index d4cbcd189..70738914a 100644 --- a/ixnetwork_restpy/pytest_tests/tests/batch/batch_add/test_batch_add_traffic.py +++ b/ixnetwork_restpy/pytest_tests/tests/batch/batch_add/test_batch_add_traffic.py @@ -218,5 +218,44 @@ def test_batch_add_with_quick_flow_traffic(ixnetwork): eth_st.DestinationAddress.Single("00:0c:29:68:05:1E") +def test_batch_add_with_traffic_having_href_objects(ixnetwork): + vports = ixnetwork.Vport.add().add() + ipv4_1 = ( + ixnetwork.Topology.add(Vports=vports[0]) + .DeviceGroup.add(Name="dg1") + .Ethernet.add(Name="eth1") + .Ipv4.add(Name="ip1") + ) + ipv4_2 = ( + ixnetwork.Topology.add(Vports=vports[1]) + .DeviceGroup.add(Name="dg2") + .Ethernet.add(Name="eth2") + .Ipv4.add(Name="ip2") + ) + + with BatchAdd(ixnetwork): + traffic = ixnetwork.Traffic.TrafficItem + scalable_sources = [ + {"arg1": ipv4_2, "arg2": "1", "arg3": "1", "arg4": "1", "arg5": "2"}, + {"arg1": ipv4_2, "arg2": "1", "arg3": "1", "arg4": "3", "arg5": "2"}, + ] + scalable_destinations = [ + {"arg1": ipv4_1, "arg2": "1", "arg3": "1", "arg4": "1", "arg5": "2"} + ] + tr3 = traffic.add(Name="Multicast", TrafficType="ipv4", TrafficItemType="l2L3") + endpoint_set = tr3.EndpointSet.add( + ScalableSources=scalable_sources, ScalableDestinations=scalable_destinations + ) + + assert ( + endpoint_set.href + == "/api/v1/sessions/1/ixnetwork/traffic/trafficItem/1/endpointSet/1" + ) + end_point = ixnetwork.Traffic.TrafficItem.find().EndpointSet.find() + assert end_point.ScalableSources[0]["arg1"] == ipv4_2.href + assert end_point.ScalableSources[1]["arg1"] == ipv4_2.href + assert end_point.ScalableDestinations[0]["arg1"] == ipv4_1.href + + if __name__ == "__main__": pytest.main(["-v", "-s", "--server", "localhost:11009:windows", __file__]) diff --git a/ixnetwork_restpy/samples/statistics/drill_down.py b/ixnetwork_restpy/samples/statistics/drill_down.py index d28437876..b6f091b2c 100644 --- a/ixnetwork_restpy/samples/statistics/drill_down.py +++ b/ixnetwork_restpy/samples/statistics/drill_down.py @@ -29,13 +29,13 @@ # print the drill down options for the view # drill down options are dynamic and are based on tracking options selected during traffic item creation -for drill_down_option in drill_down.AvailableDrillDownOptions: - print(drill_down_option) -drill_down.TargetDrillDownOption = drill_down.AvailableDrillDownOptions[1] for drill_down_filter in drill_down.AvailableTargetRowFilters: print(drill_down_filter) if len(drill_down.AvailableTargetRowFilters) > 0: drill_down.TargetRowFilter = drill_down.AvailableTargetRowFilters[0] +for drill_down_option in drill_down.AvailableDrillDownOptions: + print(drill_down_option) +drill_down.TargetDrillDownOption = drill_down.AvailableDrillDownOptions[1] # perform the drill down operation drill_down.DoDrillDown() diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/aggregation/aggregation.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/aggregation/aggregation.py index 65615a6a9..afd3a6b69 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/aggregation/aggregation.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/aggregation/aggregation.py @@ -111,7 +111,7 @@ def ActivePort(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port): Deprecated. Use activePorts instead. + - str(None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port): Deprecated. Use activePorts instead. """ return self._get_attribute(self._SDM_ATT_MAP["ActivePort"]) @@ -121,7 +121,7 @@ def ActivePorts(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port]): All active ports from Resource Group. + - list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port]): All active ports from Resource Group. """ return self._get_attribute(self._SDM_ATT_MAP["ActivePorts"]) @@ -156,7 +156,7 @@ def ResourcePorts(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port]): All ports from Resource Group. + - list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port]): All ports from Resource Group. """ return self._get_attribute(self._SDM_ATT_MAP["ResourcePorts"]) @@ -209,11 +209,11 @@ def find( Args ---- - - ActivePort (str(None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port)): Deprecated. Use activePorts instead. - - ActivePorts (list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port])): All active ports from Resource Group. + - ActivePort (str(None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port)): Deprecated. Use activePorts instead. + - ActivePorts (list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port])): All active ports from Resource Group. - AvailableModes (list(str[normal | tenGig | fortyGig | singleMode | dualMode | hundredGigNonFanOut | fortyGigFanOut | threeByTenGigFanOut | eightByTenGigFanOut | fourByTwentyFiveGigNonFanOut | twoByTwentyFiveGigNonFanOut | oneByFiftyGigNonFanOut | fortyGigNonFanOut | oneByTenGigFanOut | fourByTenGigFanOut | incompatibleMode | hundredGigCapturePlayback | fortyGigCapturePlayback | novusHundredGigNonFanOut | novusFourByTwentyFiveGigNonFanOut | novusTwoByFiftyGigNonFanOut | novusOneByFortyGigNonFanOut | novusFourByTenGigNonFanOut | krakenOneByFourHundredGigNonFanOut | krakenOneByTwoHundredGigNonFanOut | krakenTwoByOneHundredGigFanOut | krakenFourByFiftyGigFanOut | aresOneOneByFourHundredGigNonFanOut | aresOneTwoByTwoHundredGigFanOut | aresOneFourByOneHundredGigFanOut | aresOneFourByOneHundredGigMacSecFanOut | aresOneEightByFiftyGigFanOut | uhdOneHundredEightByHundredGigNonFanOut | uhdOneHundredEightByFortyGigNonFanOut | uhdOneHundredSixteenByFiftyGigFanOut | uhdOneHundredThirtyTwoByTwentyFiveGigFanOut | uhdOneHundredThirtyTwoByTenGigFanOut | novus5GOneByTenGigNonFanOut | novus5GOneByTwentyFiveGigNonFanOut | novus5GOneByFiftyGigNonFanOut | novus5GOneByHundredGigNonFanOut | starTwoByFourHundredGigNonFannedOutPAM4 | starFourByTwoHundredGigFannedOutPAM4 | starEightByHundredGigFannedOutPAM4 | starFourByHundredGigFannedOutNRZ | starSixteenByFiftyGigFannedOutPAM4 | starEightByFiftyGigFannedOutNRZ | starFourByFortyGigFannedOutNRZ | starSixteenByTwentyFiveGigFannedOutNRZ | starSixteenByTenGigFannedOutNRZ | novusHundredGigNonFanOutHighStream | novusFourByTwentyFiveGigNonFanOutHighStream | novusTwoByFiftyGigNonFanOutHighStream | novusOneByFortyGigNonFanOutHighStream | novusFourByTenGigNonFanOutHighStream])): Gets the supported resource group modes. - Mode (str(normal | tenGig | fortyGig | singleMode | dualMode | hundredGigNonFanOut | fortyGigFanOut | threeByTenGigFanOut | eightByTenGigFanOut | fourByTwentyFiveGigNonFanOut | twoByTwentyFiveGigNonFanOut | oneByFiftyGigNonFanOut | fortyGigNonFanOut | oneByTenGigFanOut | fourByTenGigFanOut | incompatibleMode | hundredGigCapturePlayback | fortyGigCapturePlayback | novusHundredGigNonFanOut | novusFourByTwentyFiveGigNonFanOut | novusTwoByFiftyGigNonFanOut | novusOneByFortyGigNonFanOut | novusFourByTenGigNonFanOut | krakenOneByFourHundredGigNonFanOut | krakenOneByTwoHundredGigNonFanOut | krakenTwoByOneHundredGigFanOut | krakenFourByFiftyGigFanOut | aresOneOneByFourHundredGigNonFanOut | aresOneTwoByTwoHundredGigFanOut | aresOneFourByOneHundredGigFanOut | aresOneFourByOneHundredGigMacSecFanOut | aresOneEightByFiftyGigFanOut | uhdOneHundredEightByHundredGigNonFanOut | uhdOneHundredEightByFortyGigNonFanOut | uhdOneHundredSixteenByFiftyGigFanOut | uhdOneHundredThirtyTwoByTwentyFiveGigFanOut | uhdOneHundredThirtyTwoByTenGigFanOut | novus5GOneByTenGigNonFanOut | novus5GOneByTwentyFiveGigNonFanOut | novus5GOneByFiftyGigNonFanOut | novus5GOneByHundredGigNonFanOut | starTwoByFourHundredGigNonFannedOutPAM4 | starFourByTwoHundredGigFannedOutPAM4 | starEightByHundredGigFannedOutPAM4 | starFourByHundredGigFannedOutNRZ | starSixteenByFiftyGigFannedOutPAM4 | starEightByFiftyGigFannedOutNRZ | starFourByFortyGigFannedOutNRZ | starSixteenByTwentyFiveGigFannedOutNRZ | starSixteenByTenGigFannedOutNRZ | novusHundredGigNonFanOutHighStream | novusFourByTwentyFiveGigNonFanOutHighStream | novusTwoByFiftyGigNonFanOutHighStream | novusOneByFortyGigNonFanOutHighStream | novusFourByTenGigNonFanOutHighStream)): Resource Group mode. - - ResourcePorts (list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port])): All ports from Resource Group. + - ResourcePorts (list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port])): All ports from Resource Group. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/card.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/card.py index 8ac9cf1d6..57aee798b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/card.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/card.py @@ -299,6 +299,28 @@ def read(self, href): """ return self._read(href) + def HotswapCard(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the hotswapCard operation on the server. + + API to perform chassis card hotswap + + hotswapCard(async_operation=bool) + --------------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self.href} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("hotswapCard", payload=payload, response_object=None) + def RefreshInfo(self, *args, **kwargs): # type: (*Any, **Any) -> None """Executes the refreshInfo operation on the server. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/port/port.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/port/port.py index fca8a5385..db7e0b79b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/port/port.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/availablehardware/chassis/card/port/port.py @@ -237,7 +237,7 @@ def CopyTapSettings(self, *args, **kwargs): copyTapSettings(Arg2=list, async_operation=bool) ------------------------------------------------ - - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port])): + - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port])): - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. Raises diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/dot1xglobals/nacsettings/nacposture/nacposture.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/dot1xglobals/nacsettings/nacposture/nacposture.py index 573db6b86..8334322f1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/dot1xglobals/nacsettings/nacposture/nacposture.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/dot1xglobals/nacsettings/nacposture/nacposture.py @@ -69,7 +69,7 @@ def NacTlvs(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacTlv]): List of NacTLVs. + - list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacTlv]): List of NacTLVs. """ return self._get_attribute(self._SDM_ATT_MAP["NacTlvs"]) @@ -125,7 +125,7 @@ def update(self, ExpectedSystemToken=None, NacTlvs=None, Name=None, Selected=Non Args ---- - ExpectedSystemToken (number): Expected System Token. - - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacTlv])): List of NacTLVs. + - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacTlv])): List of NacTLVs. - Name (str): Unique name for this NAC Posture. - Selected (bool): Add to postures list. @@ -142,7 +142,7 @@ def add(self, ExpectedSystemToken=None, NacTlvs=None, Name=None, Selected=None): Args ---- - ExpectedSystemToken (number): Expected System Token. - - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacTlv])): List of NacTLVs. + - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacTlv])): List of NacTLVs. - Name (str): Unique name for this NAC Posture. - Selected (bool): Add to postures list. @@ -184,7 +184,7 @@ def find( Args ---- - ExpectedSystemToken (number): Expected System Token. - - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacTlv])): List of NacTLVs. + - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacTlv])): List of NacTLVs. - Name (str): Unique name for this NAC Posture. - ObjectId (str): Unique identifier for this object - Selected (bool): Add to postures list. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/dot1xglobals/nacsettings/nacsequence/nacsequence.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/dot1xglobals/nacsettings/nacsequence/nacsequence.py index 7bc19359f..e5f77a317 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/dot1xglobals/nacsettings/nacsequence/nacsequence.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/dot1xglobals/nacsettings/nacsequence/nacsequence.py @@ -52,7 +52,7 @@ def NacPostures(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacPosture]): List of NacPostures. + - list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacPosture]): List of NacPostures. """ return self._get_attribute(self._SDM_ATT_MAP["NacPostures"]) @@ -92,7 +92,7 @@ def update(self, NacPostures=None, Name=None): Args ---- - - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacPosture])): List of NacPostures. + - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacPosture])): List of NacPostures. - Name (str): Unique name for this NAC Sequence. Raises @@ -107,7 +107,7 @@ def add(self, NacPostures=None, Name=None): Args ---- - - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacPosture])): List of NacPostures. + - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacPosture])): List of NacPostures. - Name (str): Unique name for this NAC Sequence. Returns @@ -140,7 +140,7 @@ def find(self, NacPostures=None, Name=None, ObjectId=None): Args ---- - - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacPosture])): List of NacPostures. + - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacPosture])): List of NacPostures. - Name (str): Unique name for this NAC Sequence. - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/eapoudpglobals/nacsettings/nacposture/nacposture.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/eapoudpglobals/nacsettings/nacposture/nacposture.py index 573db6b86..d4098aa8d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/eapoudpglobals/nacsettings/nacposture/nacposture.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/eapoudpglobals/nacsettings/nacposture/nacposture.py @@ -69,7 +69,7 @@ def NacTlvs(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacTlv]): List of NacTLVs. + - list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacTlv]): List of NacTLVs. """ return self._get_attribute(self._SDM_ATT_MAP["NacTlvs"]) @@ -125,7 +125,7 @@ def update(self, ExpectedSystemToken=None, NacTlvs=None, Name=None, Selected=Non Args ---- - ExpectedSystemToken (number): Expected System Token. - - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacTlv])): List of NacTLVs. + - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacTlv])): List of NacTLVs. - Name (str): Unique name for this NAC Posture. - Selected (bool): Add to postures list. @@ -142,7 +142,7 @@ def add(self, ExpectedSystemToken=None, NacTlvs=None, Name=None, Selected=None): Args ---- - ExpectedSystemToken (number): Expected System Token. - - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacTlv])): List of NacTLVs. + - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacTlv])): List of NacTLVs. - Name (str): Unique name for this NAC Posture. - Selected (bool): Add to postures list. @@ -184,7 +184,7 @@ def find( Args ---- - ExpectedSystemToken (number): Expected System Token. - - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacTlv])): List of NacTLVs. + - NacTlvs (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacTlv])): List of NacTLVs. - Name (str): Unique name for this NAC Posture. - ObjectId (str): Unique identifier for this object - Selected (bool): Add to postures list. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/eapoudpglobals/nacsettings/nacsequence/nacsequence.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/eapoudpglobals/nacsettings/nacsequence/nacsequence.py index 7bc19359f..92ab028c1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/eapoudpglobals/nacsettings/nacsequence/nacsequence.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/eapoudpglobals/nacsettings/nacsequence/nacsequence.py @@ -52,7 +52,7 @@ def NacPostures(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacPosture]): List of NacPostures. + - list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacPosture]): List of NacPostures. """ return self._get_attribute(self._SDM_ATT_MAP["NacPostures"]) @@ -92,7 +92,7 @@ def update(self, NacPostures=None, Name=None): Args ---- - - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacPosture])): List of NacPostures. + - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacPosture])): List of NacPostures. - Name (str): Unique name for this NAC Sequence. Raises @@ -107,7 +107,7 @@ def add(self, NacPostures=None, Name=None): Args ---- - - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacPosture])): List of NacPostures. + - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacPosture])): List of NacPostures. - Name (str): Unique name for this NAC Sequence. Returns @@ -140,7 +140,7 @@ def find(self, NacPostures=None, Name=None, ObjectId=None): Args ---- - - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/.../nacPosture])): List of NacPostures. + - NacPostures (list(str[None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacPosture])): List of NacPostures. - Name (str): Unique name for this NAC Sequence. - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/egtps5s8sgwglobals/globaltrafficprofiles5s8/globaltrafficprofiles5s8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/egtps5s8sgwglobals/globaltrafficprofiles5s8/globaltrafficprofiles5s8.py index abc7ed667..25aad3f13 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/egtps5s8sgwglobals/globaltrafficprofiles5s8/globaltrafficprofiles5s8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/egtps5s8sgwglobals/globaltrafficprofiles5s8/globaltrafficprofiles5s8.py @@ -70,7 +70,7 @@ def Apn(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalEgtpApnS5S8): + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalEgtpApnS5S8): """ return self._get_attribute(self._SDM_ATT_MAP["Apn"]) @@ -402,7 +402,7 @@ def update( Args ---- - - Apn (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalEgtpApnS5S8)): + - Apn (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalEgtpApnS5S8)): - Arp (number): Priority of allocation and retention - DefaultBearerFallback (bool): Fallback on default bearer if no dedicated bearer was created for this activity. - EnableSessionTimeout (bool): Deprecated. Kept for TCL bw compatibility @@ -457,7 +457,7 @@ def add( Args ---- - - Apn (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalEgtpApnS5S8)): + - Apn (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalEgtpApnS5S8)): - Arp (number): Priority of allocation and retention - DefaultBearerFallback (bool): Fallback on default bearer if no dedicated bearer was created for this activity. - EnableSessionTimeout (bool): Deprecated. Kept for TCL bw compatibility @@ -531,7 +531,7 @@ def find( Args ---- - - Apn (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalEgtpApnS5S8)): + - Apn (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalEgtpApnS5S8)): - Arp (number): Priority of allocation and retention - DefaultBearerFallback (bool): Fallback on default bearer if no dedicated bearer was created for this activity. - EnableSessionTimeout (bool): Deprecated. Kept for TCL bw compatibility diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/iptvglobals/globalchannellist/globalchannellist.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/iptvglobals/globalchannellist/globalchannellist.py index 58cf6b62e..22acd29a0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/iptvglobals/globalchannellist/globalchannellist.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/protocolstack/iptvglobals/globalchannellist/globalchannellist.py @@ -132,7 +132,7 @@ def MulticastGroup(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): The associated multicast group range for defining the channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): The associated multicast group range for defining the channels. """ return self._get_attribute(self._SDM_ATT_MAP["MulticastGroup"]) @@ -186,7 +186,7 @@ def update( - InitialChannel (number): The first channel to be joined by the first host. - InitialIncrement (number): The increment step between consecutive hosts joining the channels. - LastChannel (number): The last channel from the multicast group range included in the current list. - - MulticastGroup (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): The associated multicast group range for defining the channels. + - MulticastGroup (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): The associated multicast group range for defining the channels. - Name (str): The name of the channel list. Raises @@ -215,7 +215,7 @@ def add( - InitialChannel (number): The first channel to be joined by the first host. - InitialIncrement (number): The increment step between consecutive hosts joining the channels. - LastChannel (number): The last channel from the multicast group range included in the current list. - - MulticastGroup (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): The associated multicast group range for defining the channels. + - MulticastGroup (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): The associated multicast group range for defining the channels. - Name (str): The name of the channel list. Returns @@ -263,7 +263,7 @@ def find( - InitialChannel (number): The first channel to be joined by the first host. - InitialIncrement (number): The increment step between consecutive hosts joining the channels. - LastChannel (number): The last channel from the multicast group range included in the current list. - - MulticastGroup (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): The associated multicast group range for defining the channels. + - MulticastGroup (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): The associated multicast group range for defining the channels. - Name (str): The name of the channel list. - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/testworkflow/testworkflow.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/testworkflow/testworkflow.py index e7cc2c2af..f1e288acf 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/testworkflow/testworkflow.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/testworkflow/testworkflow.py @@ -238,7 +238,7 @@ def Startselected(self, *args, **kwargs): startselected(Arg2=href, Arg3=bool, async_operation=bool) --------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/topology/.../deviceGroup)): objref to /topology or device group + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/topology/.../deviceGroup | /api/v1/sessions/1/ixnetwork/topology/deviceGroup)): objref to /topology or device group - Arg3 (bool): a boolean indicating if ownership should be taken forcefully - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv4peer/bgpipv4peer_5f62cc4449d2b3495027c62205d73814.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv4peer/bgpipv4peer_afa8d6e968f83567434da3bbaadcd5ec.py similarity index 93% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv4peer/bgpipv4peer_5f62cc4449d2b3495027c62205d73814.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv4peer/bgpipv4peer_afa8d6e968f83567434da3bbaadcd5ec.py index 1780a8845..aa76cd3b3 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv4peer/bgpipv4peer_5f62cc4449d2b3495027c62205d73814.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv4peer/bgpipv4peer_afa8d6e968f83567434da3bbaadcd5ec.py @@ -37,6 +37,9 @@ class BgpIpv4Peer(Base): _SDM_ATT_MAP = { "BIERTunnelType": "BIERTunnelType", "LLGRCapabilityCode": "LLGRCapabilityCode", + "RedirectIPv4NHopType": "RedirectIPv4NHopType", + "RedirectIPv6NHopType": "RedirectIPv6NHopType", + "RedirectIPv6Type": "RedirectIPv6Type", "BgpConfMemType": "bgpConfMemType", "BgpRouterId": "bgpRouterId", "BindingType": "bindingType", @@ -58,6 +61,7 @@ class BgpIpv4Peer(Base): "Ipv4LocRemoteAddrType": "ipv4LocRemoteAddrType", "Ipv4NodeAddrType": "ipv4NodeAddrType", "Ipv6AddrIndexType": "ipv6AddrIndexType", + "Ipv6FlowspecDraftVersion": "ipv6FlowspecDraftVersion", "Ipv6LocRemoteAddrType": "ipv6LocRemoteAddrType", "Ipv6NodeAddrType": "ipv6NodeAddrType", "Ipv6SIDType": "ipv6SIDType", @@ -192,6 +196,48 @@ def LLGRCapabilityCode(self): self, self._get_attribute(self._SDM_ATT_MAP["LLGRCapabilityCode"]) ) + @property + def RedirectIPv4NHopType(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Redirect To IPv4 Next Hop Type + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv4NHopType"]) + ) + + @property + def RedirectIPv6NHopType(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Redirect IPv6 Next Hop Type + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv6NHopType"]) + ) + + @property + def RedirectIPv6Type(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify the Type value for RT Redirect IPv6 Action in Flowspec. By default it is set to 0x000d. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv6Type"]) + ) + @property def BgpConfMemType(self): # type: () -> 'Multivalue' @@ -469,6 +515,20 @@ def Ipv6AddrIndexType(self): self, self._get_attribute(self._SDM_ATT_MAP["Ipv6AddrIndexType"]) ) + @property + def Ipv6FlowspecDraftVersion(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify the older draft version for IPv6 flowspec. By default, the value is set to RFC8956. You can change this field value to draft-ietf-idr-flow-spec-v6-08, if you want backward compatibility with the earlier implementation. If older draft is selected then IxNetwork performs the encoding of Destination Prefix and Source Prefix as per the older draft process. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Ipv6FlowspecDraftVersion"]) + ) + @property def Ipv6LocRemoteAddrType(self): # type: () -> 'Multivalue' @@ -1068,6 +1128,9 @@ def get_device_ids( PortNames=None, BIERTunnelType=None, LLGRCapabilityCode=None, + RedirectIPv4NHopType=None, + RedirectIPv6NHopType=None, + RedirectIPv6Type=None, BgpConfMemType=None, BgpRouterId=None, BindingType=None, @@ -1087,6 +1150,7 @@ def get_device_ids( Ipv4LocRemoteAddrType=None, Ipv4NodeAddrType=None, Ipv6AddrIndexType=None, + Ipv6FlowspecDraftVersion=None, Ipv6LocRemoteAddrType=None, Ipv6NodeAddrType=None, Ipv6SIDType=None, @@ -1132,6 +1196,9 @@ def get_device_ids( - PortNames (str): optional regex of port names - BIERTunnelType (str): optional regex of BIERTunnelType - LLGRCapabilityCode (str): optional regex of LLGRCapabilityCode + - RedirectIPv4NHopType (str): optional regex of RedirectIPv4NHopType + - RedirectIPv6NHopType (str): optional regex of RedirectIPv6NHopType + - RedirectIPv6Type (str): optional regex of RedirectIPv6Type - BgpConfMemType (str): optional regex of bgpConfMemType - BgpRouterId (str): optional regex of bgpRouterId - BindingType (str): optional regex of bindingType @@ -1151,6 +1218,7 @@ def get_device_ids( - Ipv4LocRemoteAddrType (str): optional regex of ipv4LocRemoteAddrType - Ipv4NodeAddrType (str): optional regex of ipv4NodeAddrType - Ipv6AddrIndexType (str): optional regex of ipv6AddrIndexType + - Ipv6FlowspecDraftVersion (str): optional regex of ipv6FlowspecDraftVersion - Ipv6LocRemoteAddrType (str): optional regex of ipv6LocRemoteAddrType - Ipv6NodeAddrType (str): optional regex of ipv6NodeAddrType - Ipv6SIDType (str): optional regex of ipv6SIDType diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv6peer/bgpipv6peer_d0158802a4f5bc87a5d65f2f6c02869e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv6peer/bgpipv6peer_8ab1a4e13ad76078ea4d9cfab0bd1d95.py similarity index 93% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv6peer/bgpipv6peer_d0158802a4f5bc87a5d65f2f6c02869e.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv6peer/bgpipv6peer_8ab1a4e13ad76078ea4d9cfab0bd1d95.py index ea6d1f287..79fefc805 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv6peer/bgpipv6peer_d0158802a4f5bc87a5d65f2f6c02869e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bgpipv6peer/bgpipv6peer_8ab1a4e13ad76078ea4d9cfab0bd1d95.py @@ -37,6 +37,9 @@ class BgpIpv6Peer(Base): _SDM_ATT_MAP = { "BIERTunnelType": "BIERTunnelType", "LLGRCapabilityCode": "LLGRCapabilityCode", + "RedirectIPv4NHopType": "RedirectIPv4NHopType", + "RedirectIPv6NHopType": "RedirectIPv6NHopType", + "RedirectIPv6Type": "RedirectIPv6Type", "BgpConfMemType": "bgpConfMemType", "BgpRouterId": "bgpRouterId", "BindingType": "bindingType", @@ -58,6 +61,7 @@ class BgpIpv6Peer(Base): "Ipv4LocRemoteAddrType": "ipv4LocRemoteAddrType", "Ipv4NodeAddrType": "ipv4NodeAddrType", "Ipv6AddrIndexType": "ipv6AddrIndexType", + "Ipv6FlowspecDraftVersion": "ipv6FlowspecDraftVersion", "Ipv6LocRemoteAddrType": "ipv6LocRemoteAddrType", "Ipv6NodeAddrType": "ipv6NodeAddrType", "Ipv6SIDType": "ipv6SIDType", @@ -192,6 +196,48 @@ def LLGRCapabilityCode(self): self, self._get_attribute(self._SDM_ATT_MAP["LLGRCapabilityCode"]) ) + @property + def RedirectIPv4NHopType(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Redirect To IPv4 Next Hop Type + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv4NHopType"]) + ) + + @property + def RedirectIPv6NHopType(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Redirect IPv6 Next Hop Type + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv6NHopType"]) + ) + + @property + def RedirectIPv6Type(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify the Type value for RT Redirect IPv6 Action in Flowspec. By default it is set to 0x000d. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv6Type"]) + ) + @property def BgpConfMemType(self): # type: () -> 'Multivalue' @@ -469,6 +515,20 @@ def Ipv6AddrIndexType(self): self, self._get_attribute(self._SDM_ATT_MAP["Ipv6AddrIndexType"]) ) + @property + def Ipv6FlowspecDraftVersion(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify the older draft version for IPv6 flowspec. By default, the value is set to RFC8956. You can change this field value to draft-ietf-idr-flow-spec-v6-08, if you want backward compatibility with the earlier implementation. If older draft is selected then IxNetwork performs the encoding of Destination Prefix and Source Prefix as per the older draft process. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Ipv6FlowspecDraftVersion"]) + ) + @property def Ipv6LocRemoteAddrType(self): # type: () -> 'Multivalue' @@ -1068,6 +1128,9 @@ def get_device_ids( PortNames=None, BIERTunnelType=None, LLGRCapabilityCode=None, + RedirectIPv4NHopType=None, + RedirectIPv6NHopType=None, + RedirectIPv6Type=None, BgpConfMemType=None, BgpRouterId=None, BindingType=None, @@ -1087,6 +1150,7 @@ def get_device_ids( Ipv4LocRemoteAddrType=None, Ipv4NodeAddrType=None, Ipv6AddrIndexType=None, + Ipv6FlowspecDraftVersion=None, Ipv6LocRemoteAddrType=None, Ipv6NodeAddrType=None, Ipv6SIDType=None, @@ -1132,6 +1196,9 @@ def get_device_ids( - PortNames (str): optional regex of port names - BIERTunnelType (str): optional regex of BIERTunnelType - LLGRCapabilityCode (str): optional regex of LLGRCapabilityCode + - RedirectIPv4NHopType (str): optional regex of RedirectIPv4NHopType + - RedirectIPv6NHopType (str): optional regex of RedirectIPv6NHopType + - RedirectIPv6Type (str): optional regex of RedirectIPv6Type - BgpConfMemType (str): optional regex of bgpConfMemType - BgpRouterId (str): optional regex of bgpRouterId - BindingType (str): optional regex of bindingType @@ -1151,6 +1218,7 @@ def get_device_ids( - Ipv4LocRemoteAddrType (str): optional regex of ipv4LocRemoteAddrType - Ipv4NodeAddrType (str): optional regex of ipv4NodeAddrType - Ipv6AddrIndexType (str): optional regex of ipv6AddrIndexType + - Ipv6FlowspecDraftVersion (str): optional regex of ipv6FlowspecDraftVersion - Ipv6LocRemoteAddrType (str): optional regex of ipv6LocRemoteAddrType - Ipv6NodeAddrType (str): optional regex of ipv6NodeAddrType - Ipv6SIDType (str): optional regex of ipv6SIDType diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/topology_678a8dc80c9b4b2b5c741072eab4305d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/topology_678a8dc80c9b4b2b5c741072eab4305d.py index 282231fe6..0181a9652 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/topology_678a8dc80c9b4b2b5c741072eab4305d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/topology_678a8dc80c9b4b2b5c741072eab4305d.py @@ -105,13 +105,13 @@ def BgpIpv4Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.globals.topology.bgpipv4peer.bgpipv4peer_5f62cc4449d2b3495027c62205d73814.BgpIpv4Peer): An instance of the BgpIpv4Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.globals.topology.bgpipv4peer.bgpipv4peer_afa8d6e968f83567434da3bbaadcd5ec.BgpIpv4Peer): An instance of the BgpIpv4Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.globals.topology.bgpipv4peer.bgpipv4peer_5f62cc4449d2b3495027c62205d73814 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.globals.topology.bgpipv4peer.bgpipv4peer_afa8d6e968f83567434da3bbaadcd5ec import ( BgpIpv4Peer, ) @@ -125,13 +125,13 @@ def BgpIpv6Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.globals.topology.bgpipv6peer.bgpipv6peer_d0158802a4f5bc87a5d65f2f6c02869e.BgpIpv6Peer): An instance of the BgpIpv6Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.globals.topology.bgpipv6peer.bgpipv6peer_8ab1a4e13ad76078ea4d9cfab0bd1d95.BgpIpv6Peer): An instance of the BgpIpv6Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.globals.topology.bgpipv6peer.bgpipv6peer_d0158802a4f5bc87a5d65f2f6c02869e import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.globals.topology.bgpipv6peer.bgpipv6peer_8ab1a4e13ad76078ea4d9cfab0bd1d95 import ( BgpIpv6Peer, ) @@ -1800,7 +1800,7 @@ def FetchScenarioObjectsShortenedNames(self, *args, **kwargs): fetchScenarioObjectsShortenedNames(Arg2=href, Arg3=number, async_operation=bool)string -------------------------------------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/topology/.../deviceGroup | /api/v1/sessions/1/ixnetwork/topology/.../networkGroup)): objref to /topology or device group or network group + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/topology/.../deviceGroup | /api/v1/sessions/1/ixnetwork/topology/.../networkGroup | /api/v1/sessions/1/ixnetwork/topology/deviceGroup | /api/v1/sessions/1/ixnetwork/topology/deviceGroup/networkGroup)): objref to /topology or device group or network group - Arg3 (number): Max number of characters to display - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: shortened Topology/Device Group/Network Group names in case of ver long names diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/impairment/profile/profile.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/impairment/profile/profile.py index 0512e7ec5..b4a54e337 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/impairment/profile/profile.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/impairment/profile/profile.py @@ -295,7 +295,7 @@ def Links__(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/impairment/.../link]): List of references to impairment links. + - list(str[None | /api/v1/sessions/1/ixnetwork/impairment/link]): List of references to impairment links. """ return self._get_attribute(self._SDM_ATT_MAP["Links__"]) @@ -382,7 +382,7 @@ def update( Args ---- - - Links__ (list(str[None | /api/v1/sessions/1/ixnetwork/impairment/.../link])): List of references to impairment links. + - Links__ (list(str[None | /api/v1/sessions/1/ixnetwork/impairment/link])): List of references to impairment links. - AllLinks (bool): If true, apply the profile to all impairment links. If not, only apply the profile to packets on selected links. - Enabled (bool): If true, enables the profile. - Name (str): The name of the profile. @@ -400,7 +400,7 @@ def add(self, Links__=None, AllLinks=None, Enabled=None, Name=None, Priority=Non Args ---- - - Links__ (list(str[None | /api/v1/sessions/1/ixnetwork/impairment/.../link])): List of references to impairment links. + - Links__ (list(str[None | /api/v1/sessions/1/ixnetwork/impairment/link])): List of references to impairment links. - AllLinks (bool): If true, apply the profile to all impairment links. If not, only apply the profile to packets on selected links. - Enabled (bool): If true, enables the profile. - Name (str): The name of the profile. @@ -444,7 +444,7 @@ def find( Args ---- - - Links__ (list(str[None | /api/v1/sessions/1/ixnetwork/impairment/.../link])): List of references to impairment links. + - Links__ (list(str[None | /api/v1/sessions/1/ixnetwork/impairment/link])): List of references to impairment links. - AllLinks (bool): If true, apply the profile to all impairment links. If not, only apply the profile to packets on selected links. - Enabled (bool): If true, enables the profile. - Name (str): The name of the profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/ixnetwork.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/ixnetwork.py index f32d010be..6a8cc3160 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/ixnetwork.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/ixnetwork.py @@ -939,7 +939,7 @@ def GetAggregatedDeviceGroupStatus(self, *args, **kwargs): getAggregatedDeviceGroupStatus(async_operation=bool)list -------------------------------------------------------- - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:list[dict(arg1:str,arg2:number)])): + - Returns list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:list[dict(arg1:str,arg2:number)])): Raises ------ @@ -1355,7 +1355,7 @@ def GetNetworkGroupSize(self, *args, **kwargs): getNetworkGroupSize(async_operation=bool)list --------------------------------------------- - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:list[dict(arg1:str,arg2:number)])): + - Returns list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:list[dict(arg1:str,arg2:number)])): Raises ------ @@ -1457,7 +1457,7 @@ def GetRecommendedSettings(self, *args, **kwargs): getRecommendedSettings(Arg1=string, Arg2=list, async_operation=bool) -------------------------------------------------------------------- - Arg1 (str): - - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port])): + - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port])): - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. getRecommendedSettings(Arg1=string, Arg2=list, async_operation=bool) @@ -1534,7 +1534,7 @@ def GetTopologyStatus(self, *args, **kwargs): getTopologyStatus(async_operation=bool)list ------------------------------------------- - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:list[dict(arg1:str,arg2:number)],arg3:str[notstarted\~starting\~started\~stopping\~error\~mixed])): + - Returns list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:list[dict(arg1:str,arg2:number)],arg3:str[notstarted\~starting\~started\~stopping\~error\~mixed])): Raises ------ @@ -1741,7 +1741,7 @@ def MergeCapture(self, *args, **kwargs): mergeCapture(Arg1=string, Arg2=href, Arg3=enum, Arg4=string, async_operation=bool) ---------------------------------------------------------------------------------- - Arg1 (str): Full path to the capture file. - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/vport/.../capture)): The port capture object. + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/vport/capture)): The port capture object. - Arg3 (str(control | data)): The type of the capture, either data or control. - Arg4 (str): The full path where the resulted merged capture will be saved, the result capture name needs to contain extension also. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. @@ -2080,7 +2080,7 @@ def Select(self, *args, **kwargs): select(Selects=list, async_operation=bool)string ------------------------------------------------ - - Selects (list(dict(from:str[None | /api/v1/sessions/1/ixnetwork//.../*],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(child:str,properties:list[str])]))): A list of select structures.Each select structure consists of a starting point in the hierarchy. This starting point must exist and is defined as the 'from' value.Properties for the 'from' value are optional and can be retrieved using the 'properties' list.To retrieve all properties specify the '*' wildcard. Regex is not supported in the 'properties' list.Individual nodes under the starting point can be retrieved. These are specified in the 'children' list.Each item in the children list contains a 'child' name, a list of 'properties' and a list of filters by which to reduce the result set.The 'child' name can be a single name or a regex.Properties that reference another object can have that object's content inlined by specifying inline children.Any child nodes below the object reference can be expanded as long as they are specified in the inline children. + - Selects (list(dict(from:str[None | /api/v1/sessions/1/ixnetwork/],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(child:str,properties:list[str])]))): A list of select structures.Each select structure consists of a starting point in the hierarchy. This starting point must exist and is defined as the 'from' value.Properties for the 'from' value are optional and can be retrieved using the 'properties' list.To retrieve all properties specify the '*' wildcard. Regex is not supported in the 'properties' list.Individual nodes under the starting point can be retrieved. These are specified in the 'children' list.Each item in the children list contains a 'child' name, a list of 'properties' and a list of filters by which to reduce the result set.The 'child' name can be a single name or a regex.Properties that reference another object can have that object's content inlined by specifying inline children.Any child nodes below the object reference can be expanded as long as they are specified in the inline children. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: A json encoded string of result sets.The encoded string will contain a list of result sets with each select producing a result set. @@ -2240,7 +2240,7 @@ def SetPortTransmitDuration(self, *args, **kwargs): setPortTransmitDuration(Arg1=list, async_operation=bool) -------------------------------------------------------- - - Arg1 (list(dict(arg1:number,arg2:list[str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/traffic | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream | /api/v1/sessions/1/ixnetwork/vport]]))): An array of structures. Each structure is an duration and a valid object reference. + - Arg1 (list(dict(arg1:number,arg2:list[str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/traffic | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream | /api/v1/sessions/1/ixnetwork/vport]]))): An array of structures. Each structure is an duration and a valid object reference. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. Raises diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/connector_14f09e8cbd52d663d00858c35d771fda.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/connector_14f09e8cbd52d663d00858c35d771fda.py index fa3e8ad92..6c99aa9a4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/connector_14f09e8cbd52d663d00858c35d771fda.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/connector_14f09e8cbd52d663d00858c35d771fda.py @@ -52,7 +52,7 @@ def ConnectedTo(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/lag/.../*): Scenario element this connector is connecting to + - str(None | /api/v1/sessions/1/ixnetwork/lag): Scenario element this connector is connecting to """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedTo"]) @@ -87,7 +87,7 @@ def update(self, ConnectedTo=None): Args ---- - - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/lag/.../*)): Scenario element this connector is connecting to + - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/lag)): Scenario element this connector is connecting to Raises ------ @@ -101,7 +101,7 @@ def add(self, ConnectedTo=None): Args ---- - - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/lag/.../*)): Scenario element this connector is connecting to + - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/lag)): Scenario element this connector is connecting to Returns ------- @@ -133,7 +133,7 @@ def find(self, ConnectedTo=None, Count=None, PropagateMultiplier=None): Args ---- - - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/lag/.../*)): Scenario element this connector is connecting to + - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/lag)): Scenario element this connector is connecting to - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - PropagateMultiplier (bool): The Connector will propagate the multiplicity of destination back to the source and its parent NetworkElementSet diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/ethernet_16074ace2e581d9f35640391bde73384.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/ethernet_16074ace2e581d9f35640391bde73384.py index b2c49b830..c97262850 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/ethernet_16074ace2e581d9f35640391bde73384.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/ethernet_16074ace2e581d9f35640391bde73384.py @@ -215,7 +215,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/lag]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -261,7 +261,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -350,7 +350,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/lag]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -426,11 +426,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NotifyMACMove (bool): Flag to determine if MAC move notification to be sent - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of secondary (many to one) child layer protocols - UseVlans (bool): Flag to determine whether VLANs are enabled - VlanCount (number): Number of active VLANs @@ -455,11 +455,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NotifyMACMove (bool): Flag to determine if MAC move notification to be sent - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of secondary (many to one) child layer protocols - UseVlans (bool): Flag to determine whether VLANs are enabled - VlanCount (number): Number of active VLANs @@ -507,15 +507,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NotifyMACMove (bool): Flag to determine if MAC move notification to be sent - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - UseVlans (bool): Flag to determine whether VLANs are enabled diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lag_cd537f07f912db233dacbe727e8568d7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lag_cd537f07f912db233dacbe727e8568d7.py index 4b062be45..e9e62869d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lag_cd537f07f912db233dacbe727e8568d7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lag_cd537f07f912db233dacbe727e8568d7.py @@ -267,6 +267,30 @@ def Abort(self, *args, **kwargs): payload[item[0]] = item[1] return self._execute("abort", payload=payload, response_object=None) + def AddEgressOnlyTracking(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the addEgressOnlyTracking operation on the server. + + Add Egress Only Tracking to the configuration. Pass only those ports which do not have egress only tracking enabled + + addEgressOnlyTracking(async_operation=bool) + ------------------------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute( + "addEgressOnlyTracking", payload=payload, response_object=None + ) + def AddQuickFlowGroups(self, *args, **kwargs): # type: (*Any, **Any) -> None """Executes the addQuickFlowGroups operation on the server. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lagportlacp_20ffef1c99dfba818871a069644627d6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lagportlacp_20ffef1c99dfba818871a069644627d6.py index 7d6dff59f..8c65ccc42 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lagportlacp_20ffef1c99dfba818871a069644627d6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lagportlacp_20ffef1c99dfba818871a069644627d6.py @@ -227,7 +227,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/lag]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -275,7 +275,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -472,7 +472,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/lag]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -537,10 +537,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of secondary (many to one) child layer protocols Raises ------ @@ -554,10 +554,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of secondary (many to one) child layer protocols Returns ------- @@ -601,15 +601,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SourceMac (list(str)): Source MAC - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lagportstaticlag_91864be5b58104e6349e12f415e28075.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lagportstaticlag_91864be5b58104e6349e12f415e28075.py index fcdf93100..db0a9d2c4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lagportstaticlag_91864be5b58104e6349e12f415e28075.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/lagportstaticlag_91864be5b58104e6349e12f415e28075.py @@ -83,7 +83,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/lag]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -117,7 +117,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -179,7 +179,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/lag]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -216,10 +216,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of secondary (many to one) child layer protocols Raises ------ @@ -233,10 +233,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of secondary (many to one) child layer protocols Returns ------- @@ -279,14 +279,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/lag])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/protocolstack_1f83cdd4a566eb265063880d7c835bb4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/protocolstack_1f83cdd4a566eb265063880d7c835bb4.py index d51ed48f5..fa8a69bd9 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/protocolstack_1f83cdd4a566eb265063880d7c835bb4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/lag/protocolstack_1f83cdd4a566eb265063880d7c835bb4.py @@ -117,7 +117,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -227,7 +227,7 @@ def find( ---- - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of device instances per parent device instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. @@ -292,16 +292,16 @@ def CopyPaste(self, *args, **kwargs): copyPaste(Arg2=href, async_operation=bool)list ---------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork//.../*)): The destination node below which the copied node will be pasted + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/)): The destination node below which the copied node will be pasted - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns list(str[None | /api/v1/sessions/1/ixnetwork//.../*]): The newly copied node. + - Returns list(str[None | /api/v1/sessions/1/ixnetwork/]): The newly copied node. copyPaste(Arg2=href, Arg3=enum, async_operation=bool)list --------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork//.../*)): The destination node below which the copied node will be pasted + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/)): The destination node below which the copied node will be pasted - Arg3 (str(regular | unique)): Type of Paste, regular or Unique. Unique generates unique Ethernet MAC address and Ipv4 address on Paste. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns list(str[None | /api/v1/sessions/1/ixnetwork//.../*]): The newly copied node. + - Returns list(str[None | /api/v1/sessions/1/ixnetwork/]): The newly copied node. Raises ------ diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/quicktest.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/quicktest.py index b79db7018..711fe9f71 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/quicktest.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/quicktest.py @@ -1233,7 +1233,7 @@ def RunningTest(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../*]): Returns list containing the currently running QuickTest + - list(str[None | /api/v1/sessions/1/ixnetwork/quickTest]): Returns list containing the currently running QuickTest """ return self._get_attribute(self._SDM_ATT_MAP["RunningTest"]) @@ -1243,7 +1243,7 @@ def RunningTestObj(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../*]): Returns list containing the currently running QuickTest + - list(str[None | /api/v1/sessions/1/ixnetwork/quickTest]): Returns list containing the currently running QuickTest """ return self._get_attribute(self._SDM_ATT_MAP["RunningTestObj"]) @@ -1253,7 +1253,7 @@ def TestIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../*]): Returns list containing the QuickTest test in the configuration + - list(str[None | /api/v1/sessions/1/ixnetwork/quickTest]): Returns list containing the QuickTest test in the configuration """ return self._get_attribute(self._SDM_ATT_MAP["TestIds"]) @@ -1267,9 +1267,9 @@ def find(self, RunningTest=None, RunningTestObj=None, TestIds=None): Args ---- - - RunningTest (list(str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../*])): Returns list containing the currently running QuickTest - - RunningTestObj (list(str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../*])): Returns list containing the currently running QuickTest - - TestIds (list(str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../*])): Returns list containing the QuickTest test in the configuration + - RunningTest (list(str[None | /api/v1/sessions/1/ixnetwork/quickTest])): Returns list containing the currently running QuickTest + - RunningTestObj (list(str[None | /api/v1/sessions/1/ixnetwork/quickTest])): Returns list containing the currently running QuickTest + - TestIds (list(str[None | /api/v1/sessions/1/ixnetwork/quickTest])): Returns list containing the QuickTest test in the configuration Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_008ae9871a97d31c1efea64e053d936f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_008ae9871a97d31c1efea64e053d936f.py index 0bb41508e..3d8389f9d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_008ae9871a97d31c1efea64e053d936f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_008ae9871a97d31c1efea64e053d936f.py @@ -477,7 +477,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -701,7 +701,7 @@ def update( - NetworkGroupSizeModeIpv4 (str(custom)): - NetworkGroupSizeModeIpv6 (str(custom)): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportConvergenceUnit (str(ms | s | us)): - ReportPacketLossDurationUnit (str(ms)): - RoutesDistribution (str(equalCostOnEachPort)): @@ -788,7 +788,7 @@ def find( - NetworkGroupSizeModeIpv4 (str(custom)): - NetworkGroupSizeModeIpv6 (str(custom)): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportConvergenceUnit (str(ms | s | us)): - ReportPacketLossDurationUnit (str(ms)): - RoutesDistribution (str(equalCostOnEachPort)): diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_064e5baf635e47aec04db6fd069abdda.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_064e5baf635e47aec04db6fd069abdda.py index 7b40314e5..a3581d607 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_064e5baf635e47aec04db6fd069abdda.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_064e5baf635e47aec04db6fd069abdda.py @@ -1149,7 +1149,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1629,7 +1629,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Sets the quick search frame loss unit. - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Sets the quick search load unit. - QuickSearchResolution (number): Sets the quick search resolution. @@ -1818,7 +1818,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Sets the quick search frame loss unit. - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Sets the quick search load unit. - QuickSearchResolution (number): Sets the quick search resolution. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_082d5de4bf8808f63ffee5f08adb2723.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_082d5de4bf8808f63ffee5f08adb2723.py index 88bd37e7b..682335199 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_082d5de4bf8808f63ffee5f08adb2723.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_082d5de4bf8808f63ffee5f08adb2723.py @@ -208,7 +208,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -246,7 +246,7 @@ def update( - MaximumRequestsRate (str): - NoOfSessions (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items Raises ------ @@ -287,7 +287,7 @@ def find( - MaximumRequestsRate (str): - NoOfSessions (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_12dbe6995d8e2a79ac21a274bf231405.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_12dbe6995d8e2a79ac21a274bf231405.py index 9046ef3a2..cb4570281 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_12dbe6995d8e2a79ac21a274bf231405.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_12dbe6995d8e2a79ac21a274bf231405.py @@ -453,7 +453,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -659,7 +659,7 @@ def update( - NetworkGroupSizeModeIpv6 (str(custom)): - NumberOfIterations (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportConvergenceUnit (str(ms | s | us)): - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): - RoutesDistribution (str(distributedAcrossPorts | equalCostOnEachPort)): @@ -742,7 +742,7 @@ def find( - NetworkGroupSizeModeIpv6 (str(custom)): - NumberOfIterations (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportConvergenceUnit (str(ms | s | us)): - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): - RoutesDistribution (str(distributedAcrossPorts | equalCostOnEachPort)): diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_1732536041ecfeb50e224721dea00be3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_1732536041ecfeb50e224721dea00be3.py index c8c5d4db1..711aa306b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_1732536041ecfeb50e224721dea00be3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_1732536041ecfeb50e224721dea00be3.py @@ -431,7 +431,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -541,7 +541,7 @@ def update( - LoadRateValue (number): - LoadType (str(binary | combo | custom | fixed | increment | quickSearch | random | step | unchanged)): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): - TrafficType (str(burstyLoading | constantLoading)): @@ -612,7 +612,7 @@ def find( - LoadRateValue (number): - LoadType (str(binary | combo | custom | fixed | increment | quickSearch | random | step | unchanged)): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): - TrafficType (str(burstyLoading | constantLoading)): diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_18231a8a1ef495dda0a1ec6fa8d2eab8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_18231a8a1ef495dda0a1ec6fa8d2eab8.py index cf2dfddaa..00658a68f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_18231a8a1ef495dda0a1ec6fa8d2eab8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_18231a8a1ef495dda0a1ec6fa8d2eab8.py @@ -1340,7 +1340,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1910,7 +1910,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Signifies the quick search frame loss unit. - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Signifies the quick search load unit. - QuickSearchResolution (number): Sets the quick search resolution. @@ -2133,7 +2133,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Signifies the quick search frame loss unit. - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Signifies the quick search load unit. - QuickSearchResolution (number): Sets the quick search resolution. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_1ffc215dd29a0a4a548359d5fc44fcc7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_1ffc215dd29a0a4a548359d5fc44fcc7.py index 398713509..2f6c98a77 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_1ffc215dd29a0a4a548359d5fc44fcc7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_1ffc215dd29a0a4a548359d5fc44fcc7.py @@ -231,7 +231,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -351,7 +351,7 @@ def update( - PassCriteriaJoinLatencyValue (number): The amount of time, in milliseconds, elapsed between the time the client sent an IGMP JOIN (broadcast channel) and the time it received the first byte of data. - PassCriteriaLeaveFailuresValue (number): How many Leave actions were marked as Failed. - PassCriteriaLeaveLatencyValue (number): The amount of time, in milliseconds, elapsed between the time the client sent an IGMP LEAVE (broadcast channel) and the time it received the last byte of data. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - StartIptvEndpointsBeforeTraffic (str): The IPTV Endpoints are set before sending traffic. - TestTrafficType (str): Indicates the type of traffic to be tested. - TrackByEgressVlanId (str): If true, Custom Offset from Packet Locations can be configured. @@ -404,7 +404,7 @@ def find( - PassCriteriaJoinLatencyValue (number): The amount of time, in milliseconds, elapsed between the time the client sent an IGMP JOIN (broadcast channel) and the time it received the first byte of data. - PassCriteriaLeaveFailuresValue (number): How many Leave actions were marked as Failed. - PassCriteriaLeaveLatencyValue (number): The amount of time, in milliseconds, elapsed between the time the client sent an IGMP LEAVE (broadcast channel) and the time it received the last byte of data. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - StartIptvEndpointsBeforeTraffic (str): The IPTV Endpoints are set before sending traffic. - TestTrafficType (str): Indicates the type of traffic to be tested. - TrackByEgressVlanId (str): If true, Custom Offset from Packet Locations can be configured. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_2169887b2ccf0239dfb55908a16f3c91.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_2169887b2ccf0239dfb55908a16f3c91.py index f89a471ca..3bf46f660 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_2169887b2ccf0239dfb55908a16f3c91.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_2169887b2ccf0239dfb55908a16f3c91.py @@ -1163,7 +1163,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1473,7 +1473,7 @@ def update( - Numtrials (number): It provides with the number trials - OffsetTime (number): It provides details about the off set time - PercentMaxRate (number): It provides with the percentage of the maximum rate - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Rfc2889ordering (str(val2889Ordering)): The rfc 2889 ordering in the the test configuration is shown here - StaggeredStart (bool): It gives a staggered start to the test configuration - StepBurdenIncrementLoadRate (number): It gives details about the step burden incremental load rate @@ -1646,7 +1646,7 @@ def find( - Numtrials (number): It provides with the number trials - OffsetTime (number): It provides details about the off set time - PercentMaxRate (number): It provides with the percentage of the maximum rate - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Rfc2889ordering (str(val2889Ordering)): The rfc 2889 ordering in the the test configuration is shown here - StaggeredStart (bool): It gives a staggered start to the test configuration - StepBurdenIncrementLoadRate (number): It gives details about the step burden incremental load rate diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_258612381c29897cb5bd2a0ebbf7c16e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_258612381c29897cb5bd2a0ebbf7c16e.py index c613335c8..93398fcb7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_258612381c29897cb5bd2a0ebbf7c16e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_258612381c29897cb5bd2a0ebbf7c16e.py @@ -1213,7 +1213,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -2047,7 +2047,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): If true, reports sequence error. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): Reports throughput rate unit. - SaturationIteration (number): Signifies saturation iteration. @@ -2282,7 +2282,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): If true, reports sequence error. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): Reports throughput rate unit. - SaturationIteration (number): Signifies saturation iteration. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_27bc595dc7175d4d0737241a72260e04.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_27bc595dc7175d4d0737241a72260e04.py index a3f4074f3..1e94526b1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_27bc595dc7175d4d0737241a72260e04.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_27bc595dc7175d4d0737241a72260e04.py @@ -897,7 +897,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1143,7 +1143,7 @@ def update( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - PortDownTime (number): The time interval during the port is down. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ShowDetailedBinaryResults (bool): NOT DEFINED - StaggeredStart (bool): If true, transmit start is staggered; if false, transmit starts on all ports at the same time. - StepIncrementFrameSize (number): The incremental step value of the frame size. @@ -1280,7 +1280,7 @@ def find( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - PortDownTime (number): The time interval during the port is down. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ShowDetailedBinaryResults (bool): NOT DEFINED - StaggeredStart (bool): If true, transmit start is staggered; if false, transmit starts on all ports at the same time. - StepIncrementFrameSize (number): The incremental step value of the frame size. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_30424b713533b8227793375aa23d267f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_30424b713533b8227793375aa23d267f.py index c04989cce..a81ea2257 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_30424b713533b8227793375aa23d267f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_30424b713533b8227793375aa23d267f.py @@ -1584,7 +1584,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -2114,7 +2114,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Signifies the random load rate. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): Specifies the selected rate. - ReportSequenceError (bool): If true, reports sequence error. @@ -2353,7 +2353,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Signifies the random load rate. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): Specifies the selected rate. - ReportSequenceError (bool): If true, reports sequence error. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_3f5fba7fb758c5dbd359e67bd1c1b10e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_3f5fba7fb758c5dbd359e67bd1c1b10e.py index 88bd37e7b..682335199 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_3f5fba7fb758c5dbd359e67bd1c1b10e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_3f5fba7fb758c5dbd359e67bd1c1b10e.py @@ -208,7 +208,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -246,7 +246,7 @@ def update( - MaximumRequestsRate (str): - NoOfSessions (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items Raises ------ @@ -287,7 +287,7 @@ def find( - MaximumRequestsRate (str): - NoOfSessions (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_479b7974e0bdd3d60857f333ea63072f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_479b7974e0bdd3d60857f333ea63072f.py index 64b6d233a..da1eb7016 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_479b7974e0bdd3d60857f333ea63072f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_479b7974e0bdd3d60857f333ea63072f.py @@ -64,7 +64,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -80,7 +80,7 @@ def update(self, NumTrials=None, ProtocolItem=None): Args ---- - NumTrials (str): Defines how many times each frame size will be tested. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items Raises ------ @@ -99,7 +99,7 @@ def find(self, NumTrials=None, ProtocolItem=None): Args ---- - NumTrials (str): Defines how many times each frame size will be tested. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_49bd4df5ef26c8bc8fbe4fa622128092.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_49bd4df5ef26c8bc8fbe4fa622128092.py index 88bd37e7b..682335199 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_49bd4df5ef26c8bc8fbe4fa622128092.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_49bd4df5ef26c8bc8fbe4fa622128092.py @@ -208,7 +208,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -246,7 +246,7 @@ def update( - MaximumRequestsRate (str): - NoOfSessions (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items Raises ------ @@ -287,7 +287,7 @@ def find( - MaximumRequestsRate (str): - NoOfSessions (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4d3c3482de0b3e30be70fd7231516780.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4d3c3482de0b3e30be70fd7231516780.py index 586fb31b5..43081eea0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4d3c3482de0b3e30be70fd7231516780.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4d3c3482de0b3e30be70fd7231516780.py @@ -405,7 +405,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -529,7 +529,7 @@ def update( - MaxRandomFrameSize (number): The maximum random frame size to be sent. - MinRandomFrameSize (number): The minimum random frame size to be sent. - Numtrials (number): The integer value that states the number of trials permitted. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportConvergenceUnit (str(ms | ns | us)): The unit in which convergence will be reported. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): The unit of rate for throughput. - SecondaryRxPort (number): Sets the secondary receiving Port. @@ -600,7 +600,7 @@ def find( - MaxRandomFrameSize (number): The maximum random frame size to be sent. - MinRandomFrameSize (number): The minimum random frame size to be sent. - Numtrials (number): The integer value that states the number of trials permitted. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportConvergenceUnit (str(ms | ns | us)): The unit in which convergence will be reported. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): The unit of rate for throughput. - SecondaryRxPort (number): Sets the secondary receiving Port. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4f256c2aad08b4874b63c5f688afb1de.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4f256c2aad08b4874b63c5f688afb1de.py index 81b5b5c4a..14e78f4a4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4f256c2aad08b4874b63c5f688afb1de.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4f256c2aad08b4874b63c5f688afb1de.py @@ -232,7 +232,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -368,7 +368,7 @@ def update( - MaxOutstanding (number): Maximum number of connection requests or tear down requests that can be pending at any one time - NonExpectedMasterStatus (str): Clocks configured as Master are not Grand Master - Numtrials (number): Number of trials that can be run - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Runmode (str(duration | noframes)): Running mode used - SetupRate (number): The number of PTP connections to be initiated per second - SlavePorts (str): The ports selected as slaves @@ -423,7 +423,7 @@ def find( - MaxOutstanding (number): Maximum number of connection requests or tear down requests that can be pending at any one time - NonExpectedMasterStatus (str): Clocks configured as Master are not Grand Master - Numtrials (number): Number of trials that can be run - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Runmode (str(duration | noframes)): Running mode used - SetupRate (number): The number of PTP connections to be initiated per second - SlavePorts (str): The ports selected as slaves diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4f349b8eff45b15b253e46bc90233f28.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4f349b8eff45b15b253e46bc90233f28.py index 73f1afe39..40cb34a1c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4f349b8eff45b15b253e46bc90233f28.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_4f349b8eff45b15b253e46bc90233f28.py @@ -180,7 +180,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -286,7 +286,7 @@ def update( - MaxOutstandingRequests (number): - MaxStepIntegerValues (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RequestRate (number): - StepStepIntegerValues (number): - Step_failedsession_enableAccLoss (bool): @@ -331,7 +331,7 @@ def find( - MaxOutstandingRequests (number): - MaxStepIntegerValues (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RequestRate (number): - StepStepIntegerValues (number): - Step_failedsession_enableAccLoss (bool): diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_537bf98a50d45396e2ab19c393bdab52.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_537bf98a50d45396e2ab19c393bdab52.py index 7f51c9c3c..f0c3ca101 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_537bf98a50d45396e2ab19c393bdab52.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_537bf98a50d45396e2ab19c393bdab52.py @@ -530,7 +530,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -766,7 +766,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): Selects the rate list. - ReportSequenceError (bool): Reports sequence errors in the test result. - Resolution (number): Specify the resolution of the iteration. The difference between the real rate transmission in two consecutive iterations, expressed as a percentage, is compared with the resolution value. When the difference is smaller than the value specified for the resolution, the test stops. @@ -865,7 +865,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): Selects the rate list. - ReportSequenceError (bool): Reports sequence errors in the test result. - Resolution (number): Specify the resolution of the iteration. The difference between the real rate transmission in two consecutive iterations, expressed as a percentage, is compared with the resolution value. When the difference is smaller than the value specified for the resolution, the test stops. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_5889cc38d331ea876ad698ef4dcc8344.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_5889cc38d331ea876ad698ef4dcc8344.py index ff31eb4d8..68a65e249 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_5889cc38d331ea876ad698ef4dcc8344.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_5889cc38d331ea876ad698ef4dcc8344.py @@ -922,7 +922,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1158,7 +1158,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): Report identifying the unit for measuring the throughput rate in frames per second. - RouterAlert (bool): If enabled, it alerts the router. - ShowDetailedBinaryResults (bool): NOT DEFINED @@ -1299,7 +1299,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): Report identifying the unit for measuring the throughput rate in frames per second. - RouterAlert (bool): If enabled, it alerts the router. - ShowDetailedBinaryResults (bool): NOT DEFINED diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_61b22130a2b69f909a95f2bd2def5130.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_61b22130a2b69f909a95f2bd2def5130.py index 9051b7f05..c79136221 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_61b22130a2b69f909a95f2bd2def5130.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_61b22130a2b69f909a95f2bd2def5130.py @@ -702,7 +702,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -896,7 +896,7 @@ def update( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - PortDownTime (number): The time interval during the port is down. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Rfc2889ordering (str(noOrdering | unchanged | val2889Ordering)): Enables ordering. - ShowDetailedBinaryResults (bool): NOT DEFINED - StepIncrementFrameSize (number): The incremental step value of the frame size. @@ -1009,7 +1009,7 @@ def find( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - PortDownTime (number): The time interval during the port is down. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Rfc2889ordering (str(noOrdering | unchanged | val2889Ordering)): Enables ordering. - ShowDetailedBinaryResults (bool): NOT DEFINED - StepIncrementFrameSize (number): The incremental step value of the frame size. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_6750a98f50dcf0abc03ffb2d770454d0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_6750a98f50dcf0abc03ffb2d770454d0.py index 73f1afe39..40cb34a1c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_6750a98f50dcf0abc03ffb2d770454d0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_6750a98f50dcf0abc03ffb2d770454d0.py @@ -180,7 +180,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -286,7 +286,7 @@ def update( - MaxOutstandingRequests (number): - MaxStepIntegerValues (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RequestRate (number): - StepStepIntegerValues (number): - Step_failedsession_enableAccLoss (bool): @@ -331,7 +331,7 @@ def find( - MaxOutstandingRequests (number): - MaxStepIntegerValues (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RequestRate (number): - StepStepIntegerValues (number): - Step_failedsession_enableAccLoss (bool): diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_6e51690397973259602908916246c705.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_6e51690397973259602908916246c705.py index e9cbc4eca..6d65e7e56 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_6e51690397973259602908916246c705.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_6e51690397973259602908916246c705.py @@ -1169,7 +1169,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1683,7 +1683,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): NOT DEFINED - PortDelayValue (number): NOT DEFINED - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): NOT DEFINED - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): NOT DEFINED - QuickSearchResolution (number): NOT DEFINED @@ -1878,7 +1878,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): NOT DEFINED - PortDelayValue (number): NOT DEFINED - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): NOT DEFINED - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): NOT DEFINED - QuickSearchResolution (number): NOT DEFINED diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_73862c1cde91df0563bb4212dcf47cce.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_73862c1cde91df0563bb4212dcf47cce.py index 2d6c402bb..dc28fb9e6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_73862c1cde91df0563bb4212dcf47cce.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_73862c1cde91df0563bb4212dcf47cce.py @@ -2036,7 +2036,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -2748,7 +2748,7 @@ def update( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - PortMACAddress (str): The MAC address of the port. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickBackoffIteration (number): Sets the quicksearch backoff iteration - QuickEnableBackoffIteration (bool): Enables the quick search backoff iteration - QuickEnableSaturationIteration (bool): Enables the Quick Search saturation iteration @@ -3057,7 +3057,7 @@ def find( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - PortMACAddress (str): The MAC address of the port. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickBackoffIteration (number): Sets the quicksearch backoff iteration - QuickEnableBackoffIteration (bool): Enables the quick search backoff iteration - QuickEnableSaturationIteration (bool): Enables the Quick Search saturation iteration diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7767935a0457c62ecf0370fcd3a976a9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7767935a0457c62ecf0370fcd3a976a9.py index 7661de86f..de4746bc5 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7767935a0457c62ecf0370fcd3a976a9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7767935a0457c62ecf0370fcd3a976a9.py @@ -1425,7 +1425,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1785,7 +1785,7 @@ def update( - PercentMulticastFrames (number): The percentage of multicast frames. - PercentUnicastFrames (number): The percentage of unicast frames. - PortMACAddress (str): The MAC address of the port. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RatePass (number): A Pass criteria applied to each trial in the test to determine whether the trialpassed or failed. - ReportSequenceError (bool): Reports sequence errors in the test result. - SendJoinsBeforeLeave (bool): @@ -1994,7 +1994,7 @@ def find( - PercentMulticastFrames (number): The percentage of multicast frames. - PercentUnicastFrames (number): The percentage of unicast frames. - PortMACAddress (str): The MAC address of the port. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RatePass (number): A Pass criteria applied to each trial in the test to determine whether the trialpassed or failed. - ReportSequenceError (bool): Reports sequence errors in the test result. - SendJoinsBeforeLeave (bool): diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7a5f32980f4b9c35eca7634687724e2f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7a5f32980f4b9c35eca7634687724e2f.py index b838dd765..02545fa4a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7a5f32980f4b9c35eca7634687724e2f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7a5f32980f4b9c35eca7634687724e2f.py @@ -3459,7 +3459,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -3803,7 +3803,7 @@ def SpyderFramesizeList(self): """ Returns ------- - - list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../customImix | /api/v1/sessions/1/ixnetwork/quickTest/.../imix])): + - list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/globals/customImix | /api/v1/sessions/1/ixnetwork/quickTest/globals/imix])): """ return self._get_attribute(self._SDM_ATT_MAP["SpyderFramesizeList"]) @@ -5230,7 +5230,7 @@ def update(self, **kwargs): - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickBackoffIteration (number): Sets the quicksearch backoff iteration - QuickEnableBackoffIteration (bool): Enables the quick search backoff iteration - QuickEnableSaturationIteration (bool): Enables the Quick Search saturation iteration @@ -5253,7 +5253,7 @@ def update(self, **kwargs): - SearchBase (str(rate | replicationCount)): NOT DEFINED - SendFullyMeshed (bool): Indicates the source group mapping type used for sending data. - ShowDetailedBinaryResults (bool): NOT DEFINED - - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../customImix | /api/v1/sessions/1/ixnetwork/quickTest/.../imix]))): + - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/globals/customImix | /api/v1/sessions/1/ixnetwork/quickTest/globals/imix]))): - StaggeredStart (bool): Starts test with a stagger. - StepComboLoadRate (number): The step value of combination load rate. - StepFrameLossUnit (str(% | frames)): The frame loss unit. @@ -5536,7 +5536,7 @@ def find(self, **kwargs): - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickBackoffIteration (number): Sets the quicksearch backoff iteration - QuickEnableBackoffIteration (bool): Enables the quick search backoff iteration - QuickEnableSaturationIteration (bool): Enables the Quick Search saturation iteration @@ -5559,7 +5559,7 @@ def find(self, **kwargs): - SearchBase (str(rate | replicationCount)): NOT DEFINED - SendFullyMeshed (bool): Indicates the source group mapping type used for sending data. - ShowDetailedBinaryResults (bool): NOT DEFINED - - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../customImix | /api/v1/sessions/1/ixnetwork/quickTest/.../imix]))): + - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/globals/customImix | /api/v1/sessions/1/ixnetwork/quickTest/globals/imix]))): - StaggeredStart (bool): Starts test with a stagger. - StepComboLoadRate (number): The step value of combination load rate. - StepFrameLossUnit (str(% | frames)): The frame loss unit. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7e7c251ab89c08946f0aa859f3231872.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7e7c251ab89c08946f0aa859f3231872.py index 88bd37e7b..682335199 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7e7c251ab89c08946f0aa859f3231872.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_7e7c251ab89c08946f0aa859f3231872.py @@ -208,7 +208,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -246,7 +246,7 @@ def update( - MaximumRequestsRate (str): - NoOfSessions (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items Raises ------ @@ -287,7 +287,7 @@ def find( - MaximumRequestsRate (str): - NoOfSessions (number): - Numtrials (number): - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_901b51986dc65d0fff95a09fc2f887de.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_901b51986dc65d0fff95a09fc2f887de.py index 87a40194d..b63be34e6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_901b51986dc65d0fff95a09fc2f887de.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_901b51986dc65d0fff95a09fc2f887de.py @@ -1169,7 +1169,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1683,7 +1683,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Sets the quick search frame loss unit - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Sets the quick search load unit - QuickSearchResolution (number): Sets the quick search resolution @@ -1878,7 +1878,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Sets the quick search frame loss unit - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Sets the quick search load unit - QuickSearchResolution (number): Sets the quick search resolution diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9258ab9b78da793408641adef54f6257.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9258ab9b78da793408641adef54f6257.py index 67478497a..b4a7c5d1d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9258ab9b78da793408641adef54f6257.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9258ab9b78da793408641adef54f6257.py @@ -1625,7 +1625,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1774,7 +1774,7 @@ def SpyderFramesizeList(self): """ Returns ------- - - list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../customImix | /api/v1/sessions/1/ixnetwork/quickTest/.../imix])): + - list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/globals/customImix | /api/v1/sessions/1/ixnetwork/quickTest/globals/imix])): """ return self._get_attribute(self._SDM_ATT_MAP["SpyderFramesizeList"]) @@ -2128,7 +2128,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): NOT DEFINED - PortDelayValue (number): NOT DEFINED - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): NOT DEFINED - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): NOT DEFINED - ReportSequenceError (bool): NOT DEFINED @@ -2138,7 +2138,7 @@ def update( - Rfc2889ordering (str(noOrdering | peakLoading | unchanged | val2889Ordering)): NOT DEFINED - SendFullyMeshed (bool): NOT DEFINED - ShowDetailedBinaryResults (bool): NOT DEFINED - - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../customImix | /api/v1/sessions/1/ixnetwork/quickTest/.../imix]))): + - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/globals/customImix | /api/v1/sessions/1/ixnetwork/quickTest/globals/imix]))): - StaggeredStart (bool): NOT DEFINED - StepIncrementFrameSize (number): NOT DEFINED - StepIncrementIpv4Ratio (str): NOT DEFINED @@ -2370,7 +2370,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): NOT DEFINED - PortDelayValue (number): NOT DEFINED - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): NOT DEFINED - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): NOT DEFINED - ReportSequenceError (bool): NOT DEFINED @@ -2380,7 +2380,7 @@ def find( - Rfc2889ordering (str(noOrdering | peakLoading | unchanged | val2889Ordering)): NOT DEFINED - SendFullyMeshed (bool): NOT DEFINED - ShowDetailedBinaryResults (bool): NOT DEFINED - - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../customImix | /api/v1/sessions/1/ixnetwork/quickTest/.../imix]))): + - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/globals/customImix | /api/v1/sessions/1/ixnetwork/quickTest/globals/imix]))): - StaggeredStart (bool): NOT DEFINED - StepIncrementFrameSize (number): NOT DEFINED - StepIncrementIpv4Ratio (str): NOT DEFINED diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_93eb28bf6572d1301ef5a0ebfc07e129.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_93eb28bf6572d1301ef5a0ebfc07e129.py index 9700107fd..16c760bdf 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_93eb28bf6572d1301ef5a0ebfc07e129.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_93eb28bf6572d1301ef5a0ebfc07e129.py @@ -1618,7 +1618,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -2168,7 +2168,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Signifies the random load unit value. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): Signifies the rate selected. - ReportSequenceError (bool): If true, reports sequence error. @@ -2413,7 +2413,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Signifies the random load unit value. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): Signifies the rate selected. - ReportSequenceError (bool): If true, reports sequence error. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_96e5281612a8cb82568f03da7b5a8c03.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_96e5281612a8cb82568f03da7b5a8c03.py index 93cd7b3b6..3e6ed8a93 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_96e5281612a8cb82568f03da7b5a8c03.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_96e5281612a8cb82568f03da7b5a8c03.py @@ -566,7 +566,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -742,7 +742,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - SendFullyMeshed (bool): Sending fully meshed traffic. - StepIncrementFrameSize (number): The step to increment the frame size. - SupportedTrafficTypes (str): The traffic types supported. @@ -837,7 +837,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - SendFullyMeshed (bool): Sending fully meshed traffic. - StepIncrementFrameSize (number): The step to increment the frame size. - SupportedTrafficTypes (str): The traffic types supported. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9e5850de53153eabe3bca793e72ac2e3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9e5850de53153eabe3bca793e72ac2e3.py index 3b2c4198d..683250669 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9e5850de53153eabe3bca793e72ac2e3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9e5850de53153eabe3bca793e72ac2e3.py @@ -670,7 +670,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -844,7 +844,7 @@ def update( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - PortDownTime (number): The time interval during the port is down. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Rfc2889ordering (str(noOrdering | unchanged | val2889Ordering)): If true, indicates frame ordering by Rfc2889. - StepIncrementFrameSize (number): The incremental step value of the frame size. - SupportedTrafficTypes (str): The traffic types supported. @@ -951,7 +951,7 @@ def find( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - PortDownTime (number): The time interval during the port is down. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Rfc2889ordering (str(noOrdering | unchanged | val2889Ordering)): If true, indicates frame ordering by Rfc2889. - StepIncrementFrameSize (number): The incremental step value of the frame size. - SupportedTrafficTypes (str): The traffic types supported. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9f27c4c121a6415dba2b4e09edba31df.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9f27c4c121a6415dba2b4e09edba31df.py index 91580bb12..f52169f03 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9f27c4c121a6415dba2b4e09edba31df.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_9f27c4c121a6415dba2b4e09edba31df.py @@ -473,7 +473,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -603,7 +603,7 @@ def update( - MinRandomFrameSize (number): The minimum random frame size to be sent. - Numtrials (number): Number of trials that can be run - PacketsPerFlow (number): Indicates the number of packets per flow. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RangeCount (number): Indicates the range count. - StepLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Specifies the step rate of the load unit. - StepStepIntegerValues (number): Indicates the step integer value. @@ -680,7 +680,7 @@ def find( - MinRandomFrameSize (number): The minimum random frame size to be sent. - Numtrials (number): Number of trials that can be run - PacketsPerFlow (number): Indicates the number of packets per flow. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RangeCount (number): Indicates the range count. - StepLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Specifies the step rate of the load unit. - StepStepIntegerValues (number): Indicates the step integer value. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a335513ea006578c2beae9847822de60.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a335513ea006578c2beae9847822de60.py index d9d273f0c..1d8ee034d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a335513ea006578c2beae9847822de60.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a335513ea006578c2beae9847822de60.py @@ -1029,7 +1029,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1339,7 +1339,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): NOT DEFINED - PortDelayValue (number): NOT DEFINED - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): NOT DEFINED - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): NOT DEFINED - Rfc2889ordering (str(val2889Ordering)): NOT DEFINED @@ -1498,7 +1498,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): NOT DEFINED - PortDelayValue (number): NOT DEFINED - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): NOT DEFINED - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): NOT DEFINED - Rfc2889ordering (str(val2889Ordering)): NOT DEFINED diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a546b1621b9177a9c744ae89d3077c3a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a546b1621b9177a9c744ae89d3077c3a.py index 5b578fad4..b845f9efc 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a546b1621b9177a9c744ae89d3077c3a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a546b1621b9177a9c744ae89d3077c3a.py @@ -1173,7 +1173,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1687,7 +1687,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Sets the quick search frame loss unit - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Sets the quick search load unit - QuickSearchResolution (number): Sets the quick search resolution @@ -1882,7 +1882,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Sets the quick search frame loss unit - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Sets the quick search load unit - QuickSearchResolution (number): Sets the quick search resolution diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a98533092976c225fb8d5c32173490df.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a98533092976c225fb8d5c32173490df.py index caa14405b..acc2f830b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a98533092976c225fb8d5c32173490df.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_a98533092976c225fb8d5c32173490df.py @@ -1617,7 +1617,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -2167,7 +2167,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): The random values of the load unit. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): The selected rate. - ReportSequenceError (bool): If true, the sequence error, if found, is reported. @@ -2412,7 +2412,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): The random values of the load unit. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): The selected rate. - ReportSequenceError (bool): If true, the sequence error, if found, is reported. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_aa011dabd812f199bc41a4603fac6cde.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_aa011dabd812f199bc41a4603fac6cde.py index 77950b291..6341cc8fd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_aa011dabd812f199bc41a4603fac6cde.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_aa011dabd812f199bc41a4603fac6cde.py @@ -264,7 +264,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -388,7 +388,7 @@ def update( - MinBinarySlaveNumber (number): The minimum binary value of the slave number. - NumberOfSlavesPassFail (number): The number of slaves pass fail. - Numtrials (number): The number of trials. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Runmode (str(duration | noframes)): It gives the run mode - SetupRate (number): The setup rate. - StartTraffic (str): It starts the traffic @@ -445,7 +445,7 @@ def find( - MinBinarySlaveNumber (number): The minimum binary value of the slave number. - NumberOfSlavesPassFail (number): The number of slaves pass fail. - Numtrials (number): The number of trials. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Runmode (str(duration | noframes)): It gives the run mode - SetupRate (number): The setup rate. - StartTraffic (str): It starts the traffic diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_b058c64fa3591eb4abc8ee56d4ec176d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_b058c64fa3591eb4abc8ee56d4ec176d.py index 4c50f3d9e..cdd87d261 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_b058c64fa3591eb4abc8ee56d4ec176d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_b058c64fa3591eb4abc8ee56d4ec176d.py @@ -1047,7 +1047,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1329,7 +1329,7 @@ def update( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - PortMACAddress (str): The MAC address of the port. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): Reports sequence errors in the test result - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): Report identifying the unit for measuring the throughput rate in frames per second. - RouterAlert (bool): The router alert selected from the Hop-by-hop Options. @@ -1488,7 +1488,7 @@ def find( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - PortMACAddress (str): The MAC address of the port. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): Reports sequence errors in the test result - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): Report identifying the unit for measuring the throughput rate in frames per second. - RouterAlert (bool): The router alert selected from the Hop-by-hop Options. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_c21c0209dccf6b0ba9d683b4fd89594f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_c21c0209dccf6b0ba9d683b4fd89594f.py index 53d551a73..a2b5d6e25 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_c21c0209dccf6b0ba9d683b4fd89594f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_c21c0209dccf6b0ba9d683b4fd89594f.py @@ -1072,7 +1072,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1374,7 +1374,7 @@ def update( - PortDelayEnabled (bool): Enables the Port Delay - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): Reports sequence errors in the test result. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): Report identifying the unit for measuring the throughput rate in frames per second. - RouterAlert (bool): The router alert selected from the Hop-by-hop Options. @@ -1539,7 +1539,7 @@ def find( - PortDelayEnabled (bool): Enables the Port Delay - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): Reports sequence errors in the test result. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): Report identifying the unit for measuring the throughput rate in frames per second. - RouterAlert (bool): The router alert selected from the Hop-by-hop Options. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_c489e9ff2fb488d788b6fa3b1a4398da.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_c489e9ff2fb488d788b6fa3b1a4398da.py index da8fc80b8..9258aa61e 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_c489e9ff2fb488d788b6fa3b1a4398da.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_c489e9ff2fb488d788b6fa3b1a4398da.py @@ -1348,7 +1348,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1512,7 +1512,7 @@ def SpyderFramesizeList(self): """ Returns ------- - - list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../customImix | /api/v1/sessions/1/ixnetwork/quickTest/.../imix])): + - list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/globals/customImix | /api/v1/sessions/1/ixnetwork/quickTest/globals/imix])): """ return self._get_attribute(self._SDM_ATT_MAP["SpyderFramesizeList"]) @@ -1943,7 +1943,7 @@ def update( - PortDelayEnabled (bool): Enables the port delay. - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): The random values of the load unit. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): The rate selected. - ReportSequenceError (bool): Reports sequence errors in the test result. @@ -1954,7 +1954,7 @@ def update( - Runmode (str(duration | noframes)): Specifies the number of frames that IxNetwork sends from each port in running mode. - SendFullyMeshed (bool): Indicates the source group mapping type used for sending data. - ShowDetailedBinaryResults (bool): - - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../customImix | /api/v1/sessions/1/ixnetwork/quickTest/.../imix]))): + - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/globals/customImix | /api/v1/sessions/1/ixnetwork/quickTest/globals/imix]))): - StaggeredStart (bool): Starts test with a stagger. - StepIncrementFrameSize (number): The incremental step value of the frame size. - StepIncrementIpv4Ratio (str): The step in which the ipv4 ratio loop is incremented @@ -2165,7 +2165,7 @@ def find( - PortDelayEnabled (bool): Enables the port delay. - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): The random values of the load unit. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): The rate selected. - ReportSequenceError (bool): Reports sequence errors in the test result. @@ -2176,7 +2176,7 @@ def find( - Runmode (str(duration | noframes)): Specifies the number of frames that IxNetwork sends from each port in running mode. - SendFullyMeshed (bool): Indicates the source group mapping type used for sending data. - ShowDetailedBinaryResults (bool): - - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../customImix | /api/v1/sessions/1/ixnetwork/quickTest/.../imix]))): + - SpyderFramesizeList (list(dict(arg1:number,arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/globals/customImix | /api/v1/sessions/1/ixnetwork/quickTest/globals/imix]))): - StaggeredStart (bool): Starts test with a stagger. - StepIncrementFrameSize (number): The incremental step value of the frame size. - StepIncrementIpv4Ratio (str): The step in which the ipv4 ratio loop is incremented diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_d40b9b52e3b77bf028e4505da3e65ee9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_d40b9b52e3b77bf028e4505da3e65ee9.py index 3ce486a42..7e17a9983 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_d40b9b52e3b77bf028e4505da3e65ee9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_d40b9b52e3b77bf028e4505da3e65ee9.py @@ -917,7 +917,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1151,7 +1151,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): Reports sequence errors in the test result. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): Report identifying the unit for measuring the throughput rate in frames per second. - RouterAlert (bool): Sets the IP header Send Router Alert bit. @@ -1290,7 +1290,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): Reports sequence errors in the test result. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): Report identifying the unit for measuring the throughput rate in frames per second. - RouterAlert (bool): Sets the IP header Send Router Alert bit. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_df955acc5bd119f8c02cd2ddd3588736.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_df955acc5bd119f8c02cd2ddd3588736.py index 173763d74..892112413 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_df955acc5bd119f8c02cd2ddd3588736.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_df955acc5bd119f8c02cd2ddd3588736.py @@ -586,7 +586,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -828,7 +828,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): If true, the sequence error, if found, is reported. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): The unit of rate for throughput. - Rfc2889ordering (str(noOrdering | unchanged | val2889Ordering)): NOT DEFINED @@ -933,7 +933,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): If true, the sequence error, if found, is reported. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): The unit of rate for throughput. - Rfc2889ordering (str(noOrdering | unchanged | val2889Ordering)): NOT DEFINED diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e210ff48711461cda7e871a2bc668405.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e210ff48711461cda7e871a2bc668405.py index d6520d82f..0d321d2e6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e210ff48711461cda7e871a2bc668405.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e210ff48711461cda7e871a2bc668405.py @@ -761,7 +761,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1225,7 +1225,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): Specifies to include the types of sequence errors in the results, such as Small. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): The throughput rate unit. - Runmode (str(duration | noframes)): The running mode. @@ -1370,7 +1370,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): Specifies to include the types of sequence errors in the results, such as Small. - ReportTputRateUnit (str(gbps | gBps | kbps | kBps | mbps | mBps)): The throughput rate unit. - Runmode (str(duration | noframes)): The running mode. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e410fd4a44d584244af938efb10566b0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e410fd4a44d584244af938efb10566b0.py index e10cfd484..21a546cb3 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e410fd4a44d584244af938efb10566b0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e410fd4a44d584244af938efb10566b0.py @@ -651,7 +651,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -791,7 +791,7 @@ def update( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - PortDownTime (number): During flapping, the amount of time during which the routes in the Route Range are withdrawn/down. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - StaggeredStart (bool): Enables a staggered start to traffic transmit. - SupportedTrafficTypes (str): The traffic types supported. - TxDelay (number): Specifies the amount of delay after every transmit. @@ -892,7 +892,7 @@ def find( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - PortDownTime (number): During flapping, the amount of time during which the routes in the Route Range are withdrawn/down. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - StaggeredStart (bool): Enables a staggered start to traffic transmit. - SupportedTrafficTypes (str): The traffic types supported. - TxDelay (number): Specifies the amount of delay after every transmit. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e47334501cee6228c7d88f59f540e72c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e47334501cee6228c7d88f59f540e72c.py index de8361667..e2588eb58 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e47334501cee6228c7d88f59f540e72c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e47334501cee6228c7d88f59f540e72c.py @@ -1356,7 +1356,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1928,7 +1928,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Sets the quick search frame loss unit. - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Sets the quick search load unit. - QuickSearchResolution (number): Sets the quick search resolution. @@ -2153,7 +2153,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Sets the quick search frame loss unit. - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Sets the quick search load unit. - QuickSearchResolution (number): Sets the quick search resolution. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e50079ef5fb44058ff56d6306afd6f3f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e50079ef5fb44058ff56d6306afd6f3f.py index 611ea1c1c..496e50968 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e50079ef5fb44058ff56d6306afd6f3f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e50079ef5fb44058ff56d6306afd6f3f.py @@ -963,7 +963,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1423,7 +1423,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): The random values of the load unit. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): The rate selected. - ReportSequenceError (bool): Reports sequence errors in the test result. @@ -1592,7 +1592,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): The random values of the load unit. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): The rate selected. - ReportSequenceError (bool): Reports sequence errors in the test result. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e75d4c7d47ecac53df9ceb22747a20d4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e75d4c7d47ecac53df9ceb22747a20d4.py index 4d398be4e..2e662457e 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e75d4c7d47ecac53df9ceb22747a20d4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_e75d4c7d47ecac53df9ceb22747a20d4.py @@ -1682,7 +1682,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -2256,7 +2256,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): The random values of the load unit. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): Selects the rate. - ReportSequenceError (bool): Reports sequence errors in the test result. @@ -2511,7 +2511,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - RandomLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): The random values of the load unit. - RateSelect (str(fpsRate | kbpsRate | percentMaxRate)): Selects the rate. - ReportSequenceError (bool): Reports sequence errors in the test result. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_fc6b3faf7fd1623681d628bcb1e775ba.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_fc6b3faf7fd1623681d628bcb1e775ba.py index 7224159db..2389486e9 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_fc6b3faf7fd1623681d628bcb1e775ba.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_fc6b3faf7fd1623681d628bcb1e775ba.py @@ -671,7 +671,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -861,7 +861,7 @@ def update( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - PortDownTime (number): The time interval during the port is down. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Rfc2889ordering (str(noOrdering | unchanged | val2889Ordering)): Enables ordering. - ShowDetailedBinaryResults (bool): NOT DEFINED - StepIncrementFrameSize (number): The incremental step value of the frame size. @@ -970,7 +970,7 @@ def find( - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured. - PortDelayValue (number): Sets the port delay value. - PortDownTime (number): The time interval during the port is down. - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - Rfc2889ordering (str(noOrdering | unchanged | val2889Ordering)): Enables ordering. - ShowDetailedBinaryResults (bool): NOT DEFINED - StepIncrementFrameSize (number): The incremental step value of the frame size. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_fcb75e51b768dc4f6f583b33d7ce0561.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_fcb75e51b768dc4f6f583b33d7ce0561.py index c6e4edcc3..31d9f74d6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_fcb75e51b768dc4f6f583b33d7ce0561.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_fcb75e51b768dc4f6f583b33d7ce0561.py @@ -217,7 +217,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -367,7 +367,7 @@ def update( - Numtrials (number): The number of trials that can be run - OffsetGraph (str): Offset graphing - PathDelayGraphing (str): Graphing of path delay - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ResidenceTime (number): The time taken by a packet to move from the ingress port to the egress port - Runmode (str(duration | noframes)): Running mode used - SetupRate (number): The number of PTP connections to be initiated per second @@ -422,7 +422,7 @@ def find( - Numtrials (number): The number of trials that can be run - OffsetGraph (str): Offset graphing - PathDelayGraphing (str): Graphing of path delay - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ResidenceTime (number): The time taken by a packet to move from the ingress port to the egress port - Runmode (str(duration | noframes)): Running mode used - SetupRate (number): The number of PTP connections to be initiated per second diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_febee2e7555468fb1e1b7adf82d645f2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_febee2e7555468fb1e1b7adf82d645f2.py index c499948e6..046bf77d8 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_febee2e7555468fb1e1b7adf82d645f2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_febee2e7555468fb1e1b7adf82d645f2.py @@ -1335,7 +1335,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1857,7 +1857,7 @@ def update( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Sets the quick search frame loss unit - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Sets the quick search load unit - QuickSearchResolution (number): Sets the quick search resolution @@ -2074,7 +2074,7 @@ def find( - PortDelayEnabled (bool): NOT DEFINED - PortDelayUnit (str(bytes | nanoseconds)): Sets the port delay unit in which it will be measured - PortDelayValue (number): Sets the port delay value - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - QuickSearchFrameLossUnit (str(%)): Sets the quick search frame loss unit - QuickSearchLoadUnit (str(bpsRate | fpsRate | gbpsRate | gBpsRate | kbpsRate | kBpsRate | mbpsRate | mBpsRate | percentMaxRate)): Sets the quick search load unit - QuickSearchResolution (number): Sets the quick search resolution diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_ff08e52f1e2621095649ba81f86f1f42.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_ff08e52f1e2621095649ba81f86f1f42.py index 28b9c574b..c7727baf7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_ff08e52f1e2621095649ba81f86f1f42.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/testconfig_ff08e52f1e2621095649ba81f86f1f42.py @@ -1443,7 +1443,7 @@ def ProtocolItem(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan]): Protocol Items + - list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan]): Protocol Items """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolItem"]) @@ -1823,7 +1823,7 @@ def update( - PortDelayValue (number): NOT DEFINED - PortDownTime (number): NOT DEFINED - PortMACAddress (str): NOT DEFINED - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): NOT DEFINED - RouterAlert (bool): NOT DEFINED - ShowDetailedBinaryResults (bool): NOT DEFINED @@ -2038,7 +2038,7 @@ def find( - PortDelayValue (number): NOT DEFINED - PortDownTime (number): NOT DEFINED - PortMACAddress (str): NOT DEFINED - - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/.../lan])): Protocol Items + - ProtocolItem (list(str[None | /api/v1/sessions/1/ixnetwork/vport | /api/v1/sessions/1/ixnetwork/vport/protocols/static/lan])): Protocol Items - ReportSequenceError (bool): NOT DEFINED - RouterAlert (bool): NOT DEFINED - ShowDetailedBinaryResults (bool): NOT DEFINED diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_0a6f6538f7b4bc978d27df978c815f65.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_0a6f6538f7b4bc978d27df978c815f65.py index 95b3b7bef..996e7d337 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_0a6f6538f7b4bc978d27df978c815f65.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_0a6f6538f7b4bc978d27df978c815f65.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): NOT DEFINED + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_0da068acf76a4160a59c57e414979a65.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_0da068acf76a4160a59c57e414979a65.py index ca44867c9..6bf1d3066 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_0da068acf76a4160a59c57e414979a65.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_0da068acf76a4160a59c57e414979a65.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_15a59ce57523b373341815bffcd63101.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_15a59ce57523b373341815bffcd63101.py index d61a67fd0..2a782855d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_15a59ce57523b373341815bffcd63101.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_15a59ce57523b373341815bffcd63101.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_20ae1edfc50b2e2bf8f79fd1e469df9f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_20ae1edfc50b2e2bf8f79fd1e469df9f.py index 90352e4cd..24d12f6d4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_20ae1edfc50b2e2bf8f79fd1e469df9f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_20ae1edfc50b2e2bf8f79fd1e469df9f.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_220d68ce1dcaff10c0798ce3ed0295e8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_220d68ce1dcaff10c0798ce3ed0295e8.py index 2df466b30..1dfdee667 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_220d68ce1dcaff10c0798ce3ed0295e8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_220d68ce1dcaff10c0798ce3ed0295e8.py @@ -60,7 +60,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -158,7 +158,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -185,7 +185,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -230,7 +230,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_269c6f7786daf3c1727aac52c05f527f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_269c6f7786daf3c1727aac52c05f527f.py index d61a67fd0..2a782855d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_269c6f7786daf3c1727aac52c05f527f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_269c6f7786daf3c1727aac52c05f527f.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_29873b8fb6cf6b316293a9205cd5ddbd.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_29873b8fb6cf6b316293a9205cd5ddbd.py index d4978eadd..1e4d290b7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_29873b8fb6cf6b316293a9205cd5ddbd.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_29873b8fb6cf6b316293a9205cd5ddbd.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_2b6980d6a755a9935f59dfde52a02b62.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_2b6980d6a755a9935f59dfde52a02b62.py index 9910b965c..1df4e598c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_2b6980d6a755a9935f59dfde52a02b62.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_2b6980d6a755a9935f59dfde52a02b62.py @@ -60,7 +60,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): NOT DEFINED + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -158,7 +158,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -185,7 +185,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -230,7 +230,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_2d895769c45ac17e3b9ec343073c1906.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_2d895769c45ac17e3b9ec343073c1906.py index 02b6bf638..f97e91206 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_2d895769c45ac17e3b9ec343073c1906.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_2d895769c45ac17e3b9ec343073c1906.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_311d699d134cdc881afae840c31386fb.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_311d699d134cdc881afae840c31386fb.py index 6694f9906..1a6ee1c08 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_311d699d134cdc881afae840c31386fb.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_311d699d134cdc881afae840c31386fb.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -135,7 +135,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -155,7 +155,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -193,7 +193,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_3a7f5efc76c1307b025f9039773d3585.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_3a7f5efc76c1307b025f9039773d3585.py index 8a479ac75..8ccd1c716 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_3a7f5efc76c1307b025f9039773d3585.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_3a7f5efc76c1307b025f9039773d3585.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): Signifies the ID for traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): Signifies the ID for traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): Signifies the ID for traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): Signifies the ID for traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): Checks if traffic selection is generated or not. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): Signifies the ID for traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): Signifies the ID for traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): Checks if traffic selection is generated or not. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): Signifies the ID for traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): Signifies the ID for traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): Checks if traffic selection is generated or not. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_45858807eefa78d1672d884e5175f810.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_45858807eefa78d1672d884e5175f810.py index ca44867c9..6bf1d3066 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_45858807eefa78d1672d884e5175f810.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_45858807eefa78d1672d884e5175f810.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_49a9d415f123a1496375896b0e2e4585.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_49a9d415f123a1496375896b0e2e4585.py index d2c933003..603a8626f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_49a9d415f123a1496375896b0e2e4585.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_49a9d415f123a1496375896b0e2e4585.py @@ -60,7 +60,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -158,7 +158,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -185,7 +185,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -230,7 +230,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_5fc8c338cdb89d2e5bd73f6001b4e882.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_5fc8c338cdb89d2e5bd73f6001b4e882.py index 09e25bbf1..7d500e71c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_5fc8c338cdb89d2e5bd73f6001b4e882.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_5fc8c338cdb89d2e5bd73f6001b4e882.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): The selected traffic that has been generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): The selected traffic that has been generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): The selected traffic that has been generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6485976d478c41c1c401021ea28144ae.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6485976d478c41c1c401021ea28144ae.py index e0c430932..9489e009c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6485976d478c41c1c401021ea28144ae.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6485976d478c41c1c401021ea28144ae.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): NOT DEFINED + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_66888b2c9836f5766eaff6c15fe99c52.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_66888b2c9836f5766eaff6c15fe99c52.py index 3e9e5bb60..c9d2b4fbd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_66888b2c9836f5766eaff6c15fe99c52.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_66888b2c9836f5766eaff6c15fe99c52.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The VLAN ID to be used for the outer VLAN tag. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The VLAN ID to be used for the outer VLAN tag. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The VLAN ID to be used for the outer VLAN tag. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The VLAN ID to be used for the outer VLAN tag. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The VLAN ID to be used for the outer VLAN tag. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The VLAN ID to be used for the outer VLAN tag. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The VLAN ID to be used for the outer VLAN tag. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The VLAN ID to be used for the outer VLAN tag. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6a10911bc4b39d66fba99dafbb86ecfd.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6a10911bc4b39d66fba99dafbb86ecfd.py index 09e25bbf1..7d500e71c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6a10911bc4b39d66fba99dafbb86ecfd.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6a10911bc4b39d66fba99dafbb86ecfd.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): The selected traffic that has been generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): The selected traffic that has been generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): The selected traffic that has been generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6f0fc0a4980adef989dd23e3c4af33a0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6f0fc0a4980adef989dd23e3c4af33a0.py index 02b6bf638..f97e91206 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6f0fc0a4980adef989dd23e3c4af33a0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6f0fc0a4980adef989dd23e3c4af33a0.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6f2d1ffa44a1ec0777728af1fe5dc2f8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6f2d1ffa44a1ec0777728af1fe5dc2f8.py index 3306986df..5fdaa3caf 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6f2d1ffa44a1ec0777728af1fe5dc2f8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_6f2d1ffa44a1ec0777728af1fe5dc2f8.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): Signifies the ID of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): Signifies the ID of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): Signifies the ID of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): Signifies the ID of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): Signifies if the traffic selection is generated or not. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): Signifies the ID of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): Signifies the ID of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): Signifies if the traffic selection is generated or not. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): Signifies the ID of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): Signifies the ID of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): Signifies if the traffic selection is generated or not. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_7de81745b46b5aeb493b404443a09ea4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_7de81745b46b5aeb493b404443a09ea4.py index 796e56660..31234aee0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_7de81745b46b5aeb493b404443a09ea4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_7de81745b46b5aeb493b404443a09ea4.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): Signifies the ID + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): Signifies the ID """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -135,7 +135,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): Signifies the ID + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): Signifies the ID - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic is generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -155,7 +155,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): Signifies the ID + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): Signifies the ID - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic is generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -193,7 +193,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): Signifies the ID + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): Signifies the ID - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic is generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_91a8beda45d83c53669bc7cd0423c34d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_91a8beda45d83c53669bc7cd0423c34d.py index d61a67fd0..2a782855d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_91a8beda45d83c53669bc7cd0423c34d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_91a8beda45d83c53669bc7cd0423c34d.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_9b552c1eb749a18e0c9ea501856467ab.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_9b552c1eb749a18e0c9ea501856467ab.py index 6a27e6738..54bae4520 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_9b552c1eb749a18e0c9ea501856467ab.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_9b552c1eb749a18e0c9ea501856467ab.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The VLAN ID to be used for the outer VLAN tag. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The VLAN ID to be used for the outer VLAN tag. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -135,7 +135,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The VLAN ID to be used for the outer VLAN tag. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The VLAN ID to be used for the outer VLAN tag. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -155,7 +155,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The VLAN ID to be used for the outer VLAN tag. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The VLAN ID to be used for the outer VLAN tag. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -193,7 +193,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The VLAN ID to be used for the outer VLAN tag. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The VLAN ID to be used for the outer VLAN tag. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_a77d1dcc815feaabe4b3c34fe7d48a70.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_a77d1dcc815feaabe4b3c34fe7d48a70.py index 4a2e10bb6..044a52451 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_a77d1dcc815feaabe4b3c34fe7d48a70.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_a77d1dcc815feaabe4b3c34fe7d48a70.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): NOT DEFINED + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_b2d34cd17e35e5339cc47e1708a1bbc3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_b2d34cd17e35e5339cc47e1708a1bbc3.py index 90f39ef0b..16484bcfb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_b2d34cd17e35e5339cc47e1708a1bbc3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_b2d34cd17e35e5339cc47e1708a1bbc3.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): NOT DEFINED + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_c3cccad4dc6a39370b47b95b8e4e5044.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_c3cccad4dc6a39370b47b95b8e4e5044.py index ca44867c9..6bf1d3066 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_c3cccad4dc6a39370b47b95b8e4e5044.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_c3cccad4dc6a39370b47b95b8e4e5044.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_c980f43e562afd02cb44463e4c835bc1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_c980f43e562afd02cb44463e4c835bc1.py index 90352e4cd..24d12f6d4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_c980f43e562afd02cb44463e4c835bc1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_c980f43e562afd02cb44463e4c835bc1.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cb68eccb62d53e348d66e8dc5478667f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cb68eccb62d53e348d66e8dc5478667f.py index d4978eadd..1e4d290b7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cb68eccb62d53e348d66e8dc5478667f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cb68eccb62d53e348d66e8dc5478667f.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cb83617694ee786116c4e1bc27ca1109.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cb83617694ee786116c4e1bc27ca1109.py index d4978eadd..1e4d290b7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cb83617694ee786116c4e1bc27ca1109.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cb83617694ee786116c4e1bc27ca1109.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cd16b125f8d6fca2c348838e7d2e2ea1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cd16b125f8d6fca2c348838e7d2e2ea1.py index d4978eadd..1e4d290b7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cd16b125f8d6fca2c348838e7d2e2ea1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cd16b125f8d6fca2c348838e7d2e2ea1.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cdb9318cde18988a88c7d5462129571c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cdb9318cde18988a88c7d5462129571c.py index 6a27e6738..54bae4520 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cdb9318cde18988a88c7d5462129571c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_cdb9318cde18988a88c7d5462129571c.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The VLAN ID to be used for the outer VLAN tag. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The VLAN ID to be used for the outer VLAN tag. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -135,7 +135,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The VLAN ID to be used for the outer VLAN tag. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The VLAN ID to be used for the outer VLAN tag. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -155,7 +155,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The VLAN ID to be used for the outer VLAN tag. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The VLAN ID to be used for the outer VLAN tag. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -193,7 +193,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The VLAN ID to be used for the outer VLAN tag. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The VLAN ID to be used for the outer VLAN tag. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_ce8776c176ab25add4df9eb446e58c29.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_ce8776c176ab25add4df9eb446e58c29.py index ca44867c9..6bf1d3066 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_ce8776c176ab25add4df9eb446e58c29.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_ce8776c176ab25add4df9eb446e58c29.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d5fc55f6ee1bb5856151de0e5cd5d2d5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d5fc55f6ee1bb5856151de0e5cd5d2d5.py index 1b2bb9744..80d19c8a9 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d5fc55f6ee1bb5856151de0e5cd5d2d5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d5fc55f6ee1bb5856151de0e5cd5d2d5.py @@ -61,7 +61,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): NOT DEFINED + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -175,7 +175,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - Direction (str(all | none | request | response)): Traffic type for the frame data - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED @@ -204,7 +204,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - Direction (str(all | none | request | response)): Traffic type for the frame data - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED @@ -251,7 +251,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): NOT DEFINED + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): NOT DEFINED - Direction (str(all | none | request | response)): Traffic type for the frame data - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): NOT DEFINED diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d6928e4a57e5420a3b2cf1b8a94b8585.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d6928e4a57e5420a3b2cf1b8a94b8585.py index 7486deab6..fb5148d9d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d6928e4a57e5420a3b2cf1b8a94b8585.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d6928e4a57e5420a3b2cf1b8a94b8585.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): This object configures the traffic that is already specified with the traffic wizard. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): This object configures the traffic that is already specified with the traffic wizard. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): This object configures the traffic that is already specified with the traffic wizard. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): This object configures the traffic that is already specified with the traffic wizard. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): This object configures the traffic that is already specified with the traffic wizard. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): This object configures the traffic that is already specified with the traffic wizard. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): This object configures the traffic that is already specified with the traffic wizard. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): This object configures the traffic that is already specified with the traffic wizard. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d9608d106616009533f3a21c5ce53263.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d9608d106616009533f3a21c5ce53263.py index ca44867c9..6bf1d3066 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d9608d106616009533f3a21c5ce53263.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_d9608d106616009533f3a21c5ce53263.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_dce49dfe9845499a630256faeb5fc64a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_dce49dfe9845499a630256faeb5fc64a.py index d4978eadd..1e4d290b7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_dce49dfe9845499a630256faeb5fc64a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_dce49dfe9845499a630256faeb5fc64a.py @@ -58,7 +58,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -140,7 +140,7 @@ def update( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -165,7 +165,7 @@ def add( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -208,7 +208,7 @@ def find( Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_ef7578ce0886d5c44b64a8ca67753856.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_ef7578ce0886d5c44b64a8ca67753856.py index 801266f83..a41ea644b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_ef7578ce0886d5c44b64a8ca67753856.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_ef7578ce0886d5c44b64a8ca67753856.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_f387831939c28a776a58c26afacaf51c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_f387831939c28a776a58c26afacaf51c.py index ca44867c9..6bf1d3066 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_f387831939c28a776a58c26afacaf51c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_f387831939c28a776a58c26afacaf51c.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_f5140fdc153ca8a7d69f7bdf5fe6c22e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_f5140fdc153ca8a7d69f7bdf5fe6c22e.py index 09e25bbf1..7d500e71c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_f5140fdc153ca8a7d69f7bdf5fe6c22e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_f5140fdc153ca8a7d69f7bdf5fe6c22e.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): The selected traffic that has been generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): The selected traffic that has been generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): The selected traffic that has been generated. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_fa2c435e325c69ac70da550ed168d4ce.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_fa2c435e325c69ac70da550ed168d4ce.py index ca44867c9..6bf1d3066 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_fa2c435e325c69ac70da550ed168d4ce.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_fa2c435e325c69ac70da550ed168d4ce.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_fb18240dd8d510e46ff2fd8dd304551a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_fb18240dd8d510e46ff2fd8dd304551a.py index ca44867c9..6bf1d3066 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_fb18240dd8d510e46ff2fd8dd304551a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/quicktest/trafficselection_fb18240dd8d510e46ff2fd8dd304551a.py @@ -56,7 +56,7 @@ def Id__(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream): The unique identification of the traffic selection. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream): The unique identification of the traffic selection. """ return self._get_attribute(self._SDM_ATT_MAP["Id__"]) @@ -116,7 +116,7 @@ def update(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -133,7 +133,7 @@ def add(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data @@ -168,7 +168,7 @@ def find(self, Id__=None, IncludeMode=None, IsGenerated=None, ItemType=None): Args ---- - - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream)): The unique identification of the traffic selection. + - Id__ (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream)): The unique identification of the traffic selection. - IncludeMode (str(background | inTest)): Traffic type for the frame data - IsGenerated (bool): If true, the traffic selection is generated automatically. - ItemType (str(flowGroup | trafficItem)): Traffic type for the frame data diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/csvsnapshot/csvsnapshot.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/csvsnapshot/csvsnapshot.py index 34f2e1618..b6f86efe3 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/csvsnapshot/csvsnapshot.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/csvsnapshot/csvsnapshot.py @@ -242,7 +242,7 @@ def Views(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../view]): NOT DEFINED + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view]): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["Views"]) @@ -282,7 +282,7 @@ def update( - OpenViewer (bool): - SnapshotViewContents (str(allPages | currentPage)): NOT DEFINED - SnapshotViewCsvGenerationMode (str(appendCSVFile | newCSVFile | overwriteCSVFile)): NOT DEFINED - - Views (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../view])): NOT DEFINED + - Views (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view])): NOT DEFINED Raises ------ @@ -327,7 +327,7 @@ def find( - SnapshotSettingsName (str): NOT DEFINED - SnapshotViewContents (str(allPages | currentPage)): NOT DEFINED - SnapshotViewCsvGenerationMode (str(appendCSVFile | newCSVFile | overwriteCSVFile)): NOT DEFINED - - Views (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../view])): NOT DEFINED + - Views (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view])): NOT DEFINED Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/data/egress/flowcondition/flowcondition.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/data/egress/flowcondition/flowcondition.py index 9058279f0..dd535d9b7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/data/egress/flowcondition/flowcondition.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/data/egress/flowcondition/flowcondition.py @@ -93,7 +93,7 @@ def TrackingFilterId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter): + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter): """ return self._get_attribute(self._SDM_ATT_MAP["TrackingFilterId"]) @@ -131,7 +131,7 @@ def update( ---- - Operator (str(isBetween | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isSmaller)): - ShowFirstMatchingSet (bool): - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): - Values (list(number)): Raises @@ -154,7 +154,7 @@ def add( ---- - Operator (str(isBetween | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isSmaller)): - ShowFirstMatchingSet (bool): - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): - Values (list(number)): Returns @@ -195,7 +195,7 @@ def find( ---- - Operator (str(isBetween | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isSmaller)): - ShowFirstMatchingSet (bool): - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): - Values (list(number)): Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/drilldown/drilldown.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/drilldown/drilldown.py index b6b16293b..404fe75d1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/drilldown/drilldown.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/drilldown/drilldown.py @@ -109,7 +109,7 @@ def TargetRowFilter(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTargetRowFilters): Sets the row (from the view) that will be used to perform the drill-down. This is done by using one of the filters provided by availableTargetRowFilters + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/drillDown/availableTargetRowFilters): Sets the row (from the view) that will be used to perform the drill-down. This is done by using one of the filters provided by availableTargetRowFilters """ return self._get_attribute(self._SDM_ATT_MAP["TargetRowFilter"]) @@ -142,7 +142,7 @@ def update( Args ---- - TargetDrillDownOption (str): Sets the drill down option attribute to the drilldown object. It is one of the items in the list returned at 2. - - TargetRowFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTargetRowFilters)): Sets the row (from the view) that will be used to perform the drill-down. This is done by using one of the filters provided by availableTargetRowFilters + - TargetRowFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/drillDown/availableTargetRowFilters)): Sets the row (from the view) that will be used to perform the drill-down. This is done by using one of the filters provided by availableTargetRowFilters - TargetRowIndex (number): Sets the attribute targetRowIndex to the drill down object. This is the row (from the view) that will be used to perform the drill-down. Raises @@ -160,7 +160,7 @@ def add( Args ---- - TargetDrillDownOption (str): Sets the drill down option attribute to the drilldown object. It is one of the items in the list returned at 2. - - TargetRowFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTargetRowFilters)): Sets the row (from the view) that will be used to perform the drill-down. This is done by using one of the filters provided by availableTargetRowFilters + - TargetRowFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/drillDown/availableTargetRowFilters)): Sets the row (from the view) that will be used to perform the drill-down. This is done by using one of the filters provided by availableTargetRowFilters - TargetRowIndex (number): Sets the attribute targetRowIndex to the drill down object. This is the row (from the view) that will be used to perform the drill-down. Returns @@ -203,7 +203,7 @@ def find( - AvailableDrillDownOptions (list(str)): Gets the available drill down options for the selected row. - TargetDrillDownOption (str): Sets the drill down option attribute to the drilldown object. It is one of the items in the list returned at 2. - TargetRow (list(str)): Gets the target row, set previously, at step 1. - - TargetRowFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTargetRowFilters)): Sets the row (from the view) that will be used to perform the drill-down. This is done by using one of the filters provided by availableTargetRowFilters + - TargetRowFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/drillDown/availableTargetRowFilters)): Sets the row (from the view) that will be used to perform the drill-down. This is done by using one of the filters provided by availableTargetRowFilters - TargetRowIndex (number): Sets the attribute targetRowIndex to the drill down object. This is the row (from the view) that will be used to perform the drill-down. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23nextgenprotocolfilter/advancedfilter/advancedfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23nextgenprotocolfilter/advancedfilter/advancedfilter.py index bf9f9d50e..3328a1b12 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23nextgenprotocolfilter/advancedfilter/advancedfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23nextgenprotocolfilter/advancedfilter/advancedfilter.py @@ -98,7 +98,7 @@ def TrackingFilterId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters): Gets the id of the filter, which is used to add the filter to a view. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters): Gets the id of the filter, which is used to add the filter to a view. """ return self._get_attribute(self._SDM_ATT_MAP["TrackingFilterId"]) @@ -118,7 +118,7 @@ def update( - Expression (str): Specifies the filter body. This is a string that must have a specific format.This can be empty (no filter). The available operations and statistics can be obtained from availableAdvancedFilterOptions. - Name (str): Specifies the filter name. It must be unique per view. - SortingStats (str): Specifies the list of statistics by which the view will be sorted. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. Raises ------ @@ -135,7 +135,7 @@ def add(self, Expression=None, Name=None, SortingStats=None, TrackingFilterId=No - Expression (str): Specifies the filter body. This is a string that must have a specific format.This can be empty (no filter). The available operations and statistics can be obtained from availableAdvancedFilterOptions. - Name (str): Specifies the filter name. It must be unique per view. - SortingStats (str): Specifies the list of statistics by which the view will be sorted. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. Returns ------- @@ -172,7 +172,7 @@ def find( - Expression (str): Specifies the filter body. This is a string that must have a specific format.This can be empty (no filter). The available operations and statistics can be obtained from availableAdvancedFilterOptions. - Name (str): Specifies the filter name. It must be unique per view. - SortingStats (str): Specifies the list of statistics by which the view will be sorted. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23nextgenprotocolfilter/layer23nextgenprotocolfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23nextgenprotocolfilter/layer23nextgenprotocolfilter.py index 473e60e2f..db0d95470 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23nextgenprotocolfilter/layer23nextgenprotocolfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23nextgenprotocolfilter/layer23nextgenprotocolfilter.py @@ -98,7 +98,7 @@ def AdvancedCVFilter(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../advancedCVFilters): Sets the advanced filter for a custom view. Note: To change the filter on an existing view, you must first disable it. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/advancedCVFilters): Sets the advanced filter for a custom view. Note: To change the filter on an existing view, you must first disable it. """ return self._get_attribute(self._SDM_ATT_MAP["AdvancedCVFilter"]) @@ -143,7 +143,7 @@ def AllAdvancedFilters(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters): Returns a list with all the filters that are present in the selected drill down views. This includes filters that cannot be applied for the current drill down view. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters): Returns a list with all the filters that are present in the selected drill down views. This includes filters that cannot be applied for the current drill down view. """ return self._get_attribute(self._SDM_ATT_MAP["AllAdvancedFilters"]) @@ -153,7 +153,7 @@ def MatchingAdvancedFilters(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters): Returns a list that contains only the filters that can be applied on the current drill down view. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters): Returns a list that contains only the filters that can be applied on the current drill down view. """ return self._get_attribute(self._SDM_ATT_MAP["MatchingAdvancedFilters"]) @@ -163,7 +163,7 @@ def PortFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter]): Filters the port IDs + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter]): Filters the port IDs """ return self._get_attribute(self._SDM_ATT_MAP["PortFilterIds"]) @@ -178,7 +178,7 @@ def ProtocolFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter]): Filters the protocol IDs + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter]): Filters the protocol IDs """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolFilterIds"]) @@ -200,11 +200,11 @@ def update( Args ---- - - AdvancedCVFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../advancedCVFilters)): Sets the advanced filter for a custom view. Note: To change the filter on an existing view, you must first disable it. + - AdvancedCVFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/advancedCVFilters)): Sets the advanced filter for a custom view. Note: To change the filter on an existing view, you must first disable it. - AdvancedFilterName (str): Selects an advanced filter from the ones available in the selected drill down view. - AggregationType (str(perPort | perSession)): Signifies the type of aggregation of next gen protocols - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Filters the port IDs - - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter])): Filters the protocol IDs + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Filters the port IDs + - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter])): Filters the protocol IDs Raises ------ @@ -225,11 +225,11 @@ def add( Args ---- - - AdvancedCVFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../advancedCVFilters)): Sets the advanced filter for a custom view. Note: To change the filter on an existing view, you must first disable it. + - AdvancedCVFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/advancedCVFilters)): Sets the advanced filter for a custom view. Note: To change the filter on an existing view, you must first disable it. - AdvancedFilterName (str): Selects an advanced filter from the ones available in the selected drill down view. - AggregationType (str(perPort | perSession)): Signifies the type of aggregation of next gen protocols - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Filters the port IDs - - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter])): Filters the protocol IDs + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Filters the port IDs + - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter])): Filters the protocol IDs Returns ------- @@ -270,13 +270,13 @@ def find( Args ---- - - AdvancedCVFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../advancedCVFilters)): Sets the advanced filter for a custom view. Note: To change the filter on an existing view, you must first disable it. + - AdvancedCVFilter (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/advancedCVFilters)): Sets the advanced filter for a custom view. Note: To change the filter on an existing view, you must first disable it. - AdvancedFilterName (str): Selects an advanced filter from the ones available in the selected drill down view. - AggregationType (str(perPort | perSession)): Signifies the type of aggregation of next gen protocols - - AllAdvancedFilters (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): Returns a list with all the filters that are present in the selected drill down views. This includes filters that cannot be applied for the current drill down view. - - MatchingAdvancedFilters (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): Returns a list that contains only the filters that can be applied on the current drill down view. - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Filters the port IDs - - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter])): Filters the protocol IDs + - AllAdvancedFilters (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): Returns a list with all the filters that are present in the selected drill down views. This includes filters that cannot be applied for the current drill down view. + - MatchingAdvancedFilters (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): Returns a list that contains only the filters that can be applied on the current drill down view. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Filters the port IDs + - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter])): Filters the protocol IDs Returns ------- @@ -314,7 +314,7 @@ def AddAdvancedFilter(self, *args, **kwargs): addAdvancedFilter(Arg2=href, async_operation=bool) -------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): NOT DEFINED + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): NOT DEFINED - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. Raises diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolauthaccessfilter/layer23protocolauthaccessfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolauthaccessfilter/layer23protocolauthaccessfilter.py index cb822db3e..1b58cfbd2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolauthaccessfilter/layer23protocolauthaccessfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolauthaccessfilter/layer23protocolauthaccessfilter.py @@ -51,7 +51,7 @@ def PortFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter]): Ports that have been filtered. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter]): Ports that have been filtered. """ return self._get_attribute(self._SDM_ATT_MAP["PortFilterIds"]) @@ -66,7 +66,7 @@ def ProtocolFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter]): Protocols that have been filtered. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter]): Protocols that have been filtered. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolFilterIds"]) @@ -81,8 +81,8 @@ def update(self, PortFilterIds=None, ProtocolFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Ports that have been filtered. - - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter])): Protocols that have been filtered. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Ports that have been filtered. + - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter])): Protocols that have been filtered. Raises ------ @@ -96,8 +96,8 @@ def add(self, PortFilterIds=None, ProtocolFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Ports that have been filtered. - - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter])): Protocols that have been filtered. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Ports that have been filtered. + - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter])): Protocols that have been filtered. Returns ------- @@ -129,8 +129,8 @@ def find(self, PortFilterIds=None, ProtocolFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Ports that have been filtered. - - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter])): Protocols that have been filtered. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Ports that have been filtered. + - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter])): Protocols that have been filtered. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolportfilter/layer23protocolportfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolportfilter/layer23protocolportfilter.py index 9665ee035..99c2b7935 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolportfilter/layer23protocolportfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolportfilter/layer23protocolportfilter.py @@ -50,7 +50,7 @@ def PortFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter]): Selected port filters from the availablePortFilter list. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter]): Selected port filters from the availablePortFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["PortFilterIds"]) @@ -65,7 +65,7 @@ def update(self, PortFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. Raises ------ @@ -79,7 +79,7 @@ def add(self, PortFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. Returns ------- @@ -111,7 +111,7 @@ def find(self, PortFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolroutingfilter/layer23protocolroutingfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolroutingfilter/layer23protocolroutingfilter.py index dd4cccb11..11eeccfcb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolroutingfilter/layer23protocolroutingfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolroutingfilter/layer23protocolroutingfilter.py @@ -51,7 +51,7 @@ def PortFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter]): Ports that have been filtered. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter]): Ports that have been filtered. """ return self._get_attribute(self._SDM_ATT_MAP["PortFilterIds"]) @@ -66,7 +66,7 @@ def ProtocolFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter]): Protocols that have been filtered. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter]): Protocols that have been filtered. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolFilterIds"]) @@ -81,8 +81,8 @@ def update(self, PortFilterIds=None, ProtocolFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Ports that have been filtered. - - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter])): Protocols that have been filtered. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Ports that have been filtered. + - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter])): Protocols that have been filtered. Raises ------ @@ -96,8 +96,8 @@ def add(self, PortFilterIds=None, ProtocolFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Ports that have been filtered. - - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter])): Protocols that have been filtered. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Ports that have been filtered. + - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter])): Protocols that have been filtered. Returns ------- @@ -129,8 +129,8 @@ def find(self, PortFilterIds=None, ProtocolFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Ports that have been filtered. - - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolFilter])): Protocols that have been filtered. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Ports that have been filtered. + - ProtocolFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolFilter])): Protocols that have been filtered. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolstackfilter/layer23protocolstackfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolstackfilter/layer23protocolstackfilter.py index b17a385fd..8b8dd62bb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolstackfilter/layer23protocolstackfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23protocolstackfilter/layer23protocolstackfilter.py @@ -86,7 +86,7 @@ def ProtocolStackFilterId(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolStackFilter]): Selected protocol stack filters from the availableProtocolStackFilter list. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolStackFilter]): Selected protocol stack filters from the availableProtocolStackFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolStackFilterId"]) @@ -116,7 +116,7 @@ def SortingStatistic(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../statistic): The reference statistic by which the data will be sorted in created SV. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/statistic): The reference statistic by which the data will be sorted in created SV. """ return self._get_attribute(self._SDM_ATT_MAP["SortingStatistic"]) @@ -140,9 +140,9 @@ def update( ---- - DrilldownType (str(perRange | perSession)): Emulates perRange or perSession view based on the option seleted. - NumberOfResults (number): Number of traffic flows to be displayed. - - ProtocolStackFilterId (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolStackFilter])): Selected protocol stack filters from the availableProtocolStackFilter list. + - ProtocolStackFilterId (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolStackFilter])): Selected protocol stack filters from the availableProtocolStackFilter list. - SortAscending (bool): Sets the display order of the view. - - SortingStatistic (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../statistic)): The reference statistic by which the data will be sorted in created SV. + - SortingStatistic (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/statistic)): The reference statistic by which the data will be sorted in created SV. Raises ------ @@ -165,9 +165,9 @@ def add( ---- - DrilldownType (str(perRange | perSession)): Emulates perRange or perSession view based on the option seleted. - NumberOfResults (number): Number of traffic flows to be displayed. - - ProtocolStackFilterId (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolStackFilter])): Selected protocol stack filters from the availableProtocolStackFilter list. + - ProtocolStackFilterId (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolStackFilter])): Selected protocol stack filters from the availableProtocolStackFilter list. - SortAscending (bool): Sets the display order of the view. - - SortingStatistic (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../statistic)): The reference statistic by which the data will be sorted in created SV. + - SortingStatistic (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/statistic)): The reference statistic by which the data will be sorted in created SV. Returns ------- @@ -208,9 +208,9 @@ def find( ---- - DrilldownType (str(perRange | perSession)): Emulates perRange or perSession view based on the option seleted. - NumberOfResults (number): Number of traffic flows to be displayed. - - ProtocolStackFilterId (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableProtocolStackFilter])): Selected protocol stack filters from the availableProtocolStackFilter list. + - ProtocolStackFilterId (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableProtocolStackFilter])): Selected protocol stack filters from the availableProtocolStackFilter list. - SortAscending (bool): Sets the display order of the view. - - SortingStatistic (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../statistic)): The reference statistic by which the data will be sorted in created SV. + - SortingStatistic (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/statistic)): The reference statistic by which the data will be sorted in created SV. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/allflowsfilter/allflowsfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/allflowsfilter/allflowsfilter.py index a8a6ee3f8..294177336 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/allflowsfilter/allflowsfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/allflowsfilter/allflowsfilter.py @@ -69,7 +69,7 @@ def SortByStatisticId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter): The reference statistic by which the data will be sorted in created SV. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter): The reference statistic by which the data will be sorted in created SV. """ return self._get_attribute(self._SDM_ATT_MAP["SortByStatisticId"]) @@ -102,7 +102,7 @@ def update( Args ---- - NumberOfResults (number): Number of traffic flows to be displayed. - - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. + - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. - SortingCondition (str(bestPerformers | worstPerformers)): Sets the display order of the view. Raises @@ -118,7 +118,7 @@ def add(self, NumberOfResults=None, SortByStatisticId=None, SortingCondition=Non Args ---- - NumberOfResults (number): Number of traffic flows to be displayed. - - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. + - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. - SortingCondition (str(bestPerformers | worstPerformers)): Sets the display order of the view. Returns @@ -152,7 +152,7 @@ def find(self, NumberOfResults=None, SortByStatisticId=None, SortingCondition=No Args ---- - NumberOfResults (number): Number of traffic flows to be displayed. - - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. + - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. - SortingCondition (str(bestPerformers | worstPerformers)): Sets the display order of the view. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/layer23trafficflowdetectivefilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/layer23trafficflowdetectivefilter.py index 1f3e2a30b..373034567 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/layer23trafficflowdetectivefilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/layer23trafficflowdetectivefilter.py @@ -198,7 +198,7 @@ def PortFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter]): Selected port filters from the availablePortFilter list. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter]): Selected port filters from the availablePortFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["PortFilterIds"]) @@ -228,7 +228,7 @@ def TrafficItemFilterId(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter): Selected traffic flow detective filter from the availableTrafficItemFilter list. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter): Selected traffic flow detective filter from the availableTrafficItemFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficItemFilterId"]) @@ -243,7 +243,7 @@ def TrafficItemFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter]): Selected traffic item filters from the availableTrafficItemFilter list. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter]): Selected traffic item filters from the availableTrafficItemFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficItemFilterIds"]) @@ -268,10 +268,10 @@ def update( ---- - DeadFlowsThreshold (number): Threshold in seconds after which the flows are declared dead if there are no packets received for a specified number of seconds. This is a global attibute and hence the latest value entered takes precedence over previous values in all the custom views. - FlowFilterType (str(allFlows | deadFlows | liveFlows)): Indicates the flow detective filter settings. - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. - ShowEgressFlows (bool): NOT DEFINED - - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter)): Selected traffic flow detective filter from the availableTrafficItemFilter list. - - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. + - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter)): Selected traffic flow detective filter from the availableTrafficItemFilter list. + - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. Raises ------ @@ -295,10 +295,10 @@ def add( ---- - DeadFlowsThreshold (number): Threshold in seconds after which the flows are declared dead if there are no packets received for a specified number of seconds. This is a global attibute and hence the latest value entered takes precedence over previous values in all the custom views. - FlowFilterType (str(allFlows | deadFlows | liveFlows)): Indicates the flow detective filter settings. - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. - ShowEgressFlows (bool): NOT DEFINED - - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter)): Selected traffic flow detective filter from the availableTrafficItemFilter list. - - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. + - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter)): Selected traffic flow detective filter from the availableTrafficItemFilter list. + - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. Returns ------- @@ -342,10 +342,10 @@ def find( - DeadFlowsCount (number): The number of flows declared dead. A flow is declared dead if no traffic is received for a specified number of seconds. To change this threshold use the deadFlowsThreshold attribute. - DeadFlowsThreshold (number): Threshold in seconds after which the flows are declared dead if there are no packets received for a specified number of seconds. This is a global attibute and hence the latest value entered takes precedence over previous values in all the custom views. - FlowFilterType (str(allFlows | deadFlows | liveFlows)): Indicates the flow detective filter settings. - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. - ShowEgressFlows (bool): NOT DEFINED - - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter)): Selected traffic flow detective filter from the availableTrafficItemFilter list. - - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. + - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter)): Selected traffic flow detective filter from the availableTrafficItemFilter list. + - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/liveflowsfilter/liveflowsfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/liveflowsfilter/liveflowsfilter.py index 3f84d051c..f394f24c8 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/liveflowsfilter/liveflowsfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/liveflowsfilter/liveflowsfilter.py @@ -69,7 +69,7 @@ def SortByStatisticId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter): The reference statistic by which the data will be sorted in created SV. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter): The reference statistic by which the data will be sorted in created SV. """ return self._get_attribute(self._SDM_ATT_MAP["SortByStatisticId"]) @@ -102,7 +102,7 @@ def update( Args ---- - NumberOfResults (number): Number of traffic flows to be displayed. - - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. + - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. - SortingCondition (str(bestPerformers | worstPerformers)): Sets the display of the view according to best or worst performers. Raises @@ -118,7 +118,7 @@ def add(self, NumberOfResults=None, SortByStatisticId=None, SortingCondition=Non Args ---- - NumberOfResults (number): Number of traffic flows to be displayed. - - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. + - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. - SortingCondition (str(bestPerformers | worstPerformers)): Sets the display of the view according to best or worst performers. Returns @@ -152,7 +152,7 @@ def find(self, NumberOfResults=None, SortByStatisticId=None, SortingCondition=No Args ---- - NumberOfResults (number): Number of traffic flows to be displayed. - - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. + - SortByStatisticId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter)): The reference statistic by which the data will be sorted in created SV. - SortingCondition (str(bestPerformers | worstPerformers)): Sets the display of the view according to best or worst performers. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/statisticfilter/statisticfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/statisticfilter/statisticfilter.py index 5aa292011..9e4a2c2f9 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/statisticfilter/statisticfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/statisticfilter/statisticfilter.py @@ -79,7 +79,7 @@ def StatisticFilterId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter): Selected statistic filters from the availableStatisticFilter list. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter): Selected statistic filters from the availableStatisticFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["StatisticFilterId"]) @@ -110,7 +110,7 @@ def update(self, Operator=None, StatisticFilterId=None, Value=None): Args ---- - Operator (str(isAnyOf | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isLike | isNotLike | isSmaller)): The logical operation to be performed. - - StatisticFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter)): Selected statistic filters from the availableStatisticFilter list. + - StatisticFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter)): Selected statistic filters from the availableStatisticFilter list. - Value (str): Value of statistic to be matched based on operator. Raises @@ -126,7 +126,7 @@ def add(self, Operator=None, StatisticFilterId=None, Value=None): Args ---- - Operator (str(isAnyOf | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isLike | isNotLike | isSmaller)): The logical operation to be performed. - - StatisticFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter)): Selected statistic filters from the availableStatisticFilter list. + - StatisticFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter)): Selected statistic filters from the availableStatisticFilter list. - Value (str): Value of statistic to be matched based on operator. Returns @@ -160,7 +160,7 @@ def find(self, Operator=None, StatisticFilterId=None, Value=None): Args ---- - Operator (str(isAnyOf | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isLike | isNotLike | isSmaller)): The logical operation to be performed. - - StatisticFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableStatisticFilter)): Selected statistic filters from the availableStatisticFilter list. + - StatisticFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableStatisticFilter)): Selected statistic filters from the availableStatisticFilter list. - Value (str): Value of statistic to be matched based on operator. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/trackingfilter/trackingfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/trackingfilter/trackingfilter.py index bd4dabb91..1a64ee64c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/trackingfilter/trackingfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowdetectivefilter/trackingfilter/trackingfilter.py @@ -79,7 +79,7 @@ def TrackingFilterId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter): Selected tracking filters from the availableTrackingFilter list. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter): Selected tracking filters from the availableTrackingFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["TrackingFilterId"]) @@ -110,7 +110,7 @@ def update(self, Operator=None, TrackingFilterId=None, Value=None): Args ---- - Operator (str(isAnyOf | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isInAnyRange | isNoneOf | isSmaller)): The logical operation to be performed. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. - Value (list(str)): Value of the object Raises @@ -126,7 +126,7 @@ def add(self, Operator=None, TrackingFilterId=None, Value=None): Args ---- - Operator (str(isAnyOf | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isInAnyRange | isNoneOf | isSmaller)): The logical operation to be performed. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. - Value (list(str)): Value of the object Returns @@ -160,7 +160,7 @@ def find(self, Operator=None, TrackingFilterId=None, Value=None): Args ---- - Operator (str(isAnyOf | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isInAnyRange | isNoneOf | isSmaller)): The logical operation to be performed. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. - Value (list(str)): Value of the object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/enumerationfilter/enumerationfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/enumerationfilter/enumerationfilter.py index eb923cf05..6e7c9322c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/enumerationfilter/enumerationfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/enumerationfilter/enumerationfilter.py @@ -68,7 +68,7 @@ def TrackingFilterId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter): Selected tracking filters from the availableTrackingFilter list. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter): Selected tracking filters from the availableTrackingFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["TrackingFilterId"]) @@ -84,7 +84,7 @@ def update(self, SortDirection=None, TrackingFilterId=None): Args ---- - SortDirection (str(ascending | descending)): Sets the display order of the view. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. Raises ------ @@ -99,7 +99,7 @@ def add(self, SortDirection=None, TrackingFilterId=None): Args ---- - SortDirection (str(ascending | descending)): Sets the display order of the view. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. Returns ------- @@ -132,7 +132,7 @@ def find(self, SortDirection=None, TrackingFilterId=None): Args ---- - SortDirection (str(ascending | descending)): Sets the display order of the view. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/layer23trafficflowfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/layer23trafficflowfilter.py index 5f076d9a7..a6bd6fda1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/layer23trafficflowfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/layer23trafficflowfilter.py @@ -131,7 +131,7 @@ def PortFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter]): Selected port filters from the availablePortFilter list. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter]): Selected port filters from the availablePortFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["PortFilterIds"]) @@ -146,7 +146,7 @@ def TrafficItemFilterId(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter): Selected traffic item filter from the availableTrafficItemFilter list. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter): Selected traffic item filter from the availableTrafficItemFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficItemFilterId"]) @@ -161,7 +161,7 @@ def TrafficItemFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter]): Selected traffic item filters from the availableTrafficItemFilter list. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter]): Selected traffic item filters from the availableTrafficItemFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficItemFilterIds"]) @@ -185,9 +185,9 @@ def update( ---- - AggregatedAcrossPorts (bool): If true, displays aggregated stat value across ports selected by portFilterIds. Default = false - EgressLatencyBinDisplayOption (str(none | showEgressFlatView | showEgressRows | showLatencyBinStats)): Emulates Latency Bin SV or Egress Tracking SV. - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. - - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter)): Selected traffic item filter from the availableTrafficItemFilter list. - - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. + - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter)): Selected traffic item filter from the availableTrafficItemFilter list. + - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. Raises ------ @@ -210,9 +210,9 @@ def add( ---- - AggregatedAcrossPorts (bool): If true, displays aggregated stat value across ports selected by portFilterIds. Default = false - EgressLatencyBinDisplayOption (str(none | showEgressFlatView | showEgressRows | showLatencyBinStats)): Emulates Latency Bin SV or Egress Tracking SV. - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. - - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter)): Selected traffic item filter from the availableTrafficItemFilter list. - - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. + - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter)): Selected traffic item filter from the availableTrafficItemFilter list. + - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. Returns ------- @@ -253,9 +253,9 @@ def find( ---- - AggregatedAcrossPorts (bool): If true, displays aggregated stat value across ports selected by portFilterIds. Default = false - EgressLatencyBinDisplayOption (str(none | showEgressFlatView | showEgressRows | showLatencyBinStats)): Emulates Latency Bin SV or Egress Tracking SV. - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. - - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter)): Selected traffic item filter from the availableTrafficItemFilter list. - - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. + - TrafficItemFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter)): Selected traffic item filter from the availableTrafficItemFilter list. + - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/trackingfilter/trackingfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/trackingfilter/trackingfilter.py index bd4dabb91..1a64ee64c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/trackingfilter/trackingfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficflowfilter/trackingfilter/trackingfilter.py @@ -79,7 +79,7 @@ def TrackingFilterId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter): Selected tracking filters from the availableTrackingFilter list. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter): Selected tracking filters from the availableTrackingFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["TrackingFilterId"]) @@ -110,7 +110,7 @@ def update(self, Operator=None, TrackingFilterId=None, Value=None): Args ---- - Operator (str(isAnyOf | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isInAnyRange | isNoneOf | isSmaller)): The logical operation to be performed. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. - Value (list(str)): Value of the object Raises @@ -126,7 +126,7 @@ def add(self, Operator=None, TrackingFilterId=None, Value=None): Args ---- - Operator (str(isAnyOf | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isInAnyRange | isNoneOf | isSmaller)): The logical operation to be performed. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. - Value (list(str)): Value of the object Returns @@ -160,7 +160,7 @@ def find(self, Operator=None, TrackingFilterId=None, Value=None): Args ---- - Operator (str(isAnyOf | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isInAnyRange | isNoneOf | isSmaller)): The logical operation to be performed. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. - Value (list(str)): Value of the object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficitemfilter/layer23trafficitemfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficitemfilter/layer23trafficitemfilter.py index 01fe21b36..adced1f75 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficitemfilter/layer23trafficitemfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficitemfilter/layer23trafficitemfilter.py @@ -50,7 +50,7 @@ def TrafficItemFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter]): Selected traffic item filters from the availableTrafficItemFilter list. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter]): Selected traffic item filters from the availableTrafficItemFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficItemFilterIds"]) @@ -65,7 +65,7 @@ def update(self, TrafficItemFilterIds=None): Args ---- - - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. + - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. Raises ------ @@ -79,7 +79,7 @@ def add(self, TrafficItemFilterIds=None): Args ---- - - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. + - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. Returns ------- @@ -111,7 +111,7 @@ def find(self, TrafficItemFilterIds=None): Args ---- - - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. + - TrafficItemFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrafficItemFilter])): Selected traffic item filters from the availableTrafficItemFilter list. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficportfilter/layer23trafficportfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficportfilter/layer23trafficportfilter.py index da354719d..4bd2152d2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficportfilter/layer23trafficportfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer23trafficportfilter/layer23trafficportfilter.py @@ -50,7 +50,7 @@ def PortFilterIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter]): Selected port filters from the availablePortFilter list. + - list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter]): Selected port filters from the availablePortFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["PortFilterIds"]) @@ -65,7 +65,7 @@ def update(self, PortFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. Raises ------ @@ -79,7 +79,7 @@ def add(self, PortFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. Returns ------- @@ -111,7 +111,7 @@ def find(self, PortFilterIds=None): Args ---- - - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/.../availablePortFilter])): Selected port filters from the availablePortFilter list. + - PortFilterIds (list(str[None | /api/v1/sessions/1/ixnetwork/statistics/view/availablePortFilter])): Selected port filters from the availablePortFilter list. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer47applibrarytrafficfilter/advancedfilter/advancedfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer47applibrarytrafficfilter/advancedfilter/advancedfilter.py index bf9f9d50e..3328a1b12 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer47applibrarytrafficfilter/advancedfilter/advancedfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer47applibrarytrafficfilter/advancedfilter/advancedfilter.py @@ -98,7 +98,7 @@ def TrackingFilterId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters): Gets the id of the filter, which is used to add the filter to a view. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters): Gets the id of the filter, which is used to add the filter to a view. """ return self._get_attribute(self._SDM_ATT_MAP["TrackingFilterId"]) @@ -118,7 +118,7 @@ def update( - Expression (str): Specifies the filter body. This is a string that must have a specific format.This can be empty (no filter). The available operations and statistics can be obtained from availableAdvancedFilterOptions. - Name (str): Specifies the filter name. It must be unique per view. - SortingStats (str): Specifies the list of statistics by which the view will be sorted. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. Raises ------ @@ -135,7 +135,7 @@ def add(self, Expression=None, Name=None, SortingStats=None, TrackingFilterId=No - Expression (str): Specifies the filter body. This is a string that must have a specific format.This can be empty (no filter). The available operations and statistics can be obtained from availableAdvancedFilterOptions. - Name (str): Specifies the filter name. It must be unique per view. - SortingStats (str): Specifies the list of statistics by which the view will be sorted. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. Returns ------- @@ -172,7 +172,7 @@ def find( - Expression (str): Specifies the filter body. This is a string that must have a specific format.This can be empty (no filter). The available operations and statistics can be obtained from availableAdvancedFilterOptions. - Name (str): Specifies the filter name. It must be unique per view. - SortingStats (str): Specifies the list of statistics by which the view will be sorted. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): Gets the id of the filter, which is used to add the filter to a view. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer47applibrarytrafficfilter/layer47applibrarytrafficfilter.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer47applibrarytrafficfilter/layer47applibrarytrafficfilter.py index 8291c7c33..307ee3dcd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer47applibrarytrafficfilter/layer47applibrarytrafficfilter.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/layer47applibrarytrafficfilter/layer47applibrarytrafficfilter.py @@ -89,7 +89,7 @@ def AllAdvancedFilters(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters): Returns a list with all the filters that are present in the selected drill down views. This includes filters that cannot be applied for the current drill down view. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters): Returns a list with all the filters that are present in the selected drill down views. This includes filters that cannot be applied for the current drill down view. """ return self._get_attribute(self._SDM_ATT_MAP["AllAdvancedFilters"]) @@ -99,7 +99,7 @@ def MatchingAdvancedFilters(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters): Specifies a list that contains only the filters which can be applied on the current drill down view. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters): Specifies a list that contains only the filters which can be applied on the current drill down view. """ return self._get_attribute(self._SDM_ATT_MAP["MatchingAdvancedFilters"]) @@ -197,8 +197,8 @@ def find( Args ---- - AdvancedFilterName (str): Specifies an advanced filter from the ones available in the selected drill down view. - - AllAdvancedFilters (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): Returns a list with all the filters that are present in the selected drill down views. This includes filters that cannot be applied for the current drill down view. - - MatchingAdvancedFilters (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): Specifies a list that contains only the filters which can be applied on the current drill down view. + - AllAdvancedFilters (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): Returns a list with all the filters that are present in the selected drill down views. This includes filters that cannot be applied for the current drill down view. + - MatchingAdvancedFilters (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): Specifies a list that contains only the filters which can be applied on the current drill down view. - TopxEnabled (bool): The view only shows the number of rows specified by TopXValue. If the view is OnDemand, it will become RealTime. - TopxValue (number): The number of rows to be shown when TopXEnabled is set to true. @@ -238,7 +238,7 @@ def AddAdvancedFilter(self, *args, **kwargs): addAdvancedFilter(Arg2=href, async_operation=bool) -------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableAdvancedFilters)): NOT DEFINED + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableAdvancedFilters)): NOT DEFINED - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. Raises diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/page/egress/flowcondition/flowcondition.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/page/egress/flowcondition/flowcondition.py index 3705a6f74..7b1ec7348 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/page/egress/flowcondition/flowcondition.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/statistics/view/page/egress/flowcondition/flowcondition.py @@ -93,7 +93,7 @@ def TrackingFilterId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter): Selected tracking filters from the availableTrackingFilter list. + - str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter): Selected tracking filters from the availableTrackingFilter list. """ return self._get_attribute(self._SDM_ATT_MAP["TrackingFilterId"]) @@ -131,7 +131,7 @@ def update( ---- - Operator (str(isBetween | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isSmaller)): The logical operation to be performed. - ShowFirstMatchingSet (bool): If true, displays the first matching set. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. - Values (list(number)): Value to be matched for the condition. Raises @@ -154,7 +154,7 @@ def add( ---- - Operator (str(isBetween | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isSmaller)): The logical operation to be performed. - ShowFirstMatchingSet (bool): If true, displays the first matching set. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. - Values (list(number)): Value to be matched for the condition. Returns @@ -195,7 +195,7 @@ def find( ---- - Operator (str(isBetween | isDifferent | isEqual | isEqualOrGreater | isEqualOrSmaller | isGreater | isSmaller)): The logical operation to be performed. - ShowFirstMatchingSet (bool): If true, displays the first matching set. - - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/.../availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. + - TrackingFilterId (str(None | /api/v1/sessions/1/ixnetwork/statistics/view/availableTrackingFilter)): Selected tracking filters from the availableTrackingFilter list. - Values (list(number)): Value to be matched for the condition. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/timeline/test/test.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/timeline/test/test.py index 17a18be6c..24e375a7c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/timeline/test/test.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/timeline/test/test.py @@ -139,7 +139,7 @@ def MonitorTrafficItemId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem): + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem): """ return self._get_attribute(self._SDM_ATT_MAP["MonitorTrafficItemId"]) @@ -169,7 +169,7 @@ def QuickTestId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/quickTest/.../*): The id of the QT + - str(None | /api/v1/sessions/1/ixnetwork/quickTest): The id of the QT """ return self._get_attribute(self._SDM_ATT_MAP["QuickTestId"]) @@ -249,7 +249,7 @@ def TimingTrafficItemId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem): + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem): """ return self._get_attribute(self._SDM_ATT_MAP["TimingTrafficItemId"]) @@ -274,7 +274,7 @@ def TrafficItemIds(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem]): Id(s) of traffic item(s) + - list(str[None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem]): Id(s) of traffic item(s) """ return self._get_attribute(self._SDM_ATT_MAP["TrafficItemIds"]) @@ -302,7 +302,7 @@ def update( - State (str(cancelled | cpDpConvergenceNotReached | fail | failedCriteria | pass | preflightCheck | preflightFail | ribInConvergenceThresholdNotReached | running | skipped | waitingForStart)): Current state of the QT - TimingPort (str): Showing the timing port, also the hardware - TrackBy (list(str)): Currently set tracking options - - TrafficItemIds (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem])): Id(s) of traffic item(s) + - TrafficItemIds (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem])): Id(s) of traffic item(s) Raises ------ @@ -329,7 +329,7 @@ def add( - State (str(cancelled | cpDpConvergenceNotReached | fail | failedCriteria | pass | preflightCheck | preflightFail | ribInConvergenceThresholdNotReached | running | skipped | waitingForStart)): Current state of the QT - TimingPort (str): Showing the timing port, also the hardware - TrackBy (list(str)): Currently set tracking options - - TrafficItemIds (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem])): Id(s) of traffic item(s) + - TrafficItemIds (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem])): Id(s) of traffic item(s) Returns ------- @@ -375,19 +375,19 @@ def find( - Enabled (bool): Boolean, If True, the test will be included in Timeline for running. If false, the test will be skipped from execution - EndTime (str): End time for the test - MonitorPorts (list(str)): Showing the monitor port , also the hardware - - MonitorTrafficItemId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem)): + - MonitorTrafficItemId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem)): - Name (str): Quick Test name property - NowTime (str): Current time - - QuickTestId (str(None | /api/v1/sessions/1/ixnetwork/quickTest/.../*)): The id of the QT + - QuickTestId (str(None | /api/v1/sessions/1/ixnetwork/quickTest)): The id of the QT - StartTime (str): Start time for the test - State (str(cancelled | cpDpConvergenceNotReached | fail | failedCriteria | pass | preflightCheck | preflightFail | ribInConvergenceThresholdNotReached | running | skipped | waitingForStart)): Current state of the QT - SupportsMonitoring (bool): Boolean, True if a monitor port is selected for a test - SupportsTiming (bool): Boolean, True if a timing port is selected for a test - TimingPort (str): Showing the timing port, also the hardware - TimingTopologyId (str(None | /api/v1/sessions/1/ixnetwork/topology)): The id for the topology with timing port (when a timing port is used) - - TimingTrafficItemId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem)): + - TimingTrafficItemId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem)): - TrackBy (list(str)): Currently set tracking options - - TrafficItemIds (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem])): Id(s) of traffic item(s) + - TrafficItemIds (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem])): Id(s) of traffic item(s) Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/timeline/timeline.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/timeline/timeline.py index 6fe7e21b7..b268e3795 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/timeline/timeline.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/timeline/timeline.py @@ -97,7 +97,7 @@ def ExecutingTest(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/timeline/.../test): The id of the test under execution + - str(None | /api/v1/sessions/1/ixnetwork/timeline/test): The id of the test under execution """ return self._get_attribute(self._SDM_ATT_MAP["ExecutingTest"]) @@ -166,7 +166,7 @@ def TestOrder(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/timeline/.../test]): The desired order for the tests to run + - list(str[None | /api/v1/sessions/1/ixnetwork/timeline/test]): The desired order for the tests to run """ return self._get_attribute(self._SDM_ATT_MAP["TestOrder"]) @@ -191,9 +191,9 @@ def update(self, ExecutingTest=None, PauseOnError=None, TestOrder=None): Args ---- - - ExecutingTest (str(None | /api/v1/sessions/1/ixnetwork/timeline/.../test)): The id of the test under execution + - ExecutingTest (str(None | /api/v1/sessions/1/ixnetwork/timeline/test)): The id of the test under execution - PauseOnError (bool): Pauses the test when an error is found - - TestOrder (list(str[None | /api/v1/sessions/1/ixnetwork/timeline/.../test])): The desired order for the tests to run + - TestOrder (list(str[None | /api/v1/sessions/1/ixnetwork/timeline/test])): The desired order for the tests to run Raises ------ @@ -224,13 +224,13 @@ def find( ---- - CurrentTime (str): Current time - EndTime (str): The end time of the test - - ExecutingTest (str(None | /api/v1/sessions/1/ixnetwork/timeline/.../test)): The id of the test under execution + - ExecutingTest (str(None | /api/v1/sessions/1/ixnetwork/timeline/test)): The id of the test under execution - ExecutingTestProgress (str): Current specific state for the Quick Test after the ports are connected (e.g. preflightWaitingForChassisConnect, checkingPorts, checkingProtocols, sendinglearningframes, transmittingframes, etc) - MonitorTopologyId (str(None | /api/v1/sessions/1/ixnetwork/topology)): Id for the topology with monitor port (when a monitor port is used) - PauseOnError (bool): Pauses the test when an error is found - StartTime (str): Start time of the test - State (dict(arg1:str,arg2:str[cancelled | complete | idle | postflightReleasingPorts | postflightStoppingProtocols | postflightStoppingTimeline | preflightAggregatingCards | preflightCheckingPorts | preflightCheckingProtocols | preflightConnectingPorts | preflightFailed | preflightSettingUpPorts | preflightStart | preflightValidatingTimeline | preflightWaitingForChassisConnect | running])): The general state of the ports and QT (e.g. preflightConnectingPorts , prefligtCheckingPorts, running, complete) - - TestOrder (list(str[None | /api/v1/sessions/1/ixnetwork/timeline/.../test])): The desired order for the tests to run + - TestOrder (list(str[None | /api/v1/sessions/1/ixnetwork/timeline/test])): The desired order for the tests to run - TimingTopologyIds (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): Id for the topology with timing port (when a timing port is used Returns @@ -295,7 +295,7 @@ def CreateProtocol(self, *args, **kwargs): --------------------------------------------------- - Arg2 (str(bgpBfdIpv4PeerIpv4Pools | bgpBfdIpv6PeerIpv6Pools | bgpBfdMixedPeerPools | bgpIpv4PeerIpv4Pools | bgpIpv6PeerIpv6Pools | bgpMixedPeerPools | chainedIpv4 | chainedIpv6 | ethernetVlan | ipv4 | ipv4IgmpHost | ipv4IgmpQuerierHost | ipv4ipv6 | ipv6 | ipv6MldHost | ipv6MldQuerierHost)): The protocol type (from the list of supported protocol types for QT) to be created - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): + - Returns str(None | /api/v1/sessions/1/ixnetwork/topology): Raises ------ @@ -319,7 +319,7 @@ def CreateTest(self, *args, **kwargs): - Arg2 (str(rfc2544back2back | rfc2544frameLoss | rfc2544throughput | rfc2889addressCache | rfc2889addressRate | rfc3918joinLeaveDelay | rfc3918mixedClassThroughput | rfc7747failover | rfc7747ribIn | trafficTest)): The list with all supported tests - Arg3 (str(bgpBfdIpv4PeerIpv4Pools | bgpBfdIpv6PeerIpv6Pools | bgpBfdMixedPeerPools | bgpIpv4PeerIpv4Pools | bgpIpv6PeerIpv6Pools | bgpMixedPeerPools | chainedIpv4 | chainedIpv6 | ethernetVlan | ipv4 | ipv4IgmpHost | ipv4IgmpQuerierHost | ipv4ipv6 | ipv6 | ipv6MldHost | ipv6MldQuerierHost | none)): The list of supported protocols - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/timeline/.../test],arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest/.../*],arg3:list[str[None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem]]): + - Returns dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/timeline/test],arg2:str[None | /api/v1/sessions/1/ixnetwork/quickTest],arg3:list[str[None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem]]): Raises ------ @@ -343,7 +343,7 @@ def CreateTraffic(self, *args, **kwargs): -------------------------------------------------- - Arg2 (str(ethernetVlan | ipv4 | ipv4WithChainedDG | ipv4WithDG | ipv6 | ipv6WithChainedDG | ipv6WithDG)): The desired traffic added from Timeline - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficItem): + - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem): Raises ------ diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/actionsprofile_c65384e18e20517e184ef23474b0b960.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/actionsprofile_c65384e18e20517e184ef23474b0b960.py index 4dfaaad89..275a82e27 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/actionsprofile_c65384e18e20517e184ef23474b0b960.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/actionsprofile_c65384e18e20517e184ef23474b0b960.py @@ -163,7 +163,7 @@ def AddFromTemplate(self, *args, **kwargs): addFromTemplate(Arg2=href, async_operation=bool) ------------------------------------------------ - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork//.../*)): + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/)): - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. Raises diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ancp_32ef0f30885d45a86fb93ff8c22f3107.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ancp_32ef0f30885d45a86fb93ff8c22f3107.py index a7c7ec98b..95624fcb8 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ancp_32ef0f30885d45a86fb93ff8c22f3107.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ancp_32ef0f30885d45a86fb93ff8c22f3107.py @@ -82,7 +82,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -130,7 +130,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -288,7 +288,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -379,10 +379,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -396,10 +396,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -442,14 +442,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdrouter_deb1cea5df395bf5b6957f7f9cde8ef4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdrouter_deb1cea5df395bf5b6957f7f9cde8ef4.py index 751bd0e7c..47b6ed297 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdrouter_deb1cea5df395bf5b6957f7f9cde8ef4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdrouter_deb1cea5df395bf5b6957f7f9cde8ef4.py @@ -99,7 +99,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -223,7 +223,7 @@ def find( ---- - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterId (list(str)): The BFD Router ID value, in IPv4 format. - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdv4interface_91b557a3f744baf442dbe21ac75e8f2e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdv4interface_91b557a3f744baf442dbe21ac75e8f2e.py index 49c0cf6af..6c0a9c166 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdv4interface_91b557a3f744baf442dbe21ac75e8f2e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdv4interface_91b557a3f744baf442dbe21ac75e8f2e.py @@ -168,7 +168,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -271,7 +271,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -408,7 +408,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -490,11 +490,11 @@ def update( Args ---- - AggregateBfdSession (bool): If enabled, all interfaces except on VNI 0 will be disabled and grayed-out. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfSessions (number): The number of configured BFD sessions - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -517,11 +517,11 @@ def add( Args ---- - AggregateBfdSession (bool): If enabled, all interfaces except on VNI 0 will be disabled and grayed-out. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfSessions (number): The number of configured BFD sessions - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -569,16 +569,16 @@ def find( Args ---- - AggregateBfdSession (bool): If enabled, all interfaces except on VNI 0 will be disabled and grayed-out. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterId (list(str)): The BFD Router ID value, in IPv4 format. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfSessions (number): The number of configured BFD sessions - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - Vni (list(number)): Corresponding VXLAN Protocol VNI. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdv6interface_b9a91920db1b70c8c6410d2de0b438d3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdv6interface_b9a91920db1b70c8c6410d2de0b438d3.py index 87a49d29e..a6a843c34 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdv6interface_b9a91920db1b70c8c6410d2de0b438d3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bfdv6interface_b9a91920db1b70c8c6410d2de0b438d3.py @@ -168,7 +168,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -271,7 +271,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -408,7 +408,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -490,11 +490,11 @@ def update( Args ---- - AggregateBfdSession (bool): If enabled, all interfaces except on VNI 0 will be disabled and grayed-out. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfSessions (number): The number of configured BFD sessions - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -517,11 +517,11 @@ def add( Args ---- - AggregateBfdSession (bool): If enabled, all interfaces except on VNI 0 will be disabled and grayed-out. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfSessions (number): The number of configured BFD sessions - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -569,16 +569,16 @@ def find( Args ---- - AggregateBfdSession (bool): If enabled, all interfaces except on VNI 0 will be disabled and grayed-out. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterId (list(str)): The BFD Router ID value, in IPv4 format. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfSessions (number): The number of configured BFD sessions - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - Vni (list(number)): Corresponding VXLAN Protocol VNI. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpethernetsegmentv4_1cb5c56a2c9d4d061f97207a53f3a691.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpethernetsegmentv4_1cb5c56a2c9d4d061f97207a53f3a691.py index 1e7b9f11b..d776190ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpethernetsegmentv4_1cb5c56a2c9d4d061f97207a53f3a691.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpethernetsegmentv4_1cb5c56a2c9d4d061f97207a53f3a691.py @@ -162,13 +162,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpethernetsegmentv6_766c04a63efb3fe4eca969aac968fe4e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpethernetsegmentv6_766c04a63efb3fe4eca969aac968fe4e.py index 8b4e7ccd6..89f8845a5 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpethernetsegmentv6_766c04a63efb3fe4eca969aac968fe4e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpethernetsegmentv6_766c04a63efb3fe4eca969aac968fe4e.py @@ -164,13 +164,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.py similarity index 89% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.py index 43cac690f..a2b0c9016 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.py @@ -44,6 +44,8 @@ class BgpExtendedCommunitiesList(Base): "ColorReservedBits": "colorReservedBits", "ColorValue": "colorValue", "Count": "count", + "CustomExtCommType": "customExtCommType", + "CustomExtCommValue": "customExtCommValue", "DescriptiveName": "descriptiveName", "Ip": "ip", "LinkBandwidth": "linkBandwidth", @@ -161,6 +163,34 @@ def Count(self): """ return self._get_attribute(self._SDM_ATT_MAP["Count"]) + @property + def CustomExtCommType(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If Custom Extended Community is selected from Extended Community Dropdown then this field is enabled for user input. You can put any value of length 2 bytes for the extended community attribute. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CustomExtCommType"]) + ) + + @property + def CustomExtCommValue(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If Custom Extended Community is selected from Extended Community Dropdown then this field is enabled for user input. You can put any value of length 6 bytes for the extended community attribute. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CustomExtCommValue"]) + ) + @property def DescriptiveName(self): # type: () -> str @@ -333,6 +363,8 @@ def get_device_ids( ColorCOBits=None, ColorReservedBits=None, ColorValue=None, + CustomExtCommType=None, + CustomExtCommValue=None, Ip=None, LinkBandwidth=None, OpaqueData=None, @@ -353,6 +385,8 @@ def get_device_ids( - ColorCOBits (str): optional regex of colorCOBits - ColorReservedBits (str): optional regex of colorReservedBits - ColorValue (str): optional regex of colorValue + - CustomExtCommType (str): optional regex of customExtCommType + - CustomExtCommValue (str): optional regex of customExtCommValue - Ip (str): optional regex of ip - LinkBandwidth (str): optional regex of linkBandwidth - OpaqueData (str): optional regex of opaqueData diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_9ad7609645f425215665a5736cc73e84.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_6369634b1dc049c4e02574db74970dd8.py similarity index 70% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_9ad7609645f425215665a5736cc73e84.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_6369634b1dc049c4e02574db74970dd8.py index a6d7af551..0b4367c50 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_9ad7609645f425215665a5736cc73e84.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_6369634b1dc049c4e02574db74970dd8.py @@ -35,14 +35,19 @@ class BgpFlowSpecRangesList(Base): __slots__ = () _SDM_NAME = "bgpFlowSpecRangesList" _SDM_ATT_MAP = { + "ActivateSRv6Policy": "activateSRv6Policy", "Active": "active", "AggregatorAs": "aggregatorAs", "AggregatorId": "aggregatorId", + "ArgumentLengthFlowspec": "argumentLengthFlowspec", "AsNumber2Bytes": "asNumber2Bytes", "AsNumber4Bytes": "asNumber4Bytes", "AsSetMode": "asSetMode", "AssignedNumber2Bytes": "assignedNumber2Bytes", "AssignedNumber4Bytes": "assignedNumber4Bytes", + "ColorCOBitsFlowspec": "colorCOBitsFlowspec", + "ColorReservedBitsFlowspec": "colorReservedBitsFlowspec", + "ColorValueFlowspec": "colorValueFlowspec", "Count": "count", "DescriptiveName": "descriptiveName", "DestPortMatch": "destPortMatch", @@ -64,22 +69,29 @@ class BgpFlowSpecRangesList(Base): "EnableOrigin": "enableOrigin", "EnableOriginatorId": "enableOriginatorId", "EnableRedirect": "enableRedirect", + "EnableRedirectIPv6NHop": "enableRedirectIPv6NHop", "EnableReirectIPv6": "enableReirectIPv6", "EnableSourcePrefixV6": "enableSourcePrefixV6", + "EnableSrv6SidFlowspec": "enableSrv6SidFlowspec", "EnableTrafficAction": "enableTrafficAction", "EnableTrafficMarketing": "enableTrafficMarketing", "EnableTrafficMarking": "enableTrafficMarking", "EnableTrafficRate": "enableTrafficRate", + "EnableTrafficRatePacket": "enableTrafficRatePacket", "FlowLabel": "flowLabel", "FlowSpecName": "flowSpecName", "FragmentMatchV6": "fragmentMatchV6", + "FunctionLengthFlowspec": "functionLengthFlowspec", "IcmpCodeMatch": "icmpCodeMatch", "IcmpTypeMatch": "icmpTypeMatch", + "IncSrv6SidStructSsTlvFlowspec": "incSrv6SidStructSsTlvFlowspec", "Ip": "ip", "IpPacketLenMatch": "ipPacketLenMatch", "IpV4": "ipV4", "Ipv4NextHop": "ipv4NextHop", "Ipv6NextHop": "ipv6NextHop", + "LocBlockLengthFlowspec": "locBlockLengthFlowspec", + "LocNodeLengthFlowspec": "locNodeLengthFlowspec", "LocalPreference": "localPreference", "MultiExitDiscriminator": "multiExitDiscriminator", "Name": "name", @@ -95,8 +107,10 @@ class BgpFlowSpecRangesList(Base): "OverridePeerAsSetMode": "overridePeerAsSetMode", "PortMatch": "portMatch", "RedirectCBit": "redirectCBit", + "RedirectCBitIPv6NHop": "redirectCBitIPv6NHop", "RedirectExtCommunityType": "redirectExtCommunityType", "RedirectIPv6": "redirectIPv6", + "RedirectIPv6NHop": "redirectIPv6NHop", "Redirectnexthop": "redirectnexthop", "SetNextHop": "setNextHop", "SetNextHopIpType": "setNextHopIpType", @@ -104,11 +118,21 @@ class BgpFlowSpecRangesList(Base): "SourcePrefixLengthV6": "sourcePrefixLengthV6", "SourcePrefixV6": "sourcePrefixV6", "SrcPrefixOffset": "srcPrefixOffset", + "Srv6EndpointBehaviorFlowspec": "srv6EndpointBehaviorFlowspec", + "Srv6SidFlagsFlowspec": "srv6SidFlagsFlowspec", + "Srv6SidFuncAllocTypeFlowspec": "srv6SidFuncAllocTypeFlowspec", + "Srv6SidLocFlowspec": "srv6SidLocFlowspec", + "Srv6SidReserved": "srv6SidReserved", + "Srv6SidReserved1Flowspec": "srv6SidReserved1Flowspec", + "Srv6SidReserved2Flowspec": "srv6SidReserved2Flowspec", "TcpFlagsMatch": "tcpFlagsMatch", "TerminalAction": "terminalAction", "TrafficActionSample": "trafficActionSample", "TrafficDscp": "trafficDscp", "TrafficRate": "trafficRate", + "TrafficRatePacket": "trafficRatePacket", + "TranspositionLengthFlowspec": "transpositionLengthFlowspec", + "TranspositionOffsetFlowspec": "transpositionOffsetFlowspec", } _SDM_ENUM_MAP = {} @@ -180,13 +204,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -215,6 +239,20 @@ def BgpLargeCommunitiesList(self): return self._properties.get("BgpLargeCommunitiesList") return BgpLargeCommunitiesList(self) + @property + def ActivateSRv6Policy(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then the current SRv6 Policy is sent for the Flow Specification. Default value is set to False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ActivateSRv6Policy"]) + ) + @property def Active(self): # type: () -> 'Multivalue' @@ -251,6 +289,20 @@ def AggregatorId(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["AggregatorId"])) + @property + def ArgumentLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Argument length for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ArgumentLengthFlowspec"]) + ) + @property def AsNumber2Bytes(self): # type: () -> 'Multivalue' @@ -319,6 +371,48 @@ def AssignedNumber4Bytes(self): self, self._get_attribute(self._SDM_ATT_MAP["AssignedNumber4Bytes"]) ) + @property + def ColorCOBitsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): CO bits for the Color Extended Community attribute for the SRv6 Policy for current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorCOBitsFlowspec"]) + ) + + @property + def ColorReservedBitsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Color Reserved Bits for the Color Extended Communtiy attribute for the SRv6 Policy for current Flow Specification. Default value is 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorReservedBitsFlowspec"]) + ) + + @property + def ColorValueFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Color Value for the Color Extended Communtiy attribute for the SRv6 Policy for current Flow Specification. Default value is 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorValueFlowspec"]) + ) + @property def Count(self): # type: () -> int @@ -345,7 +439,7 @@ def DestPortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Destination Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -385,7 +479,7 @@ def DestPrefixV6(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Destination Prefix - Controlled by Enable Destination Prefix + - obj(ixnetwork_restpy.multivalue.Multivalue): Destination Prefix - Controlled by Enable Destination Prefix (Pattern is calculated based on length and offset) """ from ixnetwork_restpy.multivalue import Multivalue @@ -397,7 +491,7 @@ def DscpMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 10, 10-20, <10, 10&20, 10|20-30&!25|>=50 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is DSCP Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 10, 10-20, <10, 10&20, 10|20-30&!25|>=50 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -593,13 +687,27 @@ def EnableRedirect(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableRedirect"]) ) + @property + def EnableRedirectIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Redirect To IPv6 Next Hop + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableRedirectIPv6NHop"]) + ) + @property def EnableReirectIPv6(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Redirect-IPv6 + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable RT Redirect-IPv6 """ from ixnetwork_restpy.multivalue import Multivalue @@ -621,6 +729,20 @@ def EnableSourcePrefixV6(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableSourcePrefixV6"]) ) + @property + def EnableSrv6SidFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then you can put SRv6 SID value and related informations for the current Flow Specification. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableSrv6SidFlowspec"]) + ) + @property def EnableTrafficAction(self): # type: () -> 'Multivalue' @@ -669,7 +791,7 @@ def EnableTrafficRate(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Traffic Rate + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, the Traffic Rate Packets Column gets enabled. You can configure the Rate of Traffic in packets per second. Default value is False. """ from ixnetwork_restpy.multivalue import Multivalue @@ -677,13 +799,27 @@ def EnableTrafficRate(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableTrafficRate"]) ) + @property + def EnableTrafficRatePacket(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, the Traffic Rate Bytes Column gets enabled. You can configure the Rate of Traffic in bytes per second. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableTrafficRatePacket"]) + ) + @property def FlowLabel(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Flow Label Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -707,7 +843,7 @@ def FragmentMatchV6(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Flags: lf,ff,isf join different matchcriteria using | or & join flags using | (bitwise or) Eg. (lf), (lf|ff|isf), (not)(lf|isf), (not|match)(ff)|(isf|lf) Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is fragment match in Flowspec Match Components. Supported Flags: lf,ff,isf join different matchcriteria using | or & join flags using | (bitwise or) Eg. (lf), (lf|ff|isf), (not)(lf|isf), (not|match)(ff)|(isf|lf) Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -715,13 +851,27 @@ def FragmentMatchV6(self): self, self._get_attribute(self._SDM_ATT_MAP["FragmentMatchV6"]) ) + @property + def FunctionLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Function Length of SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["FunctionLengthFlowspec"]) + ) + @property def IcmpCodeMatch(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is ICMP Code Match in Flowspec Match Components. This field takes the string of ICMP Code matching criteria for a flow specification.Supported Formats:a. valueb. value1-value2>value (!, >, <, >=, <= supported)join using | or &Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc.c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -733,12 +883,27 @@ def IcmpTypeMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is ICMP Type Match in Flowspec Match Components. This field takes the string of ICMP Type matching criteria for a flow specification.Supported Formats:a. valueb. value1-value2>value (!, >, <, >=, <= supported)join using | or &Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etcc. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IcmpTypeMatch"])) + @property + def IncSrv6SidStructSsTlvFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then the SRv6 Sid Structure Sub-Sub-TLV is sent in packet for the current Flow Specification. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["IncSrv6SidStructSsTlvFlowspec"]), + ) + @property def Ip(self): # type: () -> 'Multivalue' @@ -757,7 +922,7 @@ def IpPacketLenMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is IP Packet Length Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -801,6 +966,34 @@ def Ipv6NextHop(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Ipv6NextHop"])) + @property + def LocBlockLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Locator Block length for SRv6 SID for the current Flow Specification. Default value is set to 40. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LocBlockLengthFlowspec"]) + ) + + @property + def LocNodeLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Locator Node length for SRv6 SID for the current Flow Specification. Default value is set to 24. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LocNodeLengthFlowspec"]) + ) + @property def LocalPreference(self): # type: () -> 'Multivalue' @@ -850,7 +1043,7 @@ def NextHeader(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Upper Layer Protocol Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -987,7 +1180,7 @@ def PortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried This Field Matches Source OR Destination TCP/UDP Ports + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried This Field Matches Source OR Destination TCP/UDP Ports """ from ixnetwork_restpy.multivalue import Multivalue @@ -1005,6 +1198,20 @@ def RedirectCBit(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RedirectCBit"])) + @property + def RedirectCBitIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): C Bit(IPv6 Next Hop) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectCBitIPv6NHop"]) + ) + @property def RedirectExtCommunityType(self): # type: () -> 'Multivalue' @@ -1025,12 +1232,26 @@ def RedirectIPv6(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Redirect-IPv6 + - obj(ixnetwork_restpy.multivalue.Multivalue): RT Redirect-IPv6 """ from ixnetwork_restpy.multivalue import Multivalue return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv6"])) + @property + def RedirectIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Redirect To IPv6 Next Hop + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv6NHop"]) + ) + @property def Redirectnexthop(self): # type: () -> 'Multivalue' @@ -1077,7 +1298,7 @@ def SourcePortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Source Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -1105,7 +1326,7 @@ def SourcePrefixV6(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Source Prefix - Controlled by Enable Source Prefix + - obj(ixnetwork_restpy.multivalue.Multivalue): Source Prefix - Controlled by Enable Source Prefix (Pattern is calculated based on length and offset) """ from ixnetwork_restpy.multivalue import Multivalue @@ -1127,13 +1348,111 @@ def SrcPrefixOffset(self): self, self._get_attribute(self._SDM_ATT_MAP["SrcPrefixOffset"]) ) + @property + def Srv6EndpointBehaviorFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This is SRv6 Endpoint Behaviour for the current Flow Specifcation. Default value is set to 0xFFFF. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6EndpointBehaviorFlowspec"]) + ) + + @property + def Srv6SidFlagsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Sid Flags in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidFlagsFlowspec"]) + ) + + @property + def Srv6SidFuncAllocTypeFlowspec(self): + # type: () -> 'Multivalue' + """DEPRECATED + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 Func Allocation Type + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidFuncAllocTypeFlowspec"]) + ) + + @property + def Srv6SidLocFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID. It consists of Locator, Func and Args. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidLocFlowspec"]) + ) + + @property + def Srv6SidReserved(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved value in SRv6 L3 Service TLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved"]) + ) + + @property + def Srv6SidReserved1Flowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved1 field value in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved1Flowspec"]) + ) + + @property + def Srv6SidReserved2Flowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved2 field value in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved2Flowspec"]) + ) + @property def TcpFlagsMatch(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Flags: ns,cwr,ece,urg,ack,psh,rst,syn,fin join different matchcriteria using | or & join flags using | (bitwise or) Eg. (cwr), (ece|urg|psh|syn), (not)(cwr|syn), (not|match)(ece|psh)|(psh|rst)&(not)(ns) Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is TCP Flags Match in Flowspec Match Components. Supported Flags: ns,cwr,ece,urg,ack,psh,rst,syn,fin join different matchcriteria using | or & join flags using | (bitwise or) Eg. (cwr), (ece|urg|psh|syn), (not)(cwr|syn), (not|match)(ece|psh)|(psh|rst)&(not)(ns) Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -1191,6 +1510,48 @@ def TrafficRate(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["TrafficRate"])) + @property + def TrafficRatePacket(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Traffic Rate (Packets/s) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TrafficRatePacket"]) + ) + + @property + def TranspositionLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Transposition length for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TranspositionLengthFlowspec"]) + ) + + @property + def TranspositionOffsetFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Transposition offset for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TranspositionOffsetFlowspec"]) + ) + def update( self, Name=None, @@ -1281,14 +1642,19 @@ def read(self, href): def get_device_ids( self, PortNames=None, + ActivateSRv6Policy=None, Active=None, AggregatorAs=None, AggregatorId=None, + ArgumentLengthFlowspec=None, AsNumber2Bytes=None, AsNumber4Bytes=None, AsSetMode=None, AssignedNumber2Bytes=None, AssignedNumber4Bytes=None, + ColorCOBitsFlowspec=None, + ColorReservedBitsFlowspec=None, + ColorValueFlowspec=None, DestPortMatch=None, DestPrefixLengthV6=None, DestPrefixOffset=None, @@ -1308,22 +1674,29 @@ def get_device_ids( EnableOrigin=None, EnableOriginatorId=None, EnableRedirect=None, + EnableRedirectIPv6NHop=None, EnableReirectIPv6=None, EnableSourcePrefixV6=None, + EnableSrv6SidFlowspec=None, EnableTrafficAction=None, EnableTrafficMarketing=None, EnableTrafficMarking=None, EnableTrafficRate=None, + EnableTrafficRatePacket=None, FlowLabel=None, FlowSpecName=None, FragmentMatchV6=None, + FunctionLengthFlowspec=None, IcmpCodeMatch=None, IcmpTypeMatch=None, + IncSrv6SidStructSsTlvFlowspec=None, Ip=None, IpPacketLenMatch=None, IpV4=None, Ipv4NextHop=None, Ipv6NextHop=None, + LocBlockLengthFlowspec=None, + LocNodeLengthFlowspec=None, LocalPreference=None, MultiExitDiscriminator=None, NextHeader=None, @@ -1333,8 +1706,10 @@ def get_device_ids( OverridePeerAsSetMode=None, PortMatch=None, RedirectCBit=None, + RedirectCBitIPv6NHop=None, RedirectExtCommunityType=None, RedirectIPv6=None, + RedirectIPv6NHop=None, Redirectnexthop=None, SetNextHop=None, SetNextHopIpType=None, @@ -1342,11 +1717,21 @@ def get_device_ids( SourcePrefixLengthV6=None, SourcePrefixV6=None, SrcPrefixOffset=None, + Srv6EndpointBehaviorFlowspec=None, + Srv6SidFlagsFlowspec=None, + Srv6SidFuncAllocTypeFlowspec=None, + Srv6SidLocFlowspec=None, + Srv6SidReserved=None, + Srv6SidReserved1Flowspec=None, + Srv6SidReserved2Flowspec=None, TcpFlagsMatch=None, TerminalAction=None, TrafficActionSample=None, TrafficDscp=None, TrafficRate=None, + TrafficRatePacket=None, + TranspositionLengthFlowspec=None, + TranspositionOffsetFlowspec=None, ): """Base class infrastructure that gets a list of bgpFlowSpecRangesList device ids encapsulated by this object. @@ -1355,14 +1740,19 @@ def get_device_ids( Args ---- - PortNames (str): optional regex of port names + - ActivateSRv6Policy (str): optional regex of activateSRv6Policy - Active (str): optional regex of active - AggregatorAs (str): optional regex of aggregatorAs - AggregatorId (str): optional regex of aggregatorId + - ArgumentLengthFlowspec (str): optional regex of argumentLengthFlowspec - AsNumber2Bytes (str): optional regex of asNumber2Bytes - AsNumber4Bytes (str): optional regex of asNumber4Bytes - AsSetMode (str): optional regex of asSetMode - AssignedNumber2Bytes (str): optional regex of assignedNumber2Bytes - AssignedNumber4Bytes (str): optional regex of assignedNumber4Bytes + - ColorCOBitsFlowspec (str): optional regex of colorCOBitsFlowspec + - ColorReservedBitsFlowspec (str): optional regex of colorReservedBitsFlowspec + - ColorValueFlowspec (str): optional regex of colorValueFlowspec - DestPortMatch (str): optional regex of destPortMatch - DestPrefixLengthV6 (str): optional regex of destPrefixLengthV6 - DestPrefixOffset (str): optional regex of destPrefixOffset @@ -1382,22 +1772,29 @@ def get_device_ids( - EnableOrigin (str): optional regex of enableOrigin - EnableOriginatorId (str): optional regex of enableOriginatorId - EnableRedirect (str): optional regex of enableRedirect + - EnableRedirectIPv6NHop (str): optional regex of enableRedirectIPv6NHop - EnableReirectIPv6 (str): optional regex of enableReirectIPv6 - EnableSourcePrefixV6 (str): optional regex of enableSourcePrefixV6 + - EnableSrv6SidFlowspec (str): optional regex of enableSrv6SidFlowspec - EnableTrafficAction (str): optional regex of enableTrafficAction - EnableTrafficMarketing (str): optional regex of enableTrafficMarketing - EnableTrafficMarking (str): optional regex of enableTrafficMarking - EnableTrafficRate (str): optional regex of enableTrafficRate + - EnableTrafficRatePacket (str): optional regex of enableTrafficRatePacket - FlowLabel (str): optional regex of flowLabel - FlowSpecName (str): optional regex of flowSpecName - FragmentMatchV6 (str): optional regex of fragmentMatchV6 + - FunctionLengthFlowspec (str): optional regex of functionLengthFlowspec - IcmpCodeMatch (str): optional regex of icmpCodeMatch - IcmpTypeMatch (str): optional regex of icmpTypeMatch + - IncSrv6SidStructSsTlvFlowspec (str): optional regex of incSrv6SidStructSsTlvFlowspec - Ip (str): optional regex of ip - IpPacketLenMatch (str): optional regex of ipPacketLenMatch - IpV4 (str): optional regex of ipV4 - Ipv4NextHop (str): optional regex of ipv4NextHop - Ipv6NextHop (str): optional regex of ipv6NextHop + - LocBlockLengthFlowspec (str): optional regex of locBlockLengthFlowspec + - LocNodeLengthFlowspec (str): optional regex of locNodeLengthFlowspec - LocalPreference (str): optional regex of localPreference - MultiExitDiscriminator (str): optional regex of multiExitDiscriminator - NextHeader (str): optional regex of nextHeader @@ -1407,8 +1804,10 @@ def get_device_ids( - OverridePeerAsSetMode (str): optional regex of overridePeerAsSetMode - PortMatch (str): optional regex of portMatch - RedirectCBit (str): optional regex of redirectCBit + - RedirectCBitIPv6NHop (str): optional regex of redirectCBitIPv6NHop - RedirectExtCommunityType (str): optional regex of redirectExtCommunityType - RedirectIPv6 (str): optional regex of redirectIPv6 + - RedirectIPv6NHop (str): optional regex of redirectIPv6NHop - Redirectnexthop (str): optional regex of redirectnexthop - SetNextHop (str): optional regex of setNextHop - SetNextHopIpType (str): optional regex of setNextHopIpType @@ -1416,11 +1815,21 @@ def get_device_ids( - SourcePrefixLengthV6 (str): optional regex of sourcePrefixLengthV6 - SourcePrefixV6 (str): optional regex of sourcePrefixV6 - SrcPrefixOffset (str): optional regex of srcPrefixOffset + - Srv6EndpointBehaviorFlowspec (str): optional regex of srv6EndpointBehaviorFlowspec + - Srv6SidFlagsFlowspec (str): optional regex of srv6SidFlagsFlowspec + - Srv6SidFuncAllocTypeFlowspec (str): optional regex of srv6SidFuncAllocTypeFlowspec + - Srv6SidLocFlowspec (str): optional regex of srv6SidLocFlowspec + - Srv6SidReserved (str): optional regex of srv6SidReserved + - Srv6SidReserved1Flowspec (str): optional regex of srv6SidReserved1Flowspec + - Srv6SidReserved2Flowspec (str): optional regex of srv6SidReserved2Flowspec - TcpFlagsMatch (str): optional regex of tcpFlagsMatch - TerminalAction (str): optional regex of terminalAction - TrafficActionSample (str): optional regex of trafficActionSample - TrafficDscp (str): optional regex of trafficDscp - TrafficRate (str): optional regex of trafficRate + - TrafficRatePacket (str): optional regex of trafficRatePacket + - TranspositionLengthFlowspec (str): optional regex of transpositionLengthFlowspec + - TranspositionOffsetFlowspec (str): optional regex of transpositionOffsetFlowspec Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_789c16d44699974803aa7a2ecfa2c575.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_850749b96bb629595bbddf006a29b1eb.py similarity index 69% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_789c16d44699974803aa7a2ecfa2c575.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_850749b96bb629595bbddf006a29b1eb.py index 99264b580..2541ecf90 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_789c16d44699974803aa7a2ecfa2c575.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslist_850749b96bb629595bbddf006a29b1eb.py @@ -35,14 +35,19 @@ class BgpFlowSpecRangesList(Base): __slots__ = () _SDM_NAME = "bgpFlowSpecRangesList" _SDM_ATT_MAP = { + "ActivateSRv6Policy": "activateSRv6Policy", "Active": "active", "AggregatorAs": "aggregatorAs", "AggregatorId": "aggregatorId", + "ArgumentLengthFlowspec": "argumentLengthFlowspec", "AsNumber2Bytes": "asNumber2Bytes", "AsNumber4Bytes": "asNumber4Bytes", "AsSetMode": "asSetMode", "AssignedNumber2Bytes": "assignedNumber2Bytes", "AssignedNumber4Bytes": "assignedNumber4Bytes", + "ColorCOBitsFlowspec": "colorCOBitsFlowspec", + "ColorReservedBitsFlowspec": "colorReservedBitsFlowspec", + "ColorValueFlowspec": "colorValueFlowspec", "Count": "count", "DescriptiveName": "descriptiveName", "DestPortMatch": "destPortMatch", @@ -63,21 +68,28 @@ class BgpFlowSpecRangesList(Base): "EnableOrigin": "enableOrigin", "EnableOriginatorId": "enableOriginatorId", "EnableRedirect": "enableRedirect", + "EnableRedirectIPv6NHop": "enableRedirectIPv6NHop", "EnableSourcePrefixV4": "enableSourcePrefixV4", + "EnableSrv6SidFlowspec": "enableSrv6SidFlowspec", "EnableTrafficAction": "enableTrafficAction", "EnableTrafficMarketing": "enableTrafficMarketing", "EnableTrafficMarking": "enableTrafficMarking", "EnableTrafficRate": "enableTrafficRate", + "EnableTrafficRatePacket": "enableTrafficRatePacket", "FlowSpecName": "flowSpecName", "FragmentMatch": "fragmentMatch", + "FunctionLengthFlowspec": "functionLengthFlowspec", "IcmpCodeMatch": "icmpCodeMatch", "IcmpTypeMatch": "icmpTypeMatch", + "IncSrv6SidStructSsTlvFlowspec": "incSrv6SidStructSsTlvFlowspec", "Ip": "ip", "IpPacketLenMatch": "ipPacketLenMatch", "IpProto": "ipProto", "IpV4": "ipV4", "Ipv4NextHop": "ipv4NextHop", "Ipv6NextHop": "ipv6NextHop", + "LocBlockLengthFlowspec": "locBlockLengthFlowspec", + "LocNodeLengthFlowspec": "locNodeLengthFlowspec", "LocalPreference": "localPreference", "MultiExitDiscriminator": "multiExitDiscriminator", "Name": "name", @@ -92,18 +104,30 @@ class BgpFlowSpecRangesList(Base): "OverridePeerAsSetMode": "overridePeerAsSetMode", "PortMatch": "portMatch", "RedirectCBit": "redirectCBit", + "RedirectCBitIPv6NHop": "redirectCBitIPv6NHop", "RedirectExtCommunityType": "redirectExtCommunityType", + "RedirectIPv6NHop": "redirectIPv6NHop", "Redirectnexthop": "redirectnexthop", "SetNextHop": "setNextHop", "SetNextHopIpType": "setNextHopIpType", "SourcePortMatch": "sourcePortMatch", "SourcePrefixLengthV4": "sourcePrefixLengthV4", "SourcePrefixV4": "sourcePrefixV4", + "Srv6EndpointBehaviorFlowspec": "srv6EndpointBehaviorFlowspec", + "Srv6SidFlagsFlowspec": "srv6SidFlagsFlowspec", + "Srv6SidFuncAllocTypeFlowspec": "srv6SidFuncAllocTypeFlowspec", + "Srv6SidLocFlowspec": "srv6SidLocFlowspec", + "Srv6SidReserved": "srv6SidReserved", + "Srv6SidReserved1Flowspec": "srv6SidReserved1Flowspec", + "Srv6SidReserved2Flowspec": "srv6SidReserved2Flowspec", "TcpFlagsMatch": "tcpFlagsMatch", "TerminalAction": "terminalAction", "TrafficActionSample": "trafficActionSample", "TrafficDscp": "trafficDscp", "TrafficRate": "trafficRate", + "TrafficRatePacket": "trafficRatePacket", + "TranspositionLengthFlowspec": "transpositionLengthFlowspec", + "TranspositionOffsetFlowspec": "transpositionOffsetFlowspec", } _SDM_ENUM_MAP = {} @@ -175,13 +199,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -210,6 +234,20 @@ def BgpLargeCommunitiesList(self): return self._properties.get("BgpLargeCommunitiesList") return BgpLargeCommunitiesList(self) + @property + def ActivateSRv6Policy(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then the current SRv6 Policy is sent for the Flow Specification. Default value is set to False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ActivateSRv6Policy"]) + ) + @property def Active(self): # type: () -> 'Multivalue' @@ -246,6 +284,20 @@ def AggregatorId(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["AggregatorId"])) + @property + def ArgumentLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Argument length for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ArgumentLengthFlowspec"]) + ) + @property def AsNumber2Bytes(self): # type: () -> 'Multivalue' @@ -314,6 +366,48 @@ def AssignedNumber4Bytes(self): self, self._get_attribute(self._SDM_ATT_MAP["AssignedNumber4Bytes"]) ) + @property + def ColorCOBitsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): CO bits for the Color Extended Community attribute for the SRv6 Policy for current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorCOBitsFlowspec"]) + ) + + @property + def ColorReservedBitsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Color Reserved Bits for the Color Extended Communtiy attribute for the SRv6 Policy for current Flow Specification. Default value is 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorReservedBitsFlowspec"]) + ) + + @property + def ColorValueFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Color Value for the Color Extended Communtiy attribute for the SRv6 Policy for current Flow Specification. Default value is 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorValueFlowspec"]) + ) + @property def Count(self): # type: () -> int @@ -340,7 +434,7 @@ def DestPortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Destination Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -378,7 +472,7 @@ def DscpMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 10, 10-20, <10, 10&20, 10|20-30&!25|>=50 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is DSCP Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 10, 10-20, <10, 10&20, 10|20-30&!25|>=50 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -574,6 +668,20 @@ def EnableRedirect(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableRedirect"]) ) + @property + def EnableRedirectIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Redirect To IPv6 Next Hop + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableRedirectIPv6NHop"]) + ) + @property def EnableSourcePrefixV4(self): # type: () -> 'Multivalue' @@ -588,6 +696,20 @@ def EnableSourcePrefixV4(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableSourcePrefixV4"]) ) + @property + def EnableSrv6SidFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then you can put SRv6 SID value and related informations for the current Flow Specification. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableSrv6SidFlowspec"]) + ) + @property def EnableTrafficAction(self): # type: () -> 'Multivalue' @@ -636,7 +758,7 @@ def EnableTrafficRate(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Traffic Rate + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, the Traffic Rate Packets Column gets enabled. You can configure the Rate of Traffic in packets per second. Default value is False. """ from ixnetwork_restpy.multivalue import Multivalue @@ -644,6 +766,20 @@ def EnableTrafficRate(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableTrafficRate"]) ) + @property + def EnableTrafficRatePacket(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, the Traffic Rate Bytes Column gets enabled. You can configure the Rate of Traffic in bytes per second. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableTrafficRatePacket"]) + ) + @property def FlowSpecName(self): # type: () -> 'Multivalue' @@ -662,19 +798,33 @@ def FragmentMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Flags: lf,ff,isf,df join different matchcriteria using | or & join flags using | (bitwise or) Eg. (lf), (lf|ff|isf|df), (not)(lf|isf), (not|match)(df|ff)|(isf|lf) Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is fragment match in Flowspec Match Components. Supported Flags: lf,ff,isf,df join different matchcriteria using | or & join flags using | (bitwise or) Eg. (lf), (lf|ff|isf|df), (not)(lf|isf), (not|match)(df|ff)|(isf|lf) Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["FragmentMatch"])) + @property + def FunctionLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Function Length of SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["FunctionLengthFlowspec"]) + ) + @property def IcmpCodeMatch(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is ICMP Code Match in Flowspec Match Components. This field takes the string of ICMP Code matching criteria for a flow specification.Supported Formats:a. valueb. value1-value2>value (!, >, <, >=, <= supported)join using | or &Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etcc. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -686,12 +836,27 @@ def IcmpTypeMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is ICMP Type Match in Flowspec Match Components. This field takes the string of ICMP Type matching criteria for a flow specification.Supported Formats:a. valueb. value1-value2>value (!, >, <, >=, <= supported)join using | or &Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etcc. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IcmpTypeMatch"])) + @property + def IncSrv6SidStructSsTlvFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then the SRv6 Sid Structure Sub-Sub-TLV is sent in packet for the current Flow Specification. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["IncSrv6SidStructSsTlvFlowspec"]), + ) + @property def Ip(self): # type: () -> 'Multivalue' @@ -710,7 +875,7 @@ def IpPacketLenMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is IP Packet Length Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -724,7 +889,7 @@ def IpProto(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -766,6 +931,34 @@ def Ipv6NextHop(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Ipv6NextHop"])) + @property + def LocBlockLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Locator Block length for SRv6 SID for the current Flow Specification. Default value is set to 40. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LocBlockLengthFlowspec"]) + ) + + @property + def LocNodeLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Locator Node length for SRv6 SID for the current Flow Specification. Default value is set to 24. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LocNodeLengthFlowspec"]) + ) + @property def LocalPreference(self): # type: () -> 'Multivalue' @@ -940,7 +1133,7 @@ def PortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried This Field Matches Source OR Destination TCP/UDP Ports + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried This Field Matches Source OR Destination TCP/UDP Ports """ from ixnetwork_restpy.multivalue import Multivalue @@ -958,6 +1151,20 @@ def RedirectCBit(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RedirectCBit"])) + @property + def RedirectCBitIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): C Bit(IPv6 Next Hop) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectCBitIPv6NHop"]) + ) + @property def RedirectExtCommunityType(self): # type: () -> 'Multivalue' @@ -972,6 +1179,20 @@ def RedirectExtCommunityType(self): self, self._get_attribute(self._SDM_ATT_MAP["RedirectExtCommunityType"]) ) + @property + def RedirectIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Redirect To IPv6 Next Hop + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv6NHop"]) + ) + @property def Redirectnexthop(self): # type: () -> 'Multivalue' @@ -1018,7 +1239,7 @@ def SourcePortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Source Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -1054,13 +1275,111 @@ def SourcePrefixV4(self): self, self._get_attribute(self._SDM_ATT_MAP["SourcePrefixV4"]) ) + @property + def Srv6EndpointBehaviorFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This is SRv6 Endpoint Behaviour for the current Flow Specifcation. Default value is set to 0xFFFF. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6EndpointBehaviorFlowspec"]) + ) + + @property + def Srv6SidFlagsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Sid Flags in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidFlagsFlowspec"]) + ) + + @property + def Srv6SidFuncAllocTypeFlowspec(self): + # type: () -> 'Multivalue' + """DEPRECATED + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 Func Allocation Type + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidFuncAllocTypeFlowspec"]) + ) + + @property + def Srv6SidLocFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID. It consists of Locator, Func and Args. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidLocFlowspec"]) + ) + + @property + def Srv6SidReserved(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved value in SRv6 L3 Service TLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved"]) + ) + + @property + def Srv6SidReserved1Flowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved1 field value in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved1Flowspec"]) + ) + + @property + def Srv6SidReserved2Flowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved2 field value in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved2Flowspec"]) + ) + @property def TcpFlagsMatch(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Flags: ns,cwr,ece,urg,ack,psh,rst,syn,fin join different matchcriteria using | or & join flags using | (bitwise or) Eg. (cwr), (ece|urg|psh|syn), (not)(cwr|syn), (not|match)(ece|psh)|(psh|rst)&(not)(ns) Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is TCP Flags Match in Flowspec Match Components. Supported Flags: ns,cwr,ece,urg,ack,psh,rst,syn,fin join different matchcriteria using | or & join flags using | (bitwise or) Eg. (cwr), (ece|urg|psh|syn), (not)(cwr|syn), (not|match)(ece|psh)|(psh|rst)&(not)(ns) Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -1118,6 +1437,48 @@ def TrafficRate(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["TrafficRate"])) + @property + def TrafficRatePacket(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Traffic Rate (Packets/s) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TrafficRatePacket"]) + ) + + @property + def TranspositionLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Transposition length for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TranspositionLengthFlowspec"]) + ) + + @property + def TranspositionOffsetFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Transposition offset for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TranspositionOffsetFlowspec"]) + ) + def update( self, Name=None, @@ -1208,14 +1569,19 @@ def read(self, href): def get_device_ids( self, PortNames=None, + ActivateSRv6Policy=None, Active=None, AggregatorAs=None, AggregatorId=None, + ArgumentLengthFlowspec=None, AsNumber2Bytes=None, AsNumber4Bytes=None, AsSetMode=None, AssignedNumber2Bytes=None, AssignedNumber4Bytes=None, + ColorCOBitsFlowspec=None, + ColorReservedBitsFlowspec=None, + ColorValueFlowspec=None, DestPortMatch=None, DestPrefixLengthV4=None, DestPrefixV4=None, @@ -1234,21 +1600,28 @@ def get_device_ids( EnableOrigin=None, EnableOriginatorId=None, EnableRedirect=None, + EnableRedirectIPv6NHop=None, EnableSourcePrefixV4=None, + EnableSrv6SidFlowspec=None, EnableTrafficAction=None, EnableTrafficMarketing=None, EnableTrafficMarking=None, EnableTrafficRate=None, + EnableTrafficRatePacket=None, FlowSpecName=None, FragmentMatch=None, + FunctionLengthFlowspec=None, IcmpCodeMatch=None, IcmpTypeMatch=None, + IncSrv6SidStructSsTlvFlowspec=None, Ip=None, IpPacketLenMatch=None, IpProto=None, IpV4=None, Ipv4NextHop=None, Ipv6NextHop=None, + LocBlockLengthFlowspec=None, + LocNodeLengthFlowspec=None, LocalPreference=None, MultiExitDiscriminator=None, NumberOfFlows=None, @@ -1257,18 +1630,30 @@ def get_device_ids( OverridePeerAsSetMode=None, PortMatch=None, RedirectCBit=None, + RedirectCBitIPv6NHop=None, RedirectExtCommunityType=None, + RedirectIPv6NHop=None, Redirectnexthop=None, SetNextHop=None, SetNextHopIpType=None, SourcePortMatch=None, SourcePrefixLengthV4=None, SourcePrefixV4=None, + Srv6EndpointBehaviorFlowspec=None, + Srv6SidFlagsFlowspec=None, + Srv6SidFuncAllocTypeFlowspec=None, + Srv6SidLocFlowspec=None, + Srv6SidReserved=None, + Srv6SidReserved1Flowspec=None, + Srv6SidReserved2Flowspec=None, TcpFlagsMatch=None, TerminalAction=None, TrafficActionSample=None, TrafficDscp=None, TrafficRate=None, + TrafficRatePacket=None, + TranspositionLengthFlowspec=None, + TranspositionOffsetFlowspec=None, ): """Base class infrastructure that gets a list of bgpFlowSpecRangesList device ids encapsulated by this object. @@ -1277,14 +1662,19 @@ def get_device_ids( Args ---- - PortNames (str): optional regex of port names + - ActivateSRv6Policy (str): optional regex of activateSRv6Policy - Active (str): optional regex of active - AggregatorAs (str): optional regex of aggregatorAs - AggregatorId (str): optional regex of aggregatorId + - ArgumentLengthFlowspec (str): optional regex of argumentLengthFlowspec - AsNumber2Bytes (str): optional regex of asNumber2Bytes - AsNumber4Bytes (str): optional regex of asNumber4Bytes - AsSetMode (str): optional regex of asSetMode - AssignedNumber2Bytes (str): optional regex of assignedNumber2Bytes - AssignedNumber4Bytes (str): optional regex of assignedNumber4Bytes + - ColorCOBitsFlowspec (str): optional regex of colorCOBitsFlowspec + - ColorReservedBitsFlowspec (str): optional regex of colorReservedBitsFlowspec + - ColorValueFlowspec (str): optional regex of colorValueFlowspec - DestPortMatch (str): optional regex of destPortMatch - DestPrefixLengthV4 (str): optional regex of destPrefixLengthV4 - DestPrefixV4 (str): optional regex of destPrefixV4 @@ -1303,21 +1693,28 @@ def get_device_ids( - EnableOrigin (str): optional regex of enableOrigin - EnableOriginatorId (str): optional regex of enableOriginatorId - EnableRedirect (str): optional regex of enableRedirect + - EnableRedirectIPv6NHop (str): optional regex of enableRedirectIPv6NHop - EnableSourcePrefixV4 (str): optional regex of enableSourcePrefixV4 + - EnableSrv6SidFlowspec (str): optional regex of enableSrv6SidFlowspec - EnableTrafficAction (str): optional regex of enableTrafficAction - EnableTrafficMarketing (str): optional regex of enableTrafficMarketing - EnableTrafficMarking (str): optional regex of enableTrafficMarking - EnableTrafficRate (str): optional regex of enableTrafficRate + - EnableTrafficRatePacket (str): optional regex of enableTrafficRatePacket - FlowSpecName (str): optional regex of flowSpecName - FragmentMatch (str): optional regex of fragmentMatch + - FunctionLengthFlowspec (str): optional regex of functionLengthFlowspec - IcmpCodeMatch (str): optional regex of icmpCodeMatch - IcmpTypeMatch (str): optional regex of icmpTypeMatch + - IncSrv6SidStructSsTlvFlowspec (str): optional regex of incSrv6SidStructSsTlvFlowspec - Ip (str): optional regex of ip - IpPacketLenMatch (str): optional regex of ipPacketLenMatch - IpProto (str): optional regex of ipProto - IpV4 (str): optional regex of ipV4 - Ipv4NextHop (str): optional regex of ipv4NextHop - Ipv6NextHop (str): optional regex of ipv6NextHop + - LocBlockLengthFlowspec (str): optional regex of locBlockLengthFlowspec + - LocNodeLengthFlowspec (str): optional regex of locNodeLengthFlowspec - LocalPreference (str): optional regex of localPreference - MultiExitDiscriminator (str): optional regex of multiExitDiscriminator - NumberOfFlows (str): optional regex of numberOfFlows @@ -1326,18 +1723,30 @@ def get_device_ids( - OverridePeerAsSetMode (str): optional regex of overridePeerAsSetMode - PortMatch (str): optional regex of portMatch - RedirectCBit (str): optional regex of redirectCBit + - RedirectCBitIPv6NHop (str): optional regex of redirectCBitIPv6NHop - RedirectExtCommunityType (str): optional regex of redirectExtCommunityType + - RedirectIPv6NHop (str): optional regex of redirectIPv6NHop - Redirectnexthop (str): optional regex of redirectnexthop - SetNextHop (str): optional regex of setNextHop - SetNextHopIpType (str): optional regex of setNextHopIpType - SourcePortMatch (str): optional regex of sourcePortMatch - SourcePrefixLengthV4 (str): optional regex of sourcePrefixLengthV4 - SourcePrefixV4 (str): optional regex of sourcePrefixV4 + - Srv6EndpointBehaviorFlowspec (str): optional regex of srv6EndpointBehaviorFlowspec + - Srv6SidFlagsFlowspec (str): optional regex of srv6SidFlagsFlowspec + - Srv6SidFuncAllocTypeFlowspec (str): optional regex of srv6SidFuncAllocTypeFlowspec + - Srv6SidLocFlowspec (str): optional regex of srv6SidLocFlowspec + - Srv6SidReserved (str): optional regex of srv6SidReserved + - Srv6SidReserved1Flowspec (str): optional regex of srv6SidReserved1Flowspec + - Srv6SidReserved2Flowspec (str): optional regex of srv6SidReserved2Flowspec - TcpFlagsMatch (str): optional regex of tcpFlagsMatch - TerminalAction (str): optional regex of terminalAction - TrafficActionSample (str): optional regex of trafficActionSample - TrafficDscp (str): optional regex of trafficDscp - TrafficRate (str): optional regex of trafficRate + - TrafficRatePacket (str): optional regex of trafficRatePacket + - TranspositionLengthFlowspec (str): optional regex of transpositionLengthFlowspec + - TranspositionOffsetFlowspec (str): optional regex of transpositionOffsetFlowspec Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv4_ab0c3185b027eff54394da27736dcb9a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv4_0163de8cc99a19d1385a21d26b93a544.py similarity index 69% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv4_ab0c3185b027eff54394da27736dcb9a.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv4_0163de8cc99a19d1385a21d26b93a544.py index 7dfec2b4d..f7d5cabfa 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv4_ab0c3185b027eff54394da27736dcb9a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv4_0163de8cc99a19d1385a21d26b93a544.py @@ -35,14 +35,19 @@ class BgpFlowSpecRangesListV4(Base): __slots__ = () _SDM_NAME = "bgpFlowSpecRangesListV4" _SDM_ATT_MAP = { + "ActivateSRv6Policy": "activateSRv6Policy", "Active": "active", "AggregatorAs": "aggregatorAs", "AggregatorId": "aggregatorId", + "ArgumentLengthFlowspec": "argumentLengthFlowspec", "AsNumber2Bytes": "asNumber2Bytes", "AsNumber4Bytes": "asNumber4Bytes", "AsSetMode": "asSetMode", "AssignedNumber2Bytes": "assignedNumber2Bytes", "AssignedNumber4Bytes": "assignedNumber4Bytes", + "ColorCOBitsFlowspec": "colorCOBitsFlowspec", + "ColorReservedBitsFlowspec": "colorReservedBitsFlowspec", + "ColorValueFlowspec": "colorValueFlowspec", "Count": "count", "DescriptiveName": "descriptiveName", "DestPortMatch": "destPortMatch", @@ -63,21 +68,28 @@ class BgpFlowSpecRangesListV4(Base): "EnableOrigin": "enableOrigin", "EnableOriginatorId": "enableOriginatorId", "EnableRedirect": "enableRedirect", + "EnableRedirectIPv6NHop": "enableRedirectIPv6NHop", "EnableSourcePrefixV4": "enableSourcePrefixV4", + "EnableSrv6SidFlowspec": "enableSrv6SidFlowspec", "EnableTrafficAction": "enableTrafficAction", "EnableTrafficMarketing": "enableTrafficMarketing", "EnableTrafficMarking": "enableTrafficMarking", "EnableTrafficRate": "enableTrafficRate", + "EnableTrafficRatePacket": "enableTrafficRatePacket", "FlowSpecName": "flowSpecName", "FragmentMatch": "fragmentMatch", + "FunctionLengthFlowspec": "functionLengthFlowspec", "IcmpCodeMatch": "icmpCodeMatch", "IcmpTypeMatch": "icmpTypeMatch", + "IncSrv6SidStructSsTlvFlowspec": "incSrv6SidStructSsTlvFlowspec", "Ip": "ip", "IpPacketLenMatch": "ipPacketLenMatch", "IpProto": "ipProto", "IpV4": "ipV4", "Ipv4NextHop": "ipv4NextHop", "Ipv6NextHop": "ipv6NextHop", + "LocBlockLengthFlowspec": "locBlockLengthFlowspec", + "LocNodeLengthFlowspec": "locNodeLengthFlowspec", "LocalPreference": "localPreference", "MultiExitDiscriminator": "multiExitDiscriminator", "Name": "name", @@ -92,18 +104,30 @@ class BgpFlowSpecRangesListV4(Base): "OverridePeerAsSetMode": "overridePeerAsSetMode", "PortMatch": "portMatch", "RedirectCBit": "redirectCBit", + "RedirectCBitIPv6NHop": "redirectCBitIPv6NHop", "RedirectExtCommunityType": "redirectExtCommunityType", + "RedirectIPv6NHop": "redirectIPv6NHop", "Redirectnexthop": "redirectnexthop", "SetNextHop": "setNextHop", "SetNextHopIpType": "setNextHopIpType", "SourcePortMatch": "sourcePortMatch", "SourcePrefixLengthV4": "sourcePrefixLengthV4", "SourcePrefixV4": "sourcePrefixV4", + "Srv6EndpointBehaviorFlowspec": "srv6EndpointBehaviorFlowspec", + "Srv6SidFlagsFlowspec": "srv6SidFlagsFlowspec", + "Srv6SidFuncAllocTypeFlowspec": "srv6SidFuncAllocTypeFlowspec", + "Srv6SidLocFlowspec": "srv6SidLocFlowspec", + "Srv6SidReserved": "srv6SidReserved", + "Srv6SidReserved1Flowspec": "srv6SidReserved1Flowspec", + "Srv6SidReserved2Flowspec": "srv6SidReserved2Flowspec", "TcpFlagsMatch": "tcpFlagsMatch", "TerminalAction": "terminalAction", "TrafficActionSample": "trafficActionSample", "TrafficDscp": "trafficDscp", "TrafficRate": "trafficRate", + "TrafficRatePacket": "trafficRatePacket", + "TranspositionLengthFlowspec": "transpositionLengthFlowspec", + "TranspositionOffsetFlowspec": "transpositionOffsetFlowspec", } _SDM_ENUM_MAP = {} @@ -175,13 +199,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -210,6 +234,20 @@ def BgpLargeCommunitiesList(self): return self._properties.get("BgpLargeCommunitiesList") return BgpLargeCommunitiesList(self) + @property + def ActivateSRv6Policy(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then the current SRv6 Policy is sent for the Flow Specification. Default value is set to False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ActivateSRv6Policy"]) + ) + @property def Active(self): # type: () -> 'Multivalue' @@ -246,6 +284,20 @@ def AggregatorId(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["AggregatorId"])) + @property + def ArgumentLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Argument length for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ArgumentLengthFlowspec"]) + ) + @property def AsNumber2Bytes(self): # type: () -> 'Multivalue' @@ -314,6 +366,48 @@ def AssignedNumber4Bytes(self): self, self._get_attribute(self._SDM_ATT_MAP["AssignedNumber4Bytes"]) ) + @property + def ColorCOBitsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): CO bits for the Color Extended Community attribute for the SRv6 Policy for current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorCOBitsFlowspec"]) + ) + + @property + def ColorReservedBitsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Color Reserved Bits for the Color Extended Communtiy attribute for the SRv6 Policy for current Flow Specification. Default value is 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorReservedBitsFlowspec"]) + ) + + @property + def ColorValueFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Color Value for the Color Extended Communtiy attribute for the SRv6 Policy for current Flow Specification. Default value is 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorValueFlowspec"]) + ) + @property def Count(self): # type: () -> int @@ -340,7 +434,7 @@ def DestPortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Destination Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -378,7 +472,7 @@ def DscpMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 10, 10-20, <10, 10&20, 10|20-30&!25|>=50 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is DSCP Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 10, 10-20, <10, 10&20, 10|20-30&!25|>=50 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -574,6 +668,20 @@ def EnableRedirect(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableRedirect"]) ) + @property + def EnableRedirectIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Redirect To IPv6 Next Hop + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableRedirectIPv6NHop"]) + ) + @property def EnableSourcePrefixV4(self): # type: () -> 'Multivalue' @@ -588,6 +696,20 @@ def EnableSourcePrefixV4(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableSourcePrefixV4"]) ) + @property + def EnableSrv6SidFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then you can put SRv6 SID value and related informations for the current Flow Specification. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableSrv6SidFlowspec"]) + ) + @property def EnableTrafficAction(self): # type: () -> 'Multivalue' @@ -636,7 +758,7 @@ def EnableTrafficRate(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Traffic Rate + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, the Traffic Rate Packets Column gets enabled. You can configure the Rate of Traffic in packets per second. Default value is False. """ from ixnetwork_restpy.multivalue import Multivalue @@ -644,6 +766,20 @@ def EnableTrafficRate(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableTrafficRate"]) ) + @property + def EnableTrafficRatePacket(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, the Traffic Rate Bytes Column gets enabled. You can configure the Rate of Traffic in bytes per second. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableTrafficRatePacket"]) + ) + @property def FlowSpecName(self): # type: () -> 'Multivalue' @@ -662,19 +798,33 @@ def FragmentMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Flags: lf,ff,isf,df join different matchcriteria using | or & join flags using | (bitwise or) Eg. (lf), (lf|ff|isf|df), (not)(lf|isf), (not|match)(df|ff)|(isf|lf) Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is fragment match in Flowspec Match Components. Supported Flags: lf,ff,isf,df join different matchcriteria using | or & join flags using | (bitwise or) Eg. (lf), (lf|ff|isf|df), (not)(lf|isf), (not|match)(df|ff)|(isf|lf) Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["FragmentMatch"])) + @property + def FunctionLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Function Length of SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["FunctionLengthFlowspec"]) + ) + @property def IcmpCodeMatch(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is ICMP Code Match in Flowspec Match Components. This field takes the string of ICMP Code matching criteria for a flow specification.Supported Formats:a. valueb. value1-value2>value (!, >, <, >=, <= supported)join using | or &Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etcc. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -686,12 +836,27 @@ def IcmpTypeMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is ICMP Type Match in Flowspec Match Components. This field takes the string of ICMP Type matching criteria for a flow specification.Supported Formats:a. valueb. value1-value2>value (!, >, <, >=, <= supported)join using | or &Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etcc. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IcmpTypeMatch"])) + @property + def IncSrv6SidStructSsTlvFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then the SRv6 Sid Structure Sub-Sub-TLV is sent in packet for the current Flow Specification. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["IncSrv6SidStructSsTlvFlowspec"]), + ) + @property def Ip(self): # type: () -> 'Multivalue' @@ -710,7 +875,7 @@ def IpPacketLenMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is IP Packet Length Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -724,7 +889,7 @@ def IpProto(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -766,6 +931,34 @@ def Ipv6NextHop(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Ipv6NextHop"])) + @property + def LocBlockLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Locator Block length for SRv6 SID for the current Flow Specification. Default value is set to 40. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LocBlockLengthFlowspec"]) + ) + + @property + def LocNodeLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Locator Node length for SRv6 SID for the current Flow Specification. Default value is set to 24. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LocNodeLengthFlowspec"]) + ) + @property def LocalPreference(self): # type: () -> 'Multivalue' @@ -940,7 +1133,7 @@ def PortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried This Field Matches Source OR Destination TCP/UDP Ports + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried This Field Matches Source OR Destination TCP/UDP Ports """ from ixnetwork_restpy.multivalue import Multivalue @@ -958,6 +1151,20 @@ def RedirectCBit(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RedirectCBit"])) + @property + def RedirectCBitIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): C Bit(IPv6 Next Hop) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectCBitIPv6NHop"]) + ) + @property def RedirectExtCommunityType(self): # type: () -> 'Multivalue' @@ -972,6 +1179,20 @@ def RedirectExtCommunityType(self): self, self._get_attribute(self._SDM_ATT_MAP["RedirectExtCommunityType"]) ) + @property + def RedirectIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Redirect To IPv6 Next Hop + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv6NHop"]) + ) + @property def Redirectnexthop(self): # type: () -> 'Multivalue' @@ -1018,7 +1239,7 @@ def SourcePortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Source Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -1054,13 +1275,111 @@ def SourcePrefixV4(self): self, self._get_attribute(self._SDM_ATT_MAP["SourcePrefixV4"]) ) + @property + def Srv6EndpointBehaviorFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This is SRv6 Endpoint Behaviour for the current Flow Specifcation. Default value is set to 0xFFFF. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6EndpointBehaviorFlowspec"]) + ) + + @property + def Srv6SidFlagsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Sid Flags in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidFlagsFlowspec"]) + ) + + @property + def Srv6SidFuncAllocTypeFlowspec(self): + # type: () -> 'Multivalue' + """DEPRECATED + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 Func Allocation Type + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidFuncAllocTypeFlowspec"]) + ) + + @property + def Srv6SidLocFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID. It consists of Locator, Func and Args. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidLocFlowspec"]) + ) + + @property + def Srv6SidReserved(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved value in SRv6 L3 Service TLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved"]) + ) + + @property + def Srv6SidReserved1Flowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved1 field value in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved1Flowspec"]) + ) + + @property + def Srv6SidReserved2Flowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved2 field value in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved2Flowspec"]) + ) + @property def TcpFlagsMatch(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Flags: ns,cwr,ece,urg,ack,psh,rst,syn,fin join different matchcriteria using | or & join flags using | (bitwise or) Eg. (cwr), (ece|urg|psh|syn), (not)(cwr|syn), (not|match)(ece|psh)|(psh|rst)&(not)(ns) Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is TCP Flags Match in Flowspec Match Components. Supported Flags: ns,cwr,ece,urg,ack,psh,rst,syn,fin join different matchcriteria using | or & join flags using | (bitwise or) Eg. (cwr), (ece|urg|psh|syn), (not)(cwr|syn), (not|match)(ece|psh)|(psh|rst)&(not)(ns) Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -1118,6 +1437,48 @@ def TrafficRate(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["TrafficRate"])) + @property + def TrafficRatePacket(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Traffic Rate (Packets/s) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TrafficRatePacket"]) + ) + + @property + def TranspositionLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Transposition length for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TranspositionLengthFlowspec"]) + ) + + @property + def TranspositionOffsetFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Transposition offset for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TranspositionOffsetFlowspec"]) + ) + def update( self, Name=None, @@ -1208,14 +1569,19 @@ def read(self, href): def get_device_ids( self, PortNames=None, + ActivateSRv6Policy=None, Active=None, AggregatorAs=None, AggregatorId=None, + ArgumentLengthFlowspec=None, AsNumber2Bytes=None, AsNumber4Bytes=None, AsSetMode=None, AssignedNumber2Bytes=None, AssignedNumber4Bytes=None, + ColorCOBitsFlowspec=None, + ColorReservedBitsFlowspec=None, + ColorValueFlowspec=None, DestPortMatch=None, DestPrefixLengthV4=None, DestPrefixV4=None, @@ -1234,21 +1600,28 @@ def get_device_ids( EnableOrigin=None, EnableOriginatorId=None, EnableRedirect=None, + EnableRedirectIPv6NHop=None, EnableSourcePrefixV4=None, + EnableSrv6SidFlowspec=None, EnableTrafficAction=None, EnableTrafficMarketing=None, EnableTrafficMarking=None, EnableTrafficRate=None, + EnableTrafficRatePacket=None, FlowSpecName=None, FragmentMatch=None, + FunctionLengthFlowspec=None, IcmpCodeMatch=None, IcmpTypeMatch=None, + IncSrv6SidStructSsTlvFlowspec=None, Ip=None, IpPacketLenMatch=None, IpProto=None, IpV4=None, Ipv4NextHop=None, Ipv6NextHop=None, + LocBlockLengthFlowspec=None, + LocNodeLengthFlowspec=None, LocalPreference=None, MultiExitDiscriminator=None, NumberOfFlows=None, @@ -1257,18 +1630,30 @@ def get_device_ids( OverridePeerAsSetMode=None, PortMatch=None, RedirectCBit=None, + RedirectCBitIPv6NHop=None, RedirectExtCommunityType=None, + RedirectIPv6NHop=None, Redirectnexthop=None, SetNextHop=None, SetNextHopIpType=None, SourcePortMatch=None, SourcePrefixLengthV4=None, SourcePrefixV4=None, + Srv6EndpointBehaviorFlowspec=None, + Srv6SidFlagsFlowspec=None, + Srv6SidFuncAllocTypeFlowspec=None, + Srv6SidLocFlowspec=None, + Srv6SidReserved=None, + Srv6SidReserved1Flowspec=None, + Srv6SidReserved2Flowspec=None, TcpFlagsMatch=None, TerminalAction=None, TrafficActionSample=None, TrafficDscp=None, TrafficRate=None, + TrafficRatePacket=None, + TranspositionLengthFlowspec=None, + TranspositionOffsetFlowspec=None, ): """Base class infrastructure that gets a list of bgpFlowSpecRangesListV4 device ids encapsulated by this object. @@ -1277,14 +1662,19 @@ def get_device_ids( Args ---- - PortNames (str): optional regex of port names + - ActivateSRv6Policy (str): optional regex of activateSRv6Policy - Active (str): optional regex of active - AggregatorAs (str): optional regex of aggregatorAs - AggregatorId (str): optional regex of aggregatorId + - ArgumentLengthFlowspec (str): optional regex of argumentLengthFlowspec - AsNumber2Bytes (str): optional regex of asNumber2Bytes - AsNumber4Bytes (str): optional regex of asNumber4Bytes - AsSetMode (str): optional regex of asSetMode - AssignedNumber2Bytes (str): optional regex of assignedNumber2Bytes - AssignedNumber4Bytes (str): optional regex of assignedNumber4Bytes + - ColorCOBitsFlowspec (str): optional regex of colorCOBitsFlowspec + - ColorReservedBitsFlowspec (str): optional regex of colorReservedBitsFlowspec + - ColorValueFlowspec (str): optional regex of colorValueFlowspec - DestPortMatch (str): optional regex of destPortMatch - DestPrefixLengthV4 (str): optional regex of destPrefixLengthV4 - DestPrefixV4 (str): optional regex of destPrefixV4 @@ -1303,21 +1693,28 @@ def get_device_ids( - EnableOrigin (str): optional regex of enableOrigin - EnableOriginatorId (str): optional regex of enableOriginatorId - EnableRedirect (str): optional regex of enableRedirect + - EnableRedirectIPv6NHop (str): optional regex of enableRedirectIPv6NHop - EnableSourcePrefixV4 (str): optional regex of enableSourcePrefixV4 + - EnableSrv6SidFlowspec (str): optional regex of enableSrv6SidFlowspec - EnableTrafficAction (str): optional regex of enableTrafficAction - EnableTrafficMarketing (str): optional regex of enableTrafficMarketing - EnableTrafficMarking (str): optional regex of enableTrafficMarking - EnableTrafficRate (str): optional regex of enableTrafficRate + - EnableTrafficRatePacket (str): optional regex of enableTrafficRatePacket - FlowSpecName (str): optional regex of flowSpecName - FragmentMatch (str): optional regex of fragmentMatch + - FunctionLengthFlowspec (str): optional regex of functionLengthFlowspec - IcmpCodeMatch (str): optional regex of icmpCodeMatch - IcmpTypeMatch (str): optional regex of icmpTypeMatch + - IncSrv6SidStructSsTlvFlowspec (str): optional regex of incSrv6SidStructSsTlvFlowspec - Ip (str): optional regex of ip - IpPacketLenMatch (str): optional regex of ipPacketLenMatch - IpProto (str): optional regex of ipProto - IpV4 (str): optional regex of ipV4 - Ipv4NextHop (str): optional regex of ipv4NextHop - Ipv6NextHop (str): optional regex of ipv6NextHop + - LocBlockLengthFlowspec (str): optional regex of locBlockLengthFlowspec + - LocNodeLengthFlowspec (str): optional regex of locNodeLengthFlowspec - LocalPreference (str): optional regex of localPreference - MultiExitDiscriminator (str): optional regex of multiExitDiscriminator - NumberOfFlows (str): optional regex of numberOfFlows @@ -1326,18 +1723,30 @@ def get_device_ids( - OverridePeerAsSetMode (str): optional regex of overridePeerAsSetMode - PortMatch (str): optional regex of portMatch - RedirectCBit (str): optional regex of redirectCBit + - RedirectCBitIPv6NHop (str): optional regex of redirectCBitIPv6NHop - RedirectExtCommunityType (str): optional regex of redirectExtCommunityType + - RedirectIPv6NHop (str): optional regex of redirectIPv6NHop - Redirectnexthop (str): optional regex of redirectnexthop - SetNextHop (str): optional regex of setNextHop - SetNextHopIpType (str): optional regex of setNextHopIpType - SourcePortMatch (str): optional regex of sourcePortMatch - SourcePrefixLengthV4 (str): optional regex of sourcePrefixLengthV4 - SourcePrefixV4 (str): optional regex of sourcePrefixV4 + - Srv6EndpointBehaviorFlowspec (str): optional regex of srv6EndpointBehaviorFlowspec + - Srv6SidFlagsFlowspec (str): optional regex of srv6SidFlagsFlowspec + - Srv6SidFuncAllocTypeFlowspec (str): optional regex of srv6SidFuncAllocTypeFlowspec + - Srv6SidLocFlowspec (str): optional regex of srv6SidLocFlowspec + - Srv6SidReserved (str): optional regex of srv6SidReserved + - Srv6SidReserved1Flowspec (str): optional regex of srv6SidReserved1Flowspec + - Srv6SidReserved2Flowspec (str): optional regex of srv6SidReserved2Flowspec - TcpFlagsMatch (str): optional regex of tcpFlagsMatch - TerminalAction (str): optional regex of terminalAction - TrafficActionSample (str): optional regex of trafficActionSample - TrafficDscp (str): optional regex of trafficDscp - TrafficRate (str): optional regex of trafficRate + - TrafficRatePacket (str): optional regex of trafficRatePacket + - TranspositionLengthFlowspec (str): optional regex of transpositionLengthFlowspec + - TranspositionOffsetFlowspec (str): optional regex of transpositionOffsetFlowspec Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv6_305d65dd8b0f124660b13211ca670c20.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv6_c579a493ccdc64a6383fef9d60aac4cc.py similarity index 70% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv6_305d65dd8b0f124660b13211ca670c20.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv6_c579a493ccdc64a6383fef9d60aac4cc.py index de54e288c..df3a680d1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv6_305d65dd8b0f124660b13211ca670c20.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpflowspecrangeslistv6_c579a493ccdc64a6383fef9d60aac4cc.py @@ -35,14 +35,19 @@ class BgpFlowSpecRangesListV6(Base): __slots__ = () _SDM_NAME = "bgpFlowSpecRangesListV6" _SDM_ATT_MAP = { + "ActivateSRv6Policy": "activateSRv6Policy", "Active": "active", "AggregatorAs": "aggregatorAs", "AggregatorId": "aggregatorId", + "ArgumentLengthFlowspec": "argumentLengthFlowspec", "AsNumber2Bytes": "asNumber2Bytes", "AsNumber4Bytes": "asNumber4Bytes", "AsSetMode": "asSetMode", "AssignedNumber2Bytes": "assignedNumber2Bytes", "AssignedNumber4Bytes": "assignedNumber4Bytes", + "ColorCOBitsFlowspec": "colorCOBitsFlowspec", + "ColorReservedBitsFlowspec": "colorReservedBitsFlowspec", + "ColorValueFlowspec": "colorValueFlowspec", "Count": "count", "DescriptiveName": "descriptiveName", "DestPortMatch": "destPortMatch", @@ -64,22 +69,29 @@ class BgpFlowSpecRangesListV6(Base): "EnableOrigin": "enableOrigin", "EnableOriginatorId": "enableOriginatorId", "EnableRedirect": "enableRedirect", + "EnableRedirectIPv6NHop": "enableRedirectIPv6NHop", "EnableReirectIPv6": "enableReirectIPv6", "EnableSourcePrefixV6": "enableSourcePrefixV6", + "EnableSrv6SidFlowspec": "enableSrv6SidFlowspec", "EnableTrafficAction": "enableTrafficAction", "EnableTrafficMarketing": "enableTrafficMarketing", "EnableTrafficMarking": "enableTrafficMarking", "EnableTrafficRate": "enableTrafficRate", + "EnableTrafficRatePacket": "enableTrafficRatePacket", "FlowLabel": "flowLabel", "FlowSpecName": "flowSpecName", "FragmentMatchV6": "fragmentMatchV6", + "FunctionLengthFlowspec": "functionLengthFlowspec", "IcmpCodeMatch": "icmpCodeMatch", "IcmpTypeMatch": "icmpTypeMatch", + "IncSrv6SidStructSsTlvFlowspec": "incSrv6SidStructSsTlvFlowspec", "Ip": "ip", "IpPacketLenMatch": "ipPacketLenMatch", "IpV4": "ipV4", "Ipv4NextHop": "ipv4NextHop", "Ipv6NextHop": "ipv6NextHop", + "LocBlockLengthFlowspec": "locBlockLengthFlowspec", + "LocNodeLengthFlowspec": "locNodeLengthFlowspec", "LocalPreference": "localPreference", "MultiExitDiscriminator": "multiExitDiscriminator", "Name": "name", @@ -95,8 +107,10 @@ class BgpFlowSpecRangesListV6(Base): "OverridePeerAsSetMode": "overridePeerAsSetMode", "PortMatch": "portMatch", "RedirectCBit": "redirectCBit", + "RedirectCBitIPv6NHop": "redirectCBitIPv6NHop", "RedirectExtCommunityType": "redirectExtCommunityType", "RedirectIPv6": "redirectIPv6", + "RedirectIPv6NHop": "redirectIPv6NHop", "Redirectnexthop": "redirectnexthop", "SetNextHop": "setNextHop", "SetNextHopIpType": "setNextHopIpType", @@ -104,11 +118,21 @@ class BgpFlowSpecRangesListV6(Base): "SourcePrefixLengthV6": "sourcePrefixLengthV6", "SourcePrefixV6": "sourcePrefixV6", "SrcPrefixOffset": "srcPrefixOffset", + "Srv6EndpointBehaviorFlowspec": "srv6EndpointBehaviorFlowspec", + "Srv6SidFlagsFlowspec": "srv6SidFlagsFlowspec", + "Srv6SidFuncAllocTypeFlowspec": "srv6SidFuncAllocTypeFlowspec", + "Srv6SidLocFlowspec": "srv6SidLocFlowspec", + "Srv6SidReserved": "srv6SidReserved", + "Srv6SidReserved1Flowspec": "srv6SidReserved1Flowspec", + "Srv6SidReserved2Flowspec": "srv6SidReserved2Flowspec", "TcpFlagsMatch": "tcpFlagsMatch", "TerminalAction": "terminalAction", "TrafficActionSample": "trafficActionSample", "TrafficDscp": "trafficDscp", "TrafficRate": "trafficRate", + "TrafficRatePacket": "trafficRatePacket", + "TranspositionLengthFlowspec": "transpositionLengthFlowspec", + "TranspositionOffsetFlowspec": "transpositionOffsetFlowspec", } _SDM_ENUM_MAP = {} @@ -180,13 +204,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -215,6 +239,20 @@ def BgpLargeCommunitiesList(self): return self._properties.get("BgpLargeCommunitiesList") return BgpLargeCommunitiesList(self) + @property + def ActivateSRv6Policy(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then the current SRv6 Policy is sent for the Flow Specification. Default value is set to False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ActivateSRv6Policy"]) + ) + @property def Active(self): # type: () -> 'Multivalue' @@ -251,6 +289,20 @@ def AggregatorId(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["AggregatorId"])) + @property + def ArgumentLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Argument length for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ArgumentLengthFlowspec"]) + ) + @property def AsNumber2Bytes(self): # type: () -> 'Multivalue' @@ -319,6 +371,48 @@ def AssignedNumber4Bytes(self): self, self._get_attribute(self._SDM_ATT_MAP["AssignedNumber4Bytes"]) ) + @property + def ColorCOBitsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): CO bits for the Color Extended Community attribute for the SRv6 Policy for current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorCOBitsFlowspec"]) + ) + + @property + def ColorReservedBitsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Color Reserved Bits for the Color Extended Communtiy attribute for the SRv6 Policy for current Flow Specification. Default value is 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorReservedBitsFlowspec"]) + ) + + @property + def ColorValueFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Color Value for the Color Extended Communtiy attribute for the SRv6 Policy for current Flow Specification. Default value is 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ColorValueFlowspec"]) + ) + @property def Count(self): # type: () -> int @@ -345,7 +439,7 @@ def DestPortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Destination Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -385,7 +479,7 @@ def DestPrefixV6(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Destination Prefix - Controlled by Enable Destination Prefix + - obj(ixnetwork_restpy.multivalue.Multivalue): Destination Prefix - Controlled by Enable Destination Prefix (Pattern is calculated based on length and offset) """ from ixnetwork_restpy.multivalue import Multivalue @@ -397,7 +491,7 @@ def DscpMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 10, 10-20, <10, 10&20, 10|20-30&!25|>=50 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is DSCP Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 10, 10-20, <10, 10&20, 10|20-30&!25|>=50 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -593,13 +687,27 @@ def EnableRedirect(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableRedirect"]) ) + @property + def EnableRedirectIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Redirect To IPv6 Next Hop + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableRedirectIPv6NHop"]) + ) + @property def EnableReirectIPv6(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Redirect-IPv6 + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable RT Redirect-IPv6 """ from ixnetwork_restpy.multivalue import Multivalue @@ -621,6 +729,20 @@ def EnableSourcePrefixV6(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableSourcePrefixV6"]) ) + @property + def EnableSrv6SidFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then you can put SRv6 SID value and related informations for the current Flow Specification. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableSrv6SidFlowspec"]) + ) + @property def EnableTrafficAction(self): # type: () -> 'Multivalue' @@ -669,7 +791,7 @@ def EnableTrafficRate(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Traffic Rate + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, the Traffic Rate Packets Column gets enabled. You can configure the Rate of Traffic in packets per second. Default value is False. """ from ixnetwork_restpy.multivalue import Multivalue @@ -677,13 +799,27 @@ def EnableTrafficRate(self): self, self._get_attribute(self._SDM_ATT_MAP["EnableTrafficRate"]) ) + @property + def EnableTrafficRatePacket(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, the Traffic Rate Bytes Column gets enabled. You can configure the Rate of Traffic in bytes per second. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnableTrafficRatePacket"]) + ) + @property def FlowLabel(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Flow Label Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -707,7 +843,7 @@ def FragmentMatchV6(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Flags: lf,ff,isf join different matchcriteria using | or & join flags using | (bitwise or) Eg. (lf), (lf|ff|isf), (not)(lf|isf), (not|match)(ff)|(isf|lf) Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is fragment match in Flowspec Match Components. Supported Flags: lf,ff,isf join different matchcriteria using | or & join flags using | (bitwise or) Eg. (lf), (lf|ff|isf), (not)(lf|isf), (not|match)(ff)|(isf|lf) Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -715,13 +851,27 @@ def FragmentMatchV6(self): self, self._get_attribute(self._SDM_ATT_MAP["FragmentMatchV6"]) ) + @property + def FunctionLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Function Length of SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["FunctionLengthFlowspec"]) + ) + @property def IcmpCodeMatch(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is ICMP Code Match in Flowspec Match Components. This field takes the string of ICMP Code matching criteria for a flow specification.Supported Formats:a. valueb. value1-value2>value (!, >, <, >=, <= supported)join using | or &Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc.c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -733,12 +883,27 @@ def IcmpTypeMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is ICMP Type Match in Flowspec Match Components. This field takes the string of ICMP Type matching criteria for a flow specification.Supported Formats:a. valueb. value1-value2>value (!, >, <, >=, <= supported)join using | or &Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etcc. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IcmpTypeMatch"])) + @property + def IncSrv6SidStructSsTlvFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If set to True, then the SRv6 Sid Structure Sub-Sub-TLV is sent in packet for the current Flow Specification. Default value is False. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["IncSrv6SidStructSsTlvFlowspec"]), + ) + @property def Ip(self): # type: () -> 'Multivalue' @@ -757,7 +922,7 @@ def IpPacketLenMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is IP Packet Length Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -801,6 +966,34 @@ def Ipv6NextHop(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Ipv6NextHop"])) + @property + def LocBlockLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Locator Block length for SRv6 SID for the current Flow Specification. Default value is set to 40. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LocBlockLengthFlowspec"]) + ) + + @property + def LocNodeLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Locator Node length for SRv6 SID for the current Flow Specification. Default value is set to 24. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LocNodeLengthFlowspec"]) + ) + @property def LocalPreference(self): # type: () -> 'Multivalue' @@ -850,7 +1043,7 @@ def NextHeader(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Upper Layer Protocol Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-220&!210|>=230 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -987,7 +1180,7 @@ def PortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried This Field Matches Source OR Destination TCP/UDP Ports + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried This Field Matches Source OR Destination TCP/UDP Ports """ from ixnetwork_restpy.multivalue import Multivalue @@ -1005,6 +1198,20 @@ def RedirectCBit(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RedirectCBit"])) + @property + def RedirectCBitIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): C Bit(IPv6 Next Hop) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectCBitIPv6NHop"]) + ) + @property def RedirectExtCommunityType(self): # type: () -> 'Multivalue' @@ -1025,12 +1232,26 @@ def RedirectIPv6(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Redirect-IPv6 + - obj(ixnetwork_restpy.multivalue.Multivalue): RT Redirect-IPv6 """ from ixnetwork_restpy.multivalue import Multivalue return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv6"])) + @property + def RedirectIPv6NHop(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Redirect To IPv6 Next Hop + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RedirectIPv6NHop"]) + ) + @property def Redirectnexthop(self): # type: () -> 'Multivalue' @@ -1077,7 +1298,7 @@ def SourcePortMatch(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Formats: value value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is Source Port Match in Flowspec Match Components. Supported Formats: a. value b. value1-value2 >value (!, >, <, >=, <= supported) join using | or & Eg. 100, 100-200, <100, 100&200, 100|200-300&!250|>=500 etc c. Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -1105,7 +1326,7 @@ def SourcePrefixV6(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Source Prefix - Controlled by Enable Source Prefix + - obj(ixnetwork_restpy.multivalue.Multivalue): Source Prefix - Controlled by Enable Source Prefix (Pattern is calculated based on length and offset) """ from ixnetwork_restpy.multivalue import Multivalue @@ -1127,13 +1348,111 @@ def SrcPrefixOffset(self): self, self._get_attribute(self._SDM_ATT_MAP["SrcPrefixOffset"]) ) + @property + def Srv6EndpointBehaviorFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This is SRv6 Endpoint Behaviour for the current Flow Specifcation. Default value is set to 0xFFFF. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6EndpointBehaviorFlowspec"]) + ) + + @property + def Srv6SidFlagsFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Sid Flags in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidFlagsFlowspec"]) + ) + + @property + def Srv6SidFuncAllocTypeFlowspec(self): + # type: () -> 'Multivalue' + """DEPRECATED + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 Func Allocation Type + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidFuncAllocTypeFlowspec"]) + ) + + @property + def Srv6SidLocFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID. It consists of Locator, Func and Args. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidLocFlowspec"]) + ) + + @property + def Srv6SidReserved(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved value in SRv6 L3 Service TLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved"]) + ) + + @property + def Srv6SidReserved1Flowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved1 field value in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved1Flowspec"]) + ) + + @property + def Srv6SidReserved2Flowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field is used to specify Reserved2 field value in SRv6 Service Information SubTLV. Default value is set to 0x00. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved2Flowspec"]) + ) + @property def TcpFlagsMatch(self): # type: () -> 'Multivalue' """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Supported Flags: ns,cwr,ece,urg,ack,psh,rst,syn,fin join different matchcriteria using | or & join flags using | (bitwise or) Eg. (cwr), (ece|urg|psh|syn), (not)(cwr|syn), (not|match)(ece|psh)|(psh|rst)&(not)(ns) Keep Empty If Not Requried + - obj(ixnetwork_restpy.multivalue.Multivalue): This is TCP Flags Match in Flowspec Match Components. Supported Flags: ns,cwr,ece,urg,ack,psh,rst,syn,fin join different matchcriteria using | or & join flags using | (bitwise or) Eg. (cwr), (ece|urg|psh|syn), (not)(cwr|syn), (not|match)(ece|psh)|(psh|rst)&(not)(ns) Keep Empty If Not Requried """ from ixnetwork_restpy.multivalue import Multivalue @@ -1191,6 +1510,48 @@ def TrafficRate(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["TrafficRate"])) + @property + def TrafficRatePacket(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Traffic Rate (Packets/s) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TrafficRatePacket"]) + ) + + @property + def TranspositionLengthFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Transposition length for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TranspositionLengthFlowspec"]) + ) + + @property + def TranspositionOffsetFlowspec(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Transposition offset for SRv6 SID for the current Flow Specification. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["TranspositionOffsetFlowspec"]) + ) + def update( self, Name=None, @@ -1281,14 +1642,19 @@ def read(self, href): def get_device_ids( self, PortNames=None, + ActivateSRv6Policy=None, Active=None, AggregatorAs=None, AggregatorId=None, + ArgumentLengthFlowspec=None, AsNumber2Bytes=None, AsNumber4Bytes=None, AsSetMode=None, AssignedNumber2Bytes=None, AssignedNumber4Bytes=None, + ColorCOBitsFlowspec=None, + ColorReservedBitsFlowspec=None, + ColorValueFlowspec=None, DestPortMatch=None, DestPrefixLengthV6=None, DestPrefixOffset=None, @@ -1308,22 +1674,29 @@ def get_device_ids( EnableOrigin=None, EnableOriginatorId=None, EnableRedirect=None, + EnableRedirectIPv6NHop=None, EnableReirectIPv6=None, EnableSourcePrefixV6=None, + EnableSrv6SidFlowspec=None, EnableTrafficAction=None, EnableTrafficMarketing=None, EnableTrafficMarking=None, EnableTrafficRate=None, + EnableTrafficRatePacket=None, FlowLabel=None, FlowSpecName=None, FragmentMatchV6=None, + FunctionLengthFlowspec=None, IcmpCodeMatch=None, IcmpTypeMatch=None, + IncSrv6SidStructSsTlvFlowspec=None, Ip=None, IpPacketLenMatch=None, IpV4=None, Ipv4NextHop=None, Ipv6NextHop=None, + LocBlockLengthFlowspec=None, + LocNodeLengthFlowspec=None, LocalPreference=None, MultiExitDiscriminator=None, NextHeader=None, @@ -1333,8 +1706,10 @@ def get_device_ids( OverridePeerAsSetMode=None, PortMatch=None, RedirectCBit=None, + RedirectCBitIPv6NHop=None, RedirectExtCommunityType=None, RedirectIPv6=None, + RedirectIPv6NHop=None, Redirectnexthop=None, SetNextHop=None, SetNextHopIpType=None, @@ -1342,11 +1717,21 @@ def get_device_ids( SourcePrefixLengthV6=None, SourcePrefixV6=None, SrcPrefixOffset=None, + Srv6EndpointBehaviorFlowspec=None, + Srv6SidFlagsFlowspec=None, + Srv6SidFuncAllocTypeFlowspec=None, + Srv6SidLocFlowspec=None, + Srv6SidReserved=None, + Srv6SidReserved1Flowspec=None, + Srv6SidReserved2Flowspec=None, TcpFlagsMatch=None, TerminalAction=None, TrafficActionSample=None, TrafficDscp=None, TrafficRate=None, + TrafficRatePacket=None, + TranspositionLengthFlowspec=None, + TranspositionOffsetFlowspec=None, ): """Base class infrastructure that gets a list of bgpFlowSpecRangesListV6 device ids encapsulated by this object. @@ -1355,14 +1740,19 @@ def get_device_ids( Args ---- - PortNames (str): optional regex of port names + - ActivateSRv6Policy (str): optional regex of activateSRv6Policy - Active (str): optional regex of active - AggregatorAs (str): optional regex of aggregatorAs - AggregatorId (str): optional regex of aggregatorId + - ArgumentLengthFlowspec (str): optional regex of argumentLengthFlowspec - AsNumber2Bytes (str): optional regex of asNumber2Bytes - AsNumber4Bytes (str): optional regex of asNumber4Bytes - AsSetMode (str): optional regex of asSetMode - AssignedNumber2Bytes (str): optional regex of assignedNumber2Bytes - AssignedNumber4Bytes (str): optional regex of assignedNumber4Bytes + - ColorCOBitsFlowspec (str): optional regex of colorCOBitsFlowspec + - ColorReservedBitsFlowspec (str): optional regex of colorReservedBitsFlowspec + - ColorValueFlowspec (str): optional regex of colorValueFlowspec - DestPortMatch (str): optional regex of destPortMatch - DestPrefixLengthV6 (str): optional regex of destPrefixLengthV6 - DestPrefixOffset (str): optional regex of destPrefixOffset @@ -1382,22 +1772,29 @@ def get_device_ids( - EnableOrigin (str): optional regex of enableOrigin - EnableOriginatorId (str): optional regex of enableOriginatorId - EnableRedirect (str): optional regex of enableRedirect + - EnableRedirectIPv6NHop (str): optional regex of enableRedirectIPv6NHop - EnableReirectIPv6 (str): optional regex of enableReirectIPv6 - EnableSourcePrefixV6 (str): optional regex of enableSourcePrefixV6 + - EnableSrv6SidFlowspec (str): optional regex of enableSrv6SidFlowspec - EnableTrafficAction (str): optional regex of enableTrafficAction - EnableTrafficMarketing (str): optional regex of enableTrafficMarketing - EnableTrafficMarking (str): optional regex of enableTrafficMarking - EnableTrafficRate (str): optional regex of enableTrafficRate + - EnableTrafficRatePacket (str): optional regex of enableTrafficRatePacket - FlowLabel (str): optional regex of flowLabel - FlowSpecName (str): optional regex of flowSpecName - FragmentMatchV6 (str): optional regex of fragmentMatchV6 + - FunctionLengthFlowspec (str): optional regex of functionLengthFlowspec - IcmpCodeMatch (str): optional regex of icmpCodeMatch - IcmpTypeMatch (str): optional regex of icmpTypeMatch + - IncSrv6SidStructSsTlvFlowspec (str): optional regex of incSrv6SidStructSsTlvFlowspec - Ip (str): optional regex of ip - IpPacketLenMatch (str): optional regex of ipPacketLenMatch - IpV4 (str): optional regex of ipV4 - Ipv4NextHop (str): optional regex of ipv4NextHop - Ipv6NextHop (str): optional regex of ipv6NextHop + - LocBlockLengthFlowspec (str): optional regex of locBlockLengthFlowspec + - LocNodeLengthFlowspec (str): optional regex of locNodeLengthFlowspec - LocalPreference (str): optional regex of localPreference - MultiExitDiscriminator (str): optional regex of multiExitDiscriminator - NextHeader (str): optional regex of nextHeader @@ -1407,8 +1804,10 @@ def get_device_ids( - OverridePeerAsSetMode (str): optional regex of overridePeerAsSetMode - PortMatch (str): optional regex of portMatch - RedirectCBit (str): optional regex of redirectCBit + - RedirectCBitIPv6NHop (str): optional regex of redirectCBitIPv6NHop - RedirectExtCommunityType (str): optional regex of redirectExtCommunityType - RedirectIPv6 (str): optional regex of redirectIPv6 + - RedirectIPv6NHop (str): optional regex of redirectIPv6NHop - Redirectnexthop (str): optional regex of redirectnexthop - SetNextHop (str): optional regex of setNextHop - SetNextHopIpType (str): optional regex of setNextHopIpType @@ -1416,11 +1815,21 @@ def get_device_ids( - SourcePrefixLengthV6 (str): optional regex of sourcePrefixLengthV6 - SourcePrefixV6 (str): optional regex of sourcePrefixV6 - SrcPrefixOffset (str): optional regex of srcPrefixOffset + - Srv6EndpointBehaviorFlowspec (str): optional regex of srv6EndpointBehaviorFlowspec + - Srv6SidFlagsFlowspec (str): optional regex of srv6SidFlagsFlowspec + - Srv6SidFuncAllocTypeFlowspec (str): optional regex of srv6SidFuncAllocTypeFlowspec + - Srv6SidLocFlowspec (str): optional regex of srv6SidLocFlowspec + - Srv6SidReserved (str): optional regex of srv6SidReserved + - Srv6SidReserved1Flowspec (str): optional regex of srv6SidReserved1Flowspec + - Srv6SidReserved2Flowspec (str): optional regex of srv6SidReserved2Flowspec - TcpFlagsMatch (str): optional regex of tcpFlagsMatch - TerminalAction (str): optional regex of terminalAction - TrafficActionSample (str): optional regex of trafficActionSample - TrafficDscp (str): optional regex of trafficDscp - TrafficRate (str): optional regex of trafficRate + - TrafficRatePacket (str): optional regex of trafficRatePacket + - TranspositionLengthFlowspec (str): optional regex of transpositionLengthFlowspec + - TranspositionOffsetFlowspec (str): optional regex of transpositionOffsetFlowspec Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpiprouteproperty_ffd9071ae88c6283e9f54ec948882405.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpiprouteproperty_ffd9071ae88c6283e9f54ec948882405.py index 4f78a1cd9..0671f41fb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpiprouteproperty_ffd9071ae88c6283e9f54ec948882405.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpiprouteproperty_ffd9071ae88c6283e9f54ec948882405.py @@ -247,13 +247,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4adl2vpn_08c7fedfc475cb9798d64a65caa67e97.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4adl2vpn_08c7fedfc475cb9798d64a65caa67e97.py index 697ea4f51..ba3933afa 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4adl2vpn_08c7fedfc475cb9798d64a65caa67e97.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4adl2vpn_08c7fedfc475cb9798d64a65caa67e97.py @@ -185,7 +185,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -229,7 +229,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -379,7 +379,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -464,10 +464,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -481,10 +481,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -530,17 +530,17 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DutIpv4 (list(str)): DUT IP - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalIpv4 (list(str)): Local IP - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnevi_05f1ea70759fa1436b3981f124b83276.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnevi_05f1ea70759fa1436b3981f124b83276.py index 011c5ab29..133c48c0c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnevi_05f1ea70759fa1436b3981f124b83276.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnevi_05f1ea70759fa1436b3981f124b83276.py @@ -211,13 +211,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -497,7 +497,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -722,7 +722,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1261,7 +1261,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1363,7 +1363,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1377,7 +1377,7 @@ def update( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1408,7 +1408,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1422,7 +1422,7 @@ def add( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1477,10 +1477,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EsiValue (list(str)): ESI Value - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List @@ -1496,7 +1496,7 @@ def find( - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnpbb_f1db536c355bf8211909601b21790955.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnpbb_f1db536c355bf8211909601b21790955.py index eb887531f..de6252756 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnpbb_f1db536c355bf8211909601b21790955.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnpbb_f1db536c355bf8211909601b21790955.py @@ -208,13 +208,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -494,7 +494,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -719,7 +719,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1216,7 +1216,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1318,7 +1318,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1332,7 +1332,7 @@ def update( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1363,7 +1363,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1377,7 +1377,7 @@ def add( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1432,10 +1432,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EsiValue (list(str)): ESI Value - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List @@ -1451,7 +1451,7 @@ def find( - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvpws_e8af65dd80ab4466e956b1bd0656c202.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvpws_e8af65dd80ab4466e956b1bd0656c202.py index a316efbe5..a110ff3cb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvpws_e8af65dd80ab4466e956b1bd0656c202.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvpws_e8af65dd80ab4466e956b1bd0656c202.py @@ -208,13 +208,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -494,7 +494,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -719,7 +719,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1216,7 +1216,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1318,7 +1318,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1332,7 +1332,7 @@ def update( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1363,7 +1363,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1377,7 +1377,7 @@ def add( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1432,10 +1432,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EsiValue (list(str)): ESI Value - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List @@ -1451,7 +1451,7 @@ def find( - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvxlan_ac7a890f916ca5599eb4618d697c2f6e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvxlan_ac7a890f916ca5599eb4618d697c2f6e.py index 890a380d2..955787c82 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvxlan_ac7a890f916ca5599eb4618d697c2f6e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvxlan_ac7a890f916ca5599eb4618d697c2f6e.py @@ -214,13 +214,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -500,7 +500,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -725,7 +725,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1302,7 +1302,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1404,7 +1404,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1418,7 +1418,7 @@ def update( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1449,7 +1449,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1463,7 +1463,7 @@ def add( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1518,10 +1518,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EsiValue (list(str)): ESI Value - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List @@ -1537,7 +1537,7 @@ def find( - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvxlanvpws_8885c446b89d80aaa511ee82c37e924f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvxlanvpws_8885c446b89d80aaa511ee82c37e924f.py index b16f5ec3f..b9a176b32 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvxlanvpws_8885c446b89d80aaa511ee82c37e924f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4evpnvxlanvpws_8885c446b89d80aaa511ee82c37e924f.py @@ -214,13 +214,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -500,7 +500,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -725,7 +725,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1302,7 +1302,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1404,7 +1404,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1418,7 +1418,7 @@ def update( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1449,7 +1449,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1463,7 +1463,7 @@ def add( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1518,10 +1518,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EsiValue (list(str)): ESI Value - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List @@ -1537,7 +1537,7 @@ def find( - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4l2site_3fc887aa9816db034ba10b85d4b057ee.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4l2site_3fc887aa9816db034ba10b85d4b057ee.py index 53b566754..85451a3e9 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4l2site_3fc887aa9816db034ba10b85d4b057ee.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4l2site_3fc887aa9816db034ba10b85d4b057ee.py @@ -185,7 +185,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -347,7 +347,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -483,7 +483,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -606,12 +606,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumClusterPerL2Site (number): Number Of Clusters Per L2 Site - NumLabelBlocksPerL2Site (number): Number Of Label Blocks Per L2 Site - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -633,12 +633,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumClusterPerL2Site (number): Number Of Clusters Per L2 Site - NumLabelBlocksPerL2Site (number): Number Of Label Blocks Per L2 Site - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -686,11 +686,11 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DutIp (list(str)): DUT IP - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalIp (list(str)): Local IP - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -698,7 +698,7 @@ def find( - NumClusterPerL2Site (number): Number Of Clusters Per L2 Site - NumLabelBlocksPerL2Site (number): Number Of Label Blocks Per L2 Site - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4mvrf_200ce763656bd00177bc416b83bf991a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4mvrf_200ce763656bd00177bc416b83bf991a.py index b80851c3c..484ddfdc3 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4mvrf_200ce763656bd00177bc416b83bf991a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4mvrf_200ce763656bd00177bc416b83bf991a.py @@ -453,7 +453,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -536,7 +536,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -978,7 +978,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1124,7 +1124,7 @@ def update( Args ---- - AdvertiseIPMSIRoutes (bool): Enables I-PMSI Route Advertisement for MVPN (if True). Disables I-PMSI Route Advertisement for MVPN (if False). - Set to False when Enable TRM is Enabled (by deafult). - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableTRM (bool): Enables Tenant Routed Multicast support in EVPN. Upon Enabling, - Advertise I-PMSI Routes will be disabled (by default). - Multicast Tunnel Type will be PIM-SSM (by default). - VRF Route Import Extended Community is sent with EVPN Route Type 2 & 5 (always). - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1135,7 +1135,7 @@ def update( - NumRtInUmhImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1165,7 +1165,7 @@ def add( Args ---- - AdvertiseIPMSIRoutes (bool): Enables I-PMSI Route Advertisement for MVPN (if True). Disables I-PMSI Route Advertisement for MVPN (if False). - Set to False when Enable TRM is Enabled (by deafult). - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableTRM (bool): Enables Tenant Routed Multicast support in EVPN. Upon Enabling, - Advertise I-PMSI Routes will be disabled (by default). - Multicast Tunnel Type will be PIM-SSM (by default). - VRF Route Import Extended Community is sent with EVPN Route Type 2 & 5 (always). - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1176,7 +1176,7 @@ def add( - NumRtInUmhImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1232,12 +1232,12 @@ def find( Args ---- - AdvertiseIPMSIRoutes (bool): Enables I-PMSI Route Advertisement for MVPN (if True). Disables I-PMSI Route Advertisement for MVPN (if False). - Set to False when Enable TRM is Enabled (by deafult). - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DutIpv4 (list(str)): DUT IP - EnableTRM (bool): Enables Tenant Routed Multicast support in EVPN. Upon Enabling, - Advertise I-PMSI Routes will be disabled (by default). - Multicast Tunnel Type will be PIM-SSM (by default). - VRF Route Import Extended Community is sent with EVPN Route Type 2 & 5 (always). - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - LocalIpv4 (list(str)): Local IP - LocalRouterID (list(str)): Router ID @@ -1250,7 +1250,7 @@ def find( - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841.py similarity index 98% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841.py index 602788f82..b18d4d8ce 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841.py @@ -55,6 +55,7 @@ class BgpIpv4Peer(Base): "BgpLsNoOfClusters": "bgpLsNoOfClusters", "BgpLsNoOfCommunities": "bgpLsNoOfCommunities", "BgpLsOverridePeerAsSetMode": "bgpLsOverridePeerAsSetMode", + "CapabilityExtendedMessage": "capabilityExtendedMessage", "CapabilityIpV4Mdt": "capabilityIpV4Mdt", "CapabilityIpV4Mpls": "capabilityIpV4Mpls", "CapabilityIpV4MplsVpn": "capabilityIpV4MplsVpn", @@ -143,6 +144,7 @@ class BgpIpv4Peer(Base): "LocalAs4Bytes": "localAs4Bytes", "LocalIpv4Ver2": "localIpv4Ver2", "LocalRouterID": "localRouterID", + "MaxBGPMsgLengthTx": "maxBGPMsgLengthTx", "Md5Key": "md5Key", "ModeOfBfdOperations": "modeOfBfdOperations", "MplsLabelsCountForIpv4MplsRoute": "mplsLabelsCountForIpv4MplsRoute", @@ -265,13 +267,13 @@ def BgpFlowSpecRangesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_789c16d44699974803aa7a2ecfa2c575.BgpFlowSpecRangesList): An instance of the BgpFlowSpecRangesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_850749b96bb629595bbddf006a29b1eb.BgpFlowSpecRangesList): An instance of the BgpFlowSpecRangesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_789c16d44699974803aa7a2ecfa2c575 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_850749b96bb629595bbddf006a29b1eb import ( BgpFlowSpecRangesList, ) @@ -285,13 +287,13 @@ def BgpFlowSpecRangesListV4(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_ab0c3185b027eff54394da27736dcb9a.BgpFlowSpecRangesListV4): An instance of the BgpFlowSpecRangesListV4 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_0163de8cc99a19d1385a21d26b93a544.BgpFlowSpecRangesListV4): An instance of the BgpFlowSpecRangesListV4 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_ab0c3185b027eff54394da27736dcb9a import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_0163de8cc99a19d1385a21d26b93a544 import ( BgpFlowSpecRangesListV4, ) @@ -305,13 +307,13 @@ def BgpFlowSpecRangesListV6(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_305d65dd8b0f124660b13211ca670c20.BgpFlowSpecRangesListV6): An instance of the BgpFlowSpecRangesListV6 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_c579a493ccdc64a6383fef9d60aac4cc.BgpFlowSpecRangesListV6): An instance of the BgpFlowSpecRangesListV6 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_305d65dd8b0f124660b13211ca670c20 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_c579a493ccdc64a6383fef9d60aac4cc import ( BgpFlowSpecRangesListV6, ) @@ -545,13 +547,13 @@ def BgpLsExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_835ffabe7ce10fa0b2a04b0ca4ed54d9.BgpLsExtendedCommunitiesList): An instance of the BgpLsExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_65060f604681a40b0c7dab490b2d6c5d.BgpLsExtendedCommunitiesList): An instance of the BgpLsExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_835ffabe7ce10fa0b2a04b0ca4ed54d9 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_65060f604681a40b0c7dab490b2d6c5d import ( BgpLsExtendedCommunitiesList, ) @@ -952,6 +954,20 @@ def BgpLsOverridePeerAsSetMode(self): self, self._get_attribute(self._SDM_ATT_MAP["BgpLsOverridePeerAsSetMode"]) ) + @property + def CapabilityExtendedMessage(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Extended Message Capability (Capability code 6, length 0): If enabled, a BGP Peer is able to receive and handle BGP messages having a maximum size of 65535 bytes. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CapabilityExtendedMessage"]) + ) + @property def CapabilityIpV4Mdt(self): # type: () -> 'Multivalue' @@ -1340,7 +1356,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -1531,7 +1547,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -2159,6 +2175,20 @@ def LocalRouterID(self): """ return self._get_attribute(self._SDM_ATT_MAP["LocalRouterID"]) + @property + def MaxBGPMsgLengthTx(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Max BGP Message Length (in bytes): The maximum size of a BGP message that can be transmitted. The minimum value is 4096 and the maximum size can be configured up to 65535. 4096 is the default value. This is not applicable for OPEN and KEEPALIVE messages as their maximum size limit is 4096. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["MaxBGPMsgLengthTx"]) + ) + @property def Md5Key(self): # type: () -> 'Multivalue' @@ -2488,7 +2518,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -2694,7 +2724,7 @@ def update( - BgpLsNoOfCommunities (number): Number of Communities - CapabilityIpv4MplsAddPath (bool): IPv4 MPLS Add Path Capability - CapabilityIpv6MplsAddPath (bool): IPv6 MPLS Add Path Capability - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableEpeTraffic (bool): Enable EPE Traffic - EthernetSegmentsCountV4 (number): Number of Ethernet Segments - IpVrfToIpVrfType (str(interfaceLess | interfacefullWithCorefacingIRB | interfacefullWithUnnumberedCorefacingIRB)): IP-VRF-to-IP-VRF Model Type @@ -2714,7 +2744,7 @@ def update( - NumberFlowSpecRangeV6 (number): Number of IPv6 Flow Spec Ranges - NumberSRTEPolicies (number): Count of SR TE Policies - SRGBRangeCount (number): SRGB Range Count - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - UdpPortEndValue (number): UDP Port End Value - UdpPortStartValue (number): UDP Port Start Value @@ -2767,7 +2797,7 @@ def add( - BgpLsNoOfCommunities (number): Number of Communities - CapabilityIpv4MplsAddPath (bool): IPv4 MPLS Add Path Capability - CapabilityIpv6MplsAddPath (bool): IPv6 MPLS Add Path Capability - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableEpeTraffic (bool): Enable EPE Traffic - EthernetSegmentsCountV4 (number): Number of Ethernet Segments - IpVrfToIpVrfType (str(interfaceLess | interfacefullWithCorefacingIRB | interfacefullWithUnnumberedCorefacingIRB)): IP-VRF-to-IP-VRF Model Type @@ -2787,7 +2817,7 @@ def add( - NumberFlowSpecRangeV6 (number): Number of IPv6 Flow Spec Ranges - NumberSRTEPolicies (number): Count of SR TE Policies - SRGBRangeCount (number): SRGB Range Count - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - UdpPortEndValue (number): UDP Port End Value - UdpPortStartValue (number): UDP Port Start Value @@ -2868,11 +2898,11 @@ def find( - BgpLsNoOfCommunities (number): Number of Communities - CapabilityIpv4MplsAddPath (bool): IPv4 MPLS Add Path Capability - CapabilityIpv6MplsAddPath (bool): IPv6 MPLS Add Path Capability - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableEpeTraffic (bool): Enable EPE Traffic - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EthernetSegmentsCountV4 (number): Number of Ethernet Segments - IpVrfToIpVrfType (str(interfaceLess | interfacefullWithCorefacingIRB | interfacefullWithUnnumberedCorefacingIRB)): IP-VRF-to-IP-VRF Model Type - Ipv4MplsCapability (bool): IPv4 MPLS Capability: AFI=1, SAFI=4 @@ -2895,7 +2925,7 @@ def find( - SRGBRangeCount (number): SRGB Range Count - SessionInfo (list(str[aSRoutingLoopErrorRx | attributeFlagErrorRx | attributesLengthErrorRx | authenticationFailureErrorRx | badBGPIdentifierErrorRx | badMessageLengthErrorRx | badMessageTypeErrorRx | badPeerASErrorRx | bGPHeaderErrorRx | bGPHeaderErrorTx | bGPHoldTimerExpiredErrorRx | bGPOpenPacketErrorRx | bGPStateMachineErrorRx | bGPUpdatePacketErrorRx | ceaseErrorRx | ceaseNotificationErrorTx | connectionNotsynchronizedErrorRx | holdtimeExpiredErrorTx | invalidASPathErrorRx | invalidNetworkFieldErrorRx | invalidNextHopAttributeErrorRx | invalidOriginAttributeErrorRx | malformedAttributeListErrorRx | missingWellKnownAttributeErrorRx | none | openPacketErrTx | optionalAttributeErrorRx | stateMachineErrorTx | unacceptableHoldTimeErrorRx | unrecognizedWellKnownAttributeErrorRx | unspecifiedErrorRx | unspecifiedErrorTx | unspecifiedSubcodeErrorRx | unsupportedOptionalParameterErrorRx | unsupportedversionNumberErrorRx | updatePacketErrorTx])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - UdpPortEndValue (number): UDP Port End Value @@ -4175,6 +4205,7 @@ def get_device_ids( BgpLsEnableCluster=None, BgpLsEnableExtendedCommunity=None, BgpLsOverridePeerAsSetMode=None, + CapabilityExtendedMessage=None, CapabilityIpV4Mdt=None, CapabilityIpV4Mpls=None, CapabilityIpV4MplsVpn=None, @@ -4248,6 +4279,7 @@ def get_device_ids( L3VPNEncapsulationType=None, LocalAs2Bytes=None, LocalAs4Bytes=None, + MaxBGPMsgLengthTx=None, Md5Key=None, ModeOfBfdOperations=None, NumBgpLsId=None, @@ -4286,6 +4318,7 @@ def get_device_ids( - BgpLsEnableCluster (str): optional regex of bgpLsEnableCluster - BgpLsEnableExtendedCommunity (str): optional regex of bgpLsEnableExtendedCommunity - BgpLsOverridePeerAsSetMode (str): optional regex of bgpLsOverridePeerAsSetMode + - CapabilityExtendedMessage (str): optional regex of capabilityExtendedMessage - CapabilityIpV4Mdt (str): optional regex of capabilityIpV4Mdt - CapabilityIpV4Mpls (str): optional regex of capabilityIpV4Mpls - CapabilityIpV4MplsVpn (str): optional regex of capabilityIpV4MplsVpn @@ -4359,6 +4392,7 @@ def get_device_ids( - L3VPNEncapsulationType (str): optional regex of l3VPNEncapsulationType - LocalAs2Bytes (str): optional regex of localAs2Bytes - LocalAs4Bytes (str): optional regex of localAs4Bytes + - MaxBGPMsgLengthTx (str): optional regex of maxBGPMsgLengthTx - Md5Key (str): optional regex of md5Key - ModeOfBfdOperations (str): optional regex of modeOfBfdOperations - NumBgpLsId (str): optional regex of numBgpLsId diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6adl2vpn_dfa30e45f6798c9ecc0ef8b85351cb5d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6adl2vpn_dfa30e45f6798c9ecc0ef8b85351cb5d.py index 63caedb7e..8e889cf65 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6adl2vpn_dfa30e45f6798c9ecc0ef8b85351cb5d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6adl2vpn_dfa30e45f6798c9ecc0ef8b85351cb5d.py @@ -185,7 +185,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -229,7 +229,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -379,7 +379,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -464,10 +464,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -481,10 +481,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -530,17 +530,17 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DutIpv6 (list(str)): DUT IP - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalIpv6 (list(str)): Local IP - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnevi_7c0bb620c8b4c2fccbb4102758771ea6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnevi_7c0bb620c8b4c2fccbb4102758771ea6.py index c6c41b410..98f8c31fc 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnevi_7c0bb620c8b4c2fccbb4102758771ea6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnevi_7c0bb620c8b4c2fccbb4102758771ea6.py @@ -251,13 +251,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -593,7 +593,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -818,7 +818,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1856,7 +1856,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1958,7 +1958,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1972,7 +1972,7 @@ def update( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -2003,7 +2003,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -2017,7 +2017,7 @@ def add( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -2072,10 +2072,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EsiValue (list(str)): ESI Value - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List @@ -2091,7 +2091,7 @@ def find( - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnpbb_7e3d31c960a96c76772f39596f4e0b6c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnpbb_7e3d31c960a96c76772f39596f4e0b6c.py index 63d8b846e..73edee5ee 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnpbb_7e3d31c960a96c76772f39596f4e0b6c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnpbb_7e3d31c960a96c76772f39596f4e0b6c.py @@ -208,13 +208,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -494,7 +494,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -719,7 +719,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1216,7 +1216,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1318,7 +1318,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1332,7 +1332,7 @@ def update( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1363,7 +1363,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1377,7 +1377,7 @@ def add( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1432,10 +1432,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EsiValue (list(str)): ESI Value - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List @@ -1451,7 +1451,7 @@ def find( - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvpws_7e7a3dec141df7b1c974f723df7f4814.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvpws_7e7a3dec141df7b1c974f723df7f4814.py index e3d495dae..bd38216c2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvpws_7e7a3dec141df7b1c974f723df7f4814.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvpws_7e7a3dec141df7b1c974f723df7f4814.py @@ -240,13 +240,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -596,7 +596,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -821,7 +821,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1661,7 +1661,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1791,7 +1791,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1805,7 +1805,7 @@ def update( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1836,7 +1836,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1850,7 +1850,7 @@ def add( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1905,10 +1905,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EsiValue (list(str)): ESI Value - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List @@ -1924,7 +1924,7 @@ def find( - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvxlan_1a74cee0f392d412526e30bcedb3e032.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvxlan_1a74cee0f392d412526e30bcedb3e032.py index 985aa1c9a..6c956ffe0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvxlan_1a74cee0f392d412526e30bcedb3e032.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvxlan_1a74cee0f392d412526e30bcedb3e032.py @@ -214,13 +214,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -500,7 +500,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -725,7 +725,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1302,7 +1302,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1404,7 +1404,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1418,7 +1418,7 @@ def update( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1449,7 +1449,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1463,7 +1463,7 @@ def add( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1518,10 +1518,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EsiValue (list(str)): ESI Value - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List @@ -1537,7 +1537,7 @@ def find( - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvxlanvpws_4fb221f4b88d4df5dde7203f6194f25d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvxlanvpws_4fb221f4b88d4df5dde7203f6194f25d.py index 1d7241a70..f2b04e63e 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvxlanvpws_4fb221f4b88d4df5dde7203f6194f25d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6evpnvxlanvpws_4fb221f4b88d4df5dde7203f6194f25d.py @@ -214,13 +214,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -500,7 +500,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -725,7 +725,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1302,7 +1302,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1404,7 +1404,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1418,7 +1418,7 @@ def update( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1449,7 +1449,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1463,7 +1463,7 @@ def add( - NumRtInImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1518,10 +1518,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EsiValue (list(str)): ESI Value - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - L3vniImportRtListSameAsL3vniExportRtList (bool): L3 Import RT List Same As L3 Export RT List @@ -1537,7 +1537,7 @@ def find( - NumRtInL3vniExportRouteTargetList (number): Number of RTs in L3 Export Route Target List(multiplier) - NumRtInL3vniImportRouteTargetList (number): Number of RTs in L3 Import Route Target List(multiplier) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6l2site_91dde52dc0cc2c12360c0d436c8db2fe.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6l2site_91dde52dc0cc2c12360c0d436c8db2fe.py index d12df3ca5..81bf86b7c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6l2site_91dde52dc0cc2c12360c0d436c8db2fe.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6l2site_91dde52dc0cc2c12360c0d436c8db2fe.py @@ -182,7 +182,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -304,7 +304,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -440,7 +440,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -563,12 +563,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumClusterPerL2Site (number): Number Of Clusters Per L2 Site - NumLabelBlocksPerL2Site (number): Number Of Label Blocks Per L2 Site - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -590,12 +590,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumClusterPerL2Site (number): Number Of Clusters Per L2 Site - NumLabelBlocksPerL2Site (number): Number Of Label Blocks Per L2 Site - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -643,11 +643,11 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DutIp (list(str)): DUT IP - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalIp (list(str)): Local IP - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -655,7 +655,7 @@ def find( - NumClusterPerL2Site (number): Number Of Clusters Per L2 Site - NumLabelBlocksPerL2Site (number): Number Of Label Blocks Per L2 Site - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6mvrf_1027ad3d610d0cb975a481909144cac3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6mvrf_1027ad3d610d0cb975a481909144cac3.py index ec8a234ad..b5b2149fd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6mvrf_1027ad3d610d0cb975a481909144cac3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6mvrf_1027ad3d610d0cb975a481909144cac3.py @@ -266,7 +266,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -310,7 +310,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -639,7 +639,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -730,7 +730,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -740,7 +740,7 @@ def update( - NumRtInUmhImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -767,7 +767,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -777,7 +777,7 @@ def add( - NumRtInUmhImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -830,11 +830,11 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DutIpv6 (list(str)): DUT IP - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - LocalIpv6 (list(str)): Local IP - LocalRouterID (list(str)): Router ID @@ -847,7 +847,7 @@ def find( - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4de2e9634d2dee11a9265d28434788b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872.py similarity index 98% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4de2e9634d2dee11a9265d28434788b.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872.py index 7c8680623..8af3b6b69 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4de2e9634d2dee11a9265d28434788b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872.py @@ -59,6 +59,7 @@ class BgpIpv6Peer(Base): "BgpLsNoOfCommunities": "bgpLsNoOfCommunities", "BgpLsOverridePeerAsSetMode": "bgpLsOverridePeerAsSetMode", "BgpUnnumbered": "bgpUnnumbered", + "CapabilityExtendedMessage": "capabilityExtendedMessage", "CapabilityIpV4Mdt": "capabilityIpV4Mdt", "CapabilityIpV4Mpls": "capabilityIpV4Mpls", "CapabilityIpV4MplsVpn": "capabilityIpV4MplsVpn", @@ -153,6 +154,7 @@ class BgpIpv6Peer(Base): "LocalAs4Bytes": "localAs4Bytes", "LocalIpv6Ver2": "localIpv6Ver2", "LocalRouterID": "localRouterID", + "MaxBGPMsgLengthTx": "maxBGPMsgLengthTx", "MaxSidPerSrh": "maxSidPerSrh", "Md5Key": "md5Key", "ModeOfBfdOperations": "modeOfBfdOperations", @@ -316,13 +318,13 @@ def BgpFlowSpecRangesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_9ad7609645f425215665a5736cc73e84.BgpFlowSpecRangesList): An instance of the BgpFlowSpecRangesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_6369634b1dc049c4e02574db74970dd8.BgpFlowSpecRangesList): An instance of the BgpFlowSpecRangesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_9ad7609645f425215665a5736cc73e84 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_6369634b1dc049c4e02574db74970dd8 import ( BgpFlowSpecRangesList, ) @@ -336,13 +338,13 @@ def BgpFlowSpecRangesListV4(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_ab0c3185b027eff54394da27736dcb9a.BgpFlowSpecRangesListV4): An instance of the BgpFlowSpecRangesListV4 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_0163de8cc99a19d1385a21d26b93a544.BgpFlowSpecRangesListV4): An instance of the BgpFlowSpecRangesListV4 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_ab0c3185b027eff54394da27736dcb9a import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_0163de8cc99a19d1385a21d26b93a544 import ( BgpFlowSpecRangesListV4, ) @@ -356,13 +358,13 @@ def BgpFlowSpecRangesListV6(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_305d65dd8b0f124660b13211ca670c20.BgpFlowSpecRangesListV6): An instance of the BgpFlowSpecRangesListV6 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_c579a493ccdc64a6383fef9d60aac4cc.BgpFlowSpecRangesListV6): An instance of the BgpFlowSpecRangesListV6 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_305d65dd8b0f124660b13211ca670c20 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_c579a493ccdc64a6383fef9d60aac4cc import ( BgpFlowSpecRangesListV6, ) @@ -596,13 +598,13 @@ def BgpLsExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_835ffabe7ce10fa0b2a04b0ca4ed54d9.BgpLsExtendedCommunitiesList): An instance of the BgpLsExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_65060f604681a40b0c7dab490b2d6c5d.BgpLsExtendedCommunitiesList): An instance of the BgpLsExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_835ffabe7ce10fa0b2a04b0ca4ed54d9 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_65060f604681a40b0c7dab490b2d6c5d import ( BgpLsExtendedCommunitiesList, ) @@ -1058,6 +1060,20 @@ def BgpUnnumbered(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["BgpUnnumbered"])) + @property + def CapabilityExtendedMessage(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Extended Message Capability (Capability code 6, length 0): If enabled, a BGP Peer is able to receive and handle BGP messages having a maximum size of 65535 bytes. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CapabilityExtendedMessage"]) + ) + @property def CapabilityIpV4Mdt(self): # type: () -> 'Multivalue' @@ -1461,7 +1477,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -1571,7 +1587,7 @@ def EnSRv6DataPlane(self): """ Returns ------- - - bool: Ingress Peer Supports SRv6 VPN + - bool: Ingress Peer Supports SRv6 """ return self._get_attribute(self._SDM_ATT_MAP["EnSRv6DataPlane"]) @@ -1722,7 +1738,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -2350,6 +2366,20 @@ def LocalRouterID(self): """ return self._get_attribute(self._SDM_ATT_MAP["LocalRouterID"]) + @property + def MaxBGPMsgLengthTx(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Max BGP Message Length (in bytes): The maximum size of a BGP message that can be transmitted. The minimum value is 4096 and the maximum size can be configured up to 65535. 4096 is the default value. This is not applicable for OPEN and KEEPALIVE messages as their maximum size limit is 4096. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["MaxBGPMsgLengthTx"]) + ) + @property def MaxSidPerSrh(self): # type: () -> int @@ -2907,7 +2937,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -3187,9 +3217,9 @@ def update( - BgpLsNoOfCommunities (number): Number of Communities - CapabilityIpv4MplsAddPath (bool): IPv4 MPLS Add Path Capability - CapabilityIpv6MplsAddPath (bool): IPv6 MPLS Add Path Capability - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - CopyTtl (bool): Copy TTL from customer packet to outer IPv6 header - - EnSRv6DataPlane (bool): Ingress Peer Supports SRv6 VPN + - EnSRv6DataPlane (bool): Ingress Peer Supports SRv6 - EnableEpeTraffic (bool): Enable EPE Traffic - EnableReducedEncapsulation (bool): Enable Reduced Encapsulation in Data-Plane for SRv6 - EnableSRv6OAMService (bool): If enabled then SRv6 SID advertised to OAM @@ -3217,7 +3247,7 @@ def update( - SegmentLeftValue (number): Segment Left value to be used in top SRH. This zero index based value start from egress node. - SiIndex (number): Segment Index. - Srv6Ttl (number): TTL value to be used in outer IPv6 header - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TypeSIDEPE (str(sRMPLS | sRv6)): Type of EPE SID - UdpPortEndValue (number): UDP Port End Value - UdpPortStartValue (number): UDP Port Start Value @@ -3288,9 +3318,9 @@ def add( - BgpLsNoOfCommunities (number): Number of Communities - CapabilityIpv4MplsAddPath (bool): IPv4 MPLS Add Path Capability - CapabilityIpv6MplsAddPath (bool): IPv6 MPLS Add Path Capability - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - CopyTtl (bool): Copy TTL from customer packet to outer IPv6 header - - EnSRv6DataPlane (bool): Ingress Peer Supports SRv6 VPN + - EnSRv6DataPlane (bool): Ingress Peer Supports SRv6 - EnableEpeTraffic (bool): Enable EPE Traffic - EnableReducedEncapsulation (bool): Enable Reduced Encapsulation in Data-Plane for SRv6 - EnableSRv6OAMService (bool): If enabled then SRv6 SID advertised to OAM @@ -3318,7 +3348,7 @@ def add( - SegmentLeftValue (number): Segment Left value to be used in top SRH. This zero index based value start from egress node. - SiIndex (number): Segment Index. - Srv6Ttl (number): TTL value to be used in outer IPv6 header - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TypeSIDEPE (str(sRMPLS | sRv6)): Type of EPE SID - UdpPortEndValue (number): UDP Port End Value - UdpPortStartValue (number): UDP Port Start Value @@ -3418,16 +3448,16 @@ def find( - BgpLsNoOfCommunities (number): Number of Communities - CapabilityIpv4MplsAddPath (bool): IPv4 MPLS Add Path Capability - CapabilityIpv6MplsAddPath (bool): IPv6 MPLS Add Path Capability - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - CopyTtl (bool): Copy TTL from customer packet to outer IPv6 header - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DiscoveredDutIp (list(str)): The discovered DUT IP addresses. - - EnSRv6DataPlane (bool): Ingress Peer Supports SRv6 VPN + - EnSRv6DataPlane (bool): Ingress Peer Supports SRv6 - EnableEpeTraffic (bool): Enable EPE Traffic - EnableReducedEncapsulation (bool): Enable Reduced Encapsulation in Data-Plane for SRv6 - EnableSRv6OAMService (bool): If enabled then SRv6 SID advertised to OAM - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - EthernetSegmentsCountV6 (number): Number of Ethernet Segments - IpVrfToIpVrfType (str(interfaceLess | interfacefullWithCorefacingIRB | interfacefullWithUnnumberedCorefacingIRB)): IP-VRF-to-IP-VRF Model Type - Ipv4MplsCapability (bool): IPv4 MPLS Capability: AFI=1, SAFI=4 @@ -3456,7 +3486,7 @@ def find( - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SiIndex (number): Segment Index. - Srv6Ttl (number): TTL value to be used in outer IPv6 header - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TypeSIDEPE (str(sRMPLS | sRv6)): Type of EPE SID @@ -4742,6 +4772,7 @@ def get_device_ids( BgpLsEnableExtendedCommunity=None, BgpLsOverridePeerAsSetMode=None, BgpUnnumbered=None, + CapabilityExtendedMessage=None, CapabilityIpV4Mdt=None, CapabilityIpV4Mpls=None, CapabilityIpV4MplsVpn=None, @@ -4816,6 +4847,7 @@ def get_device_ids( L3VPNEncapsulationType=None, LocalAs2Bytes=None, LocalAs4Bytes=None, + MaxBGPMsgLengthTx=None, Md5Key=None, ModeOfBfdOperations=None, NumBgpLsId=None, @@ -4868,6 +4900,7 @@ def get_device_ids( - BgpLsEnableExtendedCommunity (str): optional regex of bgpLsEnableExtendedCommunity - BgpLsOverridePeerAsSetMode (str): optional regex of bgpLsOverridePeerAsSetMode - BgpUnnumbered (str): optional regex of bgpUnnumbered + - CapabilityExtendedMessage (str): optional regex of capabilityExtendedMessage - CapabilityIpV4Mdt (str): optional regex of capabilityIpV4Mdt - CapabilityIpV4Mpls (str): optional regex of capabilityIpV4Mpls - CapabilityIpV4MplsVpn (str): optional regex of capabilityIpV4MplsVpn @@ -4942,6 +4975,7 @@ def get_device_ids( - L3VPNEncapsulationType (str): optional regex of l3VPNEncapsulationType - LocalAs2Bytes (str): optional regex of localAs2Bytes - LocalAs4Bytes (str): optional regex of localAs4Bytes + - MaxBGPMsgLengthTx (str): optional regex of maxBGPMsgLengthTx - Md5Key (str): optional regex of md5Key - ModeOfBfdOperations (str): optional regex of modeOfBfdOperations - NumBgpLsId (str): optional regex of numBgpLsId diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpl3vpnrouteproperty_3b5e18e475abdb9b6f2bf410d51d886a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpl3vpnrouteproperty_3b5e18e475abdb9b6f2bf410d51d886a.py index e08a81937..6fab42b05 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpl3vpnrouteproperty_3b5e18e475abdb9b6f2bf410d51d886a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpl3vpnrouteproperty_3b5e18e475abdb9b6f2bf410d51d886a.py @@ -184,13 +184,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgplsextendedcommunitieslist_835ffabe7ce10fa0b2a04b0ca4ed54d9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgplsextendedcommunitieslist_65060f604681a40b0c7dab490b2d6c5d.py similarity index 89% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgplsextendedcommunitieslist_835ffabe7ce10fa0b2a04b0ca4ed54d9.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgplsextendedcommunitieslist_65060f604681a40b0c7dab490b2d6c5d.py index c4bf13b4b..bd02893a8 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgplsextendedcommunitieslist_835ffabe7ce10fa0b2a04b0ca4ed54d9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgplsextendedcommunitieslist_65060f604681a40b0c7dab490b2d6c5d.py @@ -44,6 +44,8 @@ class BgpLsExtendedCommunitiesList(Base): "ColorReservedBits": "colorReservedBits", "ColorValue": "colorValue", "Count": "count", + "CustomExtCommType": "customExtCommType", + "CustomExtCommValue": "customExtCommValue", "DescriptiveName": "descriptiveName", "Ip": "ip", "LinkBandwidth": "linkBandwidth", @@ -161,6 +163,34 @@ def Count(self): """ return self._get_attribute(self._SDM_ATT_MAP["Count"]) + @property + def CustomExtCommType(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If Custom Extended Community is selected from Extended Community Dropdown then this field is enabled for user input. You can put any value of length 2 bytes for the extended community attribute. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CustomExtCommType"]) + ) + + @property + def CustomExtCommValue(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If Custom Extended Community is selected from Extended Community Dropdown then this field is enabled for user input. You can put any value of length 6 bytes for the extended community attribute. Default value is set to 0. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CustomExtCommValue"]) + ) + @property def DescriptiveName(self): # type: () -> str @@ -333,6 +363,8 @@ def get_device_ids( ColorCOBits=None, ColorReservedBits=None, ColorValue=None, + CustomExtCommType=None, + CustomExtCommValue=None, Ip=None, LinkBandwidth=None, OpaqueData=None, @@ -353,6 +385,8 @@ def get_device_ids( - ColorCOBits (str): optional regex of colorCOBits - ColorReservedBits (str): optional regex of colorReservedBits - ColorValue (str): optional regex of colorValue + - CustomExtCommType (str): optional regex of customExtCommType + - CustomExtCommValue (str): optional regex of customExtCommValue - Ip (str): optional regex of ip - LinkBandwidth (str): optional regex of linkBandwidth - OpaqueData (str): optional regex of opaqueData diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpsrtepolicieslistv4_f2d756189af5037098439a3ddb4c82c5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpsrtepolicieslistv4_f2d756189af5037098439a3ddb4c82c5.py index fe321f9b8..71dd122b1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpsrtepolicieslistv4_f2d756189af5037098439a3ddb4c82c5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpsrtepolicieslistv4_f2d756189af5037098439a3ddb4c82c5.py @@ -149,13 +149,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpsrtepolicieslistv6_777d4342234c70b57248a06e0ef16746.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpsrtepolicieslistv6_777d4342234c70b57248a06e0ef16746.py index 41043e0f9..da40e9392 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpsrtepolicieslistv6_777d4342234c70b57248a06e0ef16746.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpsrtepolicieslistv6_777d4342234c70b57248a06e0ef16746.py @@ -149,13 +149,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6iprouteproperty_3bc5aff598784532c6b5ff0b601d2985.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6iprouteproperty_e31f5dc41e1565260f4ddeb2f61efe60.py similarity index 89% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6iprouteproperty_3bc5aff598784532c6b5ff0b601d2985.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6iprouteproperty_e31f5dc41e1565260f4ddeb2f61efe60.py index 91beedcad..e18da2c8e 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6iprouteproperty_3bc5aff598784532c6b5ff0b601d2985.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6iprouteproperty_e31f5dc41e1565260f4ddeb2f61efe60.py @@ -40,6 +40,7 @@ class BgpV6IPRouteProperty(Base): "OverridePeerAsSetMode": "OverridePeerAsSetMode", "Active": "active", "AddPathId": "addPathId", + "AdvSrv6SidInIgp": "advSrv6SidInIgp", "AdvertiseAsBGPLSPrefix": "advertiseAsBGPLSPrefix", "AdvertiseAsBgp3107": "advertiseAsBgp3107", "AdvertiseAsBgp3107Sr": "advertiseAsBgp3107Sr", @@ -49,6 +50,7 @@ class BgpV6IPRouteProperty(Base): "AggregatorAs": "aggregatorAs", "AggregatorId": "aggregatorId", "AggregatorIdMode": "aggregatorIdMode", + "ArgumentLength": "argumentLength", "AsNumSuffixRange": "asNumSuffixRange", "AsPathASString": "asPathASString", "AsPathPerRoute": "asPathPerRoute", @@ -59,6 +61,7 @@ class BgpV6IPRouteProperty(Base): "Delay": "delay", "DescriptiveName": "descriptiveName", "Downtime": "downtime", + "EnSrv6SIDAdvertiseOpInfo": "enSrv6SIDAdvertiseOpInfo", "EnableAddPath": "enableAddPath", "EnableAggregatorId": "enableAggregatorId", "EnableAigp": "enableAigp", @@ -77,15 +80,20 @@ class BgpV6IPRouteProperty(Base): "EnableOriginatorId": "enableOriginatorId", "EnableRandomAsPath": "enableRandomAsPath", "EnableSRGB": "enableSRGB", + "EnableSrv6Sid": "enableSrv6Sid", "EnableWeight": "enableWeight", "FlapFromRouteIndex": "flapFromRouteIndex", "FlapToRouteIndex": "flapToRouteIndex", + "FunctionLength": "functionLength", + "IncSrv6SidStructSsTlv": "incSrv6SidStructSsTlv", "IncrementMode": "incrementMode", "Ipv4NextHop": "ipv4NextHop", "Ipv6NextHop": "ipv6NextHop", "LabelEnd": "labelEnd", "LabelStart": "labelStart", "LabelStep": "labelStep", + "LocBlockLength": "locBlockLength", + "LocNodeLength": "locNodeLength", "LocalPreference": "localPreference", "MaxASNumPerSegment": "maxASNumPerSegment", "MaxNoOfASPathSegmentsPerRouteRange": "maxNoOfASPathSegmentsPerRouteRange", @@ -114,6 +122,16 @@ class BgpV6IPRouteProperty(Base): "SendMulticastWithProperSAFI": "sendMulticastWithProperSAFI", "SkipMulticast": "skipMulticast", "SpecialLabel": "specialLabel", + "Srv6EndPointBehavior": "srv6EndPointBehavior", + "Srv6SIDOptionalInformation": "srv6SIDOptionalInformation", + "Srv6SidFlags": "srv6SidFlags", + "Srv6SidLoc": "srv6SidLoc", + "Srv6SidLocLen": "srv6SidLocLen", + "Srv6SidLocMetric": "srv6SidLocMetric", + "Srv6SidReserved": "srv6SidReserved", + "Srv6SidReserved1": "srv6SidReserved1", + "Srv6SidReserved2": "srv6SidReserved2", + "Srv6SidStep": "srv6SidStep", "Uptime": "uptime", "UseTraditionalNlri": "useTraditionalNlri", "Weight": "weight", @@ -248,13 +266,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) @@ -444,6 +462,20 @@ def AddPathId(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["AddPathId"])) + @property + def AdvSrv6SidInIgp(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Advertise SRv6 SID Locator in IGP (ISIS). + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["AdvSrv6SidInIgp"]) + ) + @property def AdvertiseAsBGPLSPrefix(self): # type: () -> 'Multivalue' @@ -570,6 +602,20 @@ def AggregatorIdMode(self): self, self._get_attribute(self._SDM_ATT_MAP["AggregatorIdMode"]) ) + @property + def ArgumentLength(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Contains length of SRv6 SID argument in bits. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ArgumentLength"]) + ) + @property def AsNumSuffixRange(self): # type: () -> 'Multivalue' @@ -688,6 +734,20 @@ def Downtime(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Downtime"])) + @property + def EnSrv6SIDAdvertiseOpInfo(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable to advertise SRv6 SID Optional Information (Service Information sub-sub-TLV). + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EnSrv6SIDAdvertiseOpInfo"]) + ) + @property def EnableAddPath(self): # type: () -> 'Multivalue' @@ -928,6 +988,18 @@ def EnableSRGB(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["EnableSRGB"])) + @property + def EnableSrv6Sid(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable SRv6 SID with IP Route. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["EnableSrv6Sid"])) + @property def EnableWeight(self): # type: () -> 'Multivalue' @@ -968,6 +1040,34 @@ def FlapToRouteIndex(self): self, self._get_attribute(self._SDM_ATT_MAP["FlapToRouteIndex"]) ) + @property + def FunctionLength(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Contains length of SRv6 SID Function in bits. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["FunctionLength"]) + ) + + @property + def IncSrv6SidStructSsTlv(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable to include SRv6 SID Structure Sub-Sub TLV for SRv6 Service. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["IncSrv6SidStructSsTlv"]) + ) + @property def IncrementMode(self): # type: () -> 'Multivalue' @@ -1040,6 +1140,32 @@ def LabelStep(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LabelStep"])) + @property + def LocBlockLength(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Contains length of SRv6 SID locator Block in bits. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LocBlockLength"]) + ) + + @property + def LocNodeLength(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Contains length of SRv6 SID locator Node in bits. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LocNodeLength"])) + @property def LocalPreference(self): # type: () -> 'Multivalue' @@ -1425,6 +1551,138 @@ def SpecialLabel(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["SpecialLabel"])) + @property + def Srv6EndPointBehavior(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 Endpoint Behavior field value for all routes in this Route Range. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6EndPointBehavior"]) + ) + + @property + def Srv6SIDOptionalInformation(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID Optional Information field value (Service Information sub-sub-TLV) for all routes in this Route Range. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SIDOptionalInformation"]) + ) + + @property + def Srv6SidFlags(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID Flags field value for all route in this Route Range. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidFlags"])) + + @property + def Srv6SidLoc(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID. It consists of Locator, Func and Args. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidLoc"])) + + @property + def Srv6SidLocLen(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID Locator Length to be advertised in IGP. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidLocLen"])) + + @property + def Srv6SidLocMetric(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID Locator Metric for advertisement in IGP. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidLocMetric"]) + ) + + @property + def Srv6SidReserved(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID Reserved Value (SRv6 SID Service TLV Level). + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved"]) + ) + + @property + def Srv6SidReserved1(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID Reserved1 Field for Service Information sub-TLV. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved1"]) + ) + + @property + def Srv6SidReserved2(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): SRv6 SID Reserved2 Field for Service Information sub-TLV. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidReserved2"]) + ) + + @property + def Srv6SidStep(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Route Range SRv6 SID Step. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Srv6SidStep"])) + @property def Uptime(self): # type: () -> 'Multivalue' @@ -1976,11 +2234,13 @@ def get_device_ids( OverridePeerAsSetMode=None, Active=None, AddPathId=None, + AdvSrv6SidInIgp=None, AdvertiseAsBGPLSPrefix=None, AdvertiseNexthopAsV4=None, AggregatorAs=None, AggregatorId=None, AggregatorIdMode=None, + ArgumentLength=None, AsNumSuffixRange=None, AsPathPerRoute=None, AsRandomSeed=None, @@ -1988,6 +2248,7 @@ def get_device_ids( AsSetMode=None, Delay=None, Downtime=None, + EnSrv6SIDAdvertiseOpInfo=None, EnableAddPath=None, EnableAggregatorId=None, EnableAigp=None, @@ -2006,15 +2267,20 @@ def get_device_ids( EnableOriginatorId=None, EnableRandomAsPath=None, EnableSRGB=None, + EnableSrv6Sid=None, EnableWeight=None, FlapFromRouteIndex=None, FlapToRouteIndex=None, + FunctionLength=None, + IncSrv6SidStructSsTlv=None, IncrementMode=None, Ipv4NextHop=None, Ipv6NextHop=None, LabelEnd=None, LabelStart=None, LabelStep=None, + LocBlockLength=None, + LocNodeLength=None, LocalPreference=None, MaxASNumPerSegment=None, MaxNoOfASPathSegmentsPerRouteRange=None, @@ -2034,6 +2300,16 @@ def get_device_ids( SendMulticastWithProperSAFI=None, SkipMulticast=None, SpecialLabel=None, + Srv6EndPointBehavior=None, + Srv6SIDOptionalInformation=None, + Srv6SidFlags=None, + Srv6SidLoc=None, + Srv6SidLocLen=None, + Srv6SidLocMetric=None, + Srv6SidReserved=None, + Srv6SidReserved1=None, + Srv6SidReserved2=None, + Srv6SidStep=None, Uptime=None, UseTraditionalNlri=None, Weight=None, @@ -2048,11 +2324,13 @@ def get_device_ids( - OverridePeerAsSetMode (str): optional regex of OverridePeerAsSetMode - Active (str): optional regex of active - AddPathId (str): optional regex of addPathId + - AdvSrv6SidInIgp (str): optional regex of advSrv6SidInIgp - AdvertiseAsBGPLSPrefix (str): optional regex of advertiseAsBGPLSPrefix - AdvertiseNexthopAsV4 (str): optional regex of advertiseNexthopAsV4 - AggregatorAs (str): optional regex of aggregatorAs - AggregatorId (str): optional regex of aggregatorId - AggregatorIdMode (str): optional regex of aggregatorIdMode + - ArgumentLength (str): optional regex of argumentLength - AsNumSuffixRange (str): optional regex of asNumSuffixRange - AsPathPerRoute (str): optional regex of asPathPerRoute - AsRandomSeed (str): optional regex of asRandomSeed @@ -2060,6 +2338,7 @@ def get_device_ids( - AsSetMode (str): optional regex of asSetMode - Delay (str): optional regex of delay - Downtime (str): optional regex of downtime + - EnSrv6SIDAdvertiseOpInfo (str): optional regex of enSrv6SIDAdvertiseOpInfo - EnableAddPath (str): optional regex of enableAddPath - EnableAggregatorId (str): optional regex of enableAggregatorId - EnableAigp (str): optional regex of enableAigp @@ -2078,15 +2357,20 @@ def get_device_ids( - EnableOriginatorId (str): optional regex of enableOriginatorId - EnableRandomAsPath (str): optional regex of enableRandomAsPath - EnableSRGB (str): optional regex of enableSRGB + - EnableSrv6Sid (str): optional regex of enableSrv6Sid - EnableWeight (str): optional regex of enableWeight - FlapFromRouteIndex (str): optional regex of flapFromRouteIndex - FlapToRouteIndex (str): optional regex of flapToRouteIndex + - FunctionLength (str): optional regex of functionLength + - IncSrv6SidStructSsTlv (str): optional regex of incSrv6SidStructSsTlv - IncrementMode (str): optional regex of incrementMode - Ipv4NextHop (str): optional regex of ipv4NextHop - Ipv6NextHop (str): optional regex of ipv6NextHop - LabelEnd (str): optional regex of labelEnd - LabelStart (str): optional regex of labelStart - LabelStep (str): optional regex of labelStep + - LocBlockLength (str): optional regex of locBlockLength + - LocNodeLength (str): optional regex of locNodeLength - LocalPreference (str): optional regex of localPreference - MaxASNumPerSegment (str): optional regex of maxASNumPerSegment - MaxNoOfASPathSegmentsPerRouteRange (str): optional regex of maxNoOfASPathSegmentsPerRouteRange @@ -2106,6 +2390,16 @@ def get_device_ids( - SendMulticastWithProperSAFI (str): optional regex of sendMulticastWithProperSAFI - SkipMulticast (str): optional regex of skipMulticast - SpecialLabel (str): optional regex of specialLabel + - Srv6EndPointBehavior (str): optional regex of srv6EndPointBehavior + - Srv6SIDOptionalInformation (str): optional regex of srv6SIDOptionalInformation + - Srv6SidFlags (str): optional regex of srv6SidFlags + - Srv6SidLoc (str): optional regex of srv6SidLoc + - Srv6SidLocLen (str): optional regex of srv6SidLocLen + - Srv6SidLocMetric (str): optional regex of srv6SidLocMetric + - Srv6SidReserved (str): optional regex of srv6SidReserved + - Srv6SidReserved1 (str): optional regex of srv6SidReserved1 + - Srv6SidReserved2 (str): optional regex of srv6SidReserved2 + - Srv6SidStep (str): optional regex of srv6SidStep - Uptime (str): optional regex of uptime - UseTraditionalNlri (str): optional regex of useTraditionalNlri - Weight (str): optional regex of weight diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6l3vpnrouteproperty_15999adbfe8d61825751768ad5e0ddda.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6l3vpnrouteproperty_15999adbfe8d61825751768ad5e0ddda.py index c0039dd01..b4da94aa1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6l3vpnrouteproperty_15999adbfe8d61825751768ad5e0ddda.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6l3vpnrouteproperty_15999adbfe8d61825751768ad5e0ddda.py @@ -209,13 +209,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6vrf_4210da29fcbfb992a73dbc8ddd6c31ca.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6vrf_4210da29fcbfb992a73dbc8ddd6c31ca.py index bbe0bb9f0..5aff2f7ea 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6vrf_4210da29fcbfb992a73dbc8ddd6c31ca.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpv6vrf_4210da29fcbfb992a73dbc8ddd6c31ca.py @@ -233,7 +233,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -277,7 +277,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -452,7 +452,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -514,7 +514,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -524,7 +524,7 @@ def update( - NumRtInUmhImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -551,7 +551,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -561,7 +561,7 @@ def add( - NumRtInUmhImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -614,11 +614,11 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DutIpv6 (list(str)): DUT IP - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - LocalIpv6 (list(str)): Local IP - LocalRouterID (list(str)): Router ID @@ -631,7 +631,7 @@ def find( - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpvrf_0cb79569071cf4c1cb6a19d71168e407.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpvrf_0cb79569071cf4c1cb6a19d71168e407.py index 9c02401ce..7053137c2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpvrf_0cb79569071cf4c1cb6a19d71168e407.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bgpvrf_0cb79569071cf4c1cb6a19d71168e407.py @@ -233,7 +233,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -277,7 +277,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -452,7 +452,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -514,7 +514,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -524,7 +524,7 @@ def update( - NumRtInUmhImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -551,7 +551,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -561,7 +561,7 @@ def add( - NumRtInUmhImportRouteTargetList (number): Number of RTs in Import Route Target List(multiplier) - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -614,11 +614,11 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DutIpv4 (list(str)): DUT IP - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - ImportRtListSameAsExportRtList (bool): Import RT List Same As Export RT List - LocalIpv4 (list(str)): Local IP - LocalRouterID (list(str)): Router ID @@ -631,7 +631,7 @@ def find( - SameAsExportRT (bool): Same As Export RT Attribute - SameAsImportRT (bool): Same As Import RT Attribute - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bondedgre_09eda4ea678bfaf1026122797df45443.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bondedgre_09eda4ea678bfaf1026122797df45443.py index c75652898..e6d5dbb27 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bondedgre_09eda4ea678bfaf1026122797df45443.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/bondedgre_09eda4ea678bfaf1026122797df45443.py @@ -156,7 +156,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -222,7 +222,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -318,7 +318,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -389,10 +389,10 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TunnelType (str(dsl | lte)): Determines the Tunnel type to be used Raises @@ -414,10 +414,10 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TunnelType (str(dsl | lte)): Determines the Tunnel type to be used Returns @@ -467,17 +467,17 @@ def find( Args ---- - BSessionInfo (list(str[activeHello | bondingTunnel | configured | denied | diagEnd | dSLFail | dSLTunnel | established | establishing | helloPaused | idleHello | lTEFail | lTETunnel | overflowedToLTETunnel | overflowingToLTETunnel | partiallyConfigured | switchedToDSLTunnel | switchingToActiveHello | switchingToDSLTunnel | switchingToIdleHello | tearedDown | unconfigured | waitForLTE])): Current BondedGRE session state: Configured - The GRE session is in configured state. Unconfigured - The GRE session is in unconfigured state. Establishing - GRE Tunnel setup request message sent, waiting for Accept message from HAAP. Established - GRE Tunnel setup request has been accepted by the HAAP. Teared Down - The tunnel has been teared down by the HAAP. Denied (with error code) - GRE Tunnel setup request has been denied by the HAAP. Idle Hello - HG has entered in Idle Hello state. Active Hello - HG has entered in Active Hello state. Switching to Idle Hello - The tunnel is entering into Idle Hello state. Switching to Active Hello - The tunnel is entering into Active Hello state. Hello Paused - The tunnel has entered into Hello Paused state. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DhcpIp (list(str)): The discovered IPv4 addresses. - ErrorCode (list(number)): The HAAP uses the Error Code attribute to inform the HG of the error code. It depicts why the GRE Tunnel Setup Request is denied. The list of codes is as follows: 0: No Error. 1: The HAAP was not reachable over LTE during the GRE Tunnel Setup Request. 2: The HAAP was not reachable via DSL during the GRE Tunnel Setup Request. 3: The LTE GRE tunnel to the HAAP failed. 4: The DSL GRE tunnel to the HAAP failed. 5: The given DSL User ID is not allowed to use the GRE Tunnel Bonding service. 6: The given User Alias / User ID (Globally Unique Identifier (GUID) is not allowed to use the GRE Tunnel Bonding service. 7: The LTE and DSL User IDs do not match. 8: The HAAP denied the GRE Tunnel Setup Request because a bonding session with the same User ID already exists. 9: The HAAP denied the GRE Tunnel Setup Request because the user's CIN is not permitted. 10: The HAAP terminated a GRE Tunnel Bonding session for maintenance reasons. 11: There was a communication error between the HAAP and the management system during the LTE GRE Tunnel Setup Request. 12: There was a communication error between the HAAP and the management system during the DSL GRE Tunnel Setup Request. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - HomeGatewayInfo (list(str[activeHello | bondingTunnel | configured | denied | diagEnd | dSLFail | dSLTunnel | established | establishing | helloPaused | idleHello | lTEFail | lTETunnel | overflowedToLTETunnel | overflowingToLTETunnel | partiallyConfigured | switchedToDSLTunnel | switchingToActiveHello | switchingToDSLTunnel | switchingToIdleHello | tearedDown | unconfigured | waitForLTE])): Current Home Gateway session state: Unconfigured - The HG is in unconfigured state. Configured - The HG is in configured state. Partially Configured - Only one tunnel (DSL/LTE) is configured in the HG. Diagnostic Start: Bonding Tunnel - HG has entered in diagnostic mode to test the performance of the entire bonding tunnel. Diagnostic Start: DSL Tunnel - HG has entered in diagnostic mode to test the performance of the DSL bonding tunnel. Diagnostic Start: LTE Tunnel - HG has entered in diagnostic mode to test the performance of the LTE tunnel. Diagnostic End - End of diagnostic operation. DSL Link Failure - DSL Link has failed. LTE Link Failure - LTE Link has failed. Switching to DSL Tunnel - HG uses this attribute to inform the HAAP to use the DSL GRE tunnel only. Switching to DSL Tunnel (Acknowledged) - HAAP has sent acknowledgment to the notification Switching to DSL Tunnel sent by HG. Overflowing to LTE Tunnel - HG uses this attribute to inform the HAAP that the LTE GRE tunnel can be used again. Overflowing to LTE Tunnel (Acknowledged) - HAAP has sent acknowledgment to the notification Overflowing to LTE Tunnel sent by HG. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TunnelType (str(dsl | lte)): Determines the Tunnel type to be used diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cfmbridge_0d1f83a1e9fee8ee7d444b2a33a0e03b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cfmbridge_0d1f83a1e9fee8ee7d444b2a33a0e03b.py index 03623fe86..0fac3c664 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cfmbridge_0d1f83a1e9fee8ee7d444b2a33a0e03b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cfmbridge_0d1f83a1e9fee8ee7d444b2a33a0e03b.py @@ -242,7 +242,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -305,7 +305,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -394,7 +394,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -438,11 +438,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfMPs (number): Number of MPs - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -463,11 +463,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfMPs (number): Number of MPs - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -511,15 +511,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfMPs (number): Number of MPs - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cmacproperties_2f1fa60d20894ec3fe809175e33e024f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cmacproperties_2f1fa60d20894ec3fe809175e33e024f.py index 35f66f5ab..3533e1b92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cmacproperties_2f1fa60d20894ec3fe809175e33e024f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cmacproperties_2f1fa60d20894ec3fe809175e33e024f.py @@ -199,13 +199,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/connector_d0d942810e4010add7642d3914a1f29b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/connector_d0d942810e4010add7642d3914a1f29b.py index fac465e20..5134845b4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/connector_d0d942810e4010add7642d3914a1f29b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/connector_d0d942810e4010add7642d3914a1f29b.py @@ -52,7 +52,7 @@ def ConnectedTo(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): Scenario element this connector is connecting to + - str(None | /api/v1/sessions/1/ixnetwork/topology): Scenario element this connector is connecting to """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedTo"]) @@ -87,7 +87,7 @@ def update(self, ConnectedTo=None): Args ---- - - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Scenario element this connector is connecting to + - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology)): Scenario element this connector is connecting to Raises ------ @@ -101,7 +101,7 @@ def add(self, ConnectedTo=None): Args ---- - - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Scenario element this connector is connecting to + - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology)): Scenario element this connector is connecting to Returns ------- @@ -133,7 +133,7 @@ def find(self, ConnectedTo=None, Count=None, PropagateMultiplier=None): Args ---- - - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Scenario element this connector is connecting to + - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology)): Scenario element this connector is connecting to - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - PropagateMultiplier (bool): The Connector will propagate the multiplicity of destination back to the source and its parent NetworkElementSet diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cuspcp_1ab532ec5eaeec746678378f2443dafe.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cuspcp_1ab532ec5eaeec746678378f2443dafe.py index 582ab47aa..2db5d1588 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cuspcp_1ab532ec5eaeec746678378f2443dafe.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cuspcp_1ab532ec5eaeec746678378f2443dafe.py @@ -104,7 +104,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -150,7 +150,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -210,7 +210,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -247,10 +247,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -264,10 +264,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -311,15 +311,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalIp (list(str)): Local IP - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cuspup_a452407df164d641b27491106f32c6de.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cuspup_a452407df164d641b27491106f32c6de.py index e11036806..3ca77cb90 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cuspup_a452407df164d641b27491106f32c6de.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/cuspup_a452407df164d641b27491106f32c6de.py @@ -152,7 +152,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -248,7 +248,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -422,7 +422,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -503,12 +503,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfBoards (number): Number of boards present in the UP. - NumberOfIPv4AddressPools (number): Number of IPv4 Address Pools used for CGN. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -530,12 +530,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfBoards (number): Number of boards present in the UP. - NumberOfIPv4AddressPools (number): Number of IPv4 Address Pools used for CGN. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -580,16 +580,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfBoards (number): Number of boards present in the UP. - NumberOfIPv4AddressPools (number): Number of IPv4 Address Pools used for CGN. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/devicegroup_fe4647b311377ec16edf5dcfe93dca09.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/devicegroup_fe4647b311377ec16edf5dcfe93dca09.py index 2932324de..5d21cf1aa 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/devicegroup_fe4647b311377ec16edf5dcfe93dca09.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/devicegroup_fe4647b311377ec16edf5dcfe93dca09.py @@ -425,13 +425,13 @@ def NetworkTopology(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.networktopology_657b9792feb17675a34c183046aa9924.NetworkTopology): An instance of the NetworkTopology class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.networktopology_8aeb1c02ce88d0f4f656681df998fe83.NetworkTopology): An instance of the NetworkTopology class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.networktopology_657b9792feb17675a34c183046aa9924 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.networktopology_8aeb1c02ce88d0f4f656681df998fe83 import ( NetworkTopology, ) @@ -577,7 +577,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -687,7 +687,7 @@ def find( ---- - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of device instances per parent device instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. @@ -764,16 +764,16 @@ def CopyPaste(self, *args, **kwargs): copyPaste(Arg2=href, async_operation=bool)list ---------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork//.../*)): The destination node below which the copied node will be pasted + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/)): The destination node below which the copied node will be pasted - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns list(str[None | /api/v1/sessions/1/ixnetwork//.../*]): The newly copied node. + - Returns list(str[None | /api/v1/sessions/1/ixnetwork/]): The newly copied node. copyPaste(Arg2=href, Arg3=enum, async_operation=bool)list --------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork//.../*)): The destination node below which the copied node will be pasted + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/)): The destination node below which the copied node will be pasted - Arg3 (str(regular | unique)): Type of Paste, regular or Unique. Unique generates unique Ethernet MAC address and Ipv4 address on Paste. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns list(str[None | /api/v1/sessions/1/ixnetwork//.../*]): The newly copied node. + - Returns list(str[None | /api/v1/sessions/1/ixnetwork/]): The newly copied node. Raises ------ diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4client_51940f357e701f382297f94c99af7a22.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4client_51940f357e701f382297f94c99af7a22.py index 668052715..500e38bf7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4client_51940f357e701f382297f94c99af7a22.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4client_51940f357e701f382297f94c99af7a22.py @@ -101,13 +101,13 @@ def BgpIpv4Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a.BgpIpv4Peer): An instance of the BgpIpv4Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841.BgpIpv4Peer): An instance of the BgpIpv4Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841 import ( BgpIpv4Peer, ) @@ -442,7 +442,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -590,7 +590,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -674,7 +674,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -725,10 +725,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -742,10 +742,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -792,18 +792,18 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DiscoveredAddresses (list(str)): The discovered IPv4 addresses. - DiscoveredGateways (list(str)): The discovered gateway IPv4 addresses. - DiscoveredPrefix (list(number)): The discovered IPv4 prefix length. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[arpFailed | discoverTimeout | excessiveTlvs | none | rebindTimeout | relayDown | renewTimeout | requestTimeout])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4relayagent_f4cc56bb53d1903e9ec0dfc563d37d9c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4relayagent_f4cc56bb53d1903e9ec0dfc563d37d9c.py index f42745c2d..f7217c4a9 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4relayagent_f4cc56bb53d1903e9ec0dfc563d37d9c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4relayagent_f4cc56bb53d1903e9ec0dfc563d37d9c.py @@ -93,7 +93,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -142,7 +142,7 @@ def Dhcp4RelayAgentGlobalAndPortData(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): Global and Port Settings + - str(None | /api/v1/sessions/1/ixnetwork/topology): Global and Port Settings """ return self._get_attribute( self._SDM_ATT_MAP["Dhcp4RelayAgentGlobalAndPortData"] @@ -167,7 +167,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -227,7 +227,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -264,10 +264,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -281,10 +281,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -329,16 +329,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Dhcp4RelayAgentGlobalAndPortData (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Global and Port Settings - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Dhcp4RelayAgentGlobalAndPortData (str(None | /api/v1/sessions/1/ixnetwork/topology)): Global and Port Settings + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[excessiveTlvs | ipDown | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4server_a0d174266d4c9a35774364ccc4dfccb3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4server_a0d174266d4c9a35774364ccc4dfccb3.py index 06debbc1b..91b36f756 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4server_a0d174266d4c9a35774364ccc4dfccb3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv4server_a0d174266d4c9a35774364ccc4dfccb3.py @@ -115,7 +115,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -163,7 +163,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -240,7 +240,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -324,11 +324,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PoolCount (number): number of DHCP pools a single server has - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -349,11 +349,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PoolCount (number): number of DHCP pools a single server has - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -397,15 +397,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PoolCount (number): number of DHCP pools a single server has - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6client_355391ba11ab3c1555c827e2e4ac3c4c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6client_355391ba11ab3c1555c827e2e4ac3c4c.py index 95aac717f..e6102f3b7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6client_355391ba11ab3c1555c827e2e4ac3c4c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6client_355391ba11ab3c1555c827e2e4ac3c4c.py @@ -115,13 +115,13 @@ def BgpIpv6Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b.BgpIpv6Peer): An instance of the BgpIpv6Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872.BgpIpv6Peer): An instance of the BgpIpv6Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872 import ( BgpIpv6Peer, ) @@ -646,7 +646,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -919,7 +919,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1026,7 +1026,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1099,12 +1099,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableStateless (bool): Enables DHCP stateless. - MaxNoPerClient (number): Maximum number of Addresses/Prefixes accepted by a Client in a negotiation. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1126,12 +1126,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableStateless (bool): Enables DHCP stateless. - MaxNoPerClient (number): Maximum number of Addresses/Prefixes accepted by a Client in a negotiation. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1185,7 +1185,7 @@ def find( Args ---- - ComputedIapdAddresses (list(str)): The computed IPv6 addresses. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DiscoveredAddresses (list(str)): The discovered IPv6 addresses. @@ -1193,7 +1193,7 @@ def find( - DiscoveredPrefix (list(str)): The discovered IPv6 prefix. - DiscoveredPrefixLength (list(number)): The length of the discovered IPv6 prefix. - EnableStateless (bool): Enables DHCP stateless. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - MaxNoPerClient (number): Maximum number of Addresses/Prefixes accepted by a Client in a negotiation. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -1201,7 +1201,7 @@ def find( - NoOfPrefixes (list(number)): Number of Negotiated Addresses. - SessionInfo (list(str[duidNak | excessiveTlvs | noAddrsAvail | noAddrsBelow | none | noPrefixAvail | nsFailed | partiallyNegotiated | rebindTimeout | relayDown | renewTimeout | requestTimeout | solicitTimeout])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6relayagent_98152227df750678a31eb6776380facc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6relayagent_98152227df750678a31eb6776380facc.py index 95cf3872a..8817e7bd0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6relayagent_98152227df750678a31eb6776380facc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6relayagent_98152227df750678a31eb6776380facc.py @@ -118,7 +118,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -167,7 +167,7 @@ def Dhcp6RelayAgentGlobalAndPortData(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): Global and Port Settings + - str(None | /api/v1/sessions/1/ixnetwork/topology): Global and Port Settings """ return self._get_attribute( self._SDM_ATT_MAP["Dhcp6RelayAgentGlobalAndPortData"] @@ -192,7 +192,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -202,7 +202,7 @@ def LightweightDhcp6RelayAgentGlobalAndPortData(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): Global and Port Settings + - str(None | /api/v1/sessions/1/ixnetwork/topology): Global and Port Settings """ return self._get_attribute( self._SDM_ATT_MAP["LightweightDhcp6RelayAgentGlobalAndPortData"] @@ -278,7 +278,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -315,10 +315,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -332,10 +332,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -381,17 +381,17 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Dhcp6RelayAgentGlobalAndPortData (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Global and Port Settings - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred - - LightweightDhcp6RelayAgentGlobalAndPortData (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Global and Port Settings + - Dhcp6RelayAgentGlobalAndPortData (str(None | /api/v1/sessions/1/ixnetwork/topology)): Global and Port Settings + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred + - LightweightDhcp6RelayAgentGlobalAndPortData (str(None | /api/v1/sessions/1/ixnetwork/topology)): Global and Port Settings - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[excessiveTlvs | ipDown | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6server_df745f3926c8653c96b69175854d0c80.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6server_df745f3926c8653c96b69175854d0c80.py index 3dfb2441f..fa4db7b8d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6server_df745f3926c8653c96b69175854d0c80.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dhcpv6server_df745f3926c8653c96b69175854d0c80.py @@ -117,7 +117,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -163,7 +163,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -276,7 +276,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -348,11 +348,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PoolCount (number): number of DHCP pools a single server has - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -373,11 +373,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PoolCount (number): number of DHCP pools a single server has - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -422,16 +422,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PoolCount (number): number of DHCP pools a single server has - SessionInfo (list(str[excessiveTlvs | noAddrsBelow | nonDisjointPools | none | notOneReservedPool | notSameIAType])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dotonex_3c5f4866d22ca0e44e5ea4b7ef5bacca.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dotonex_3c5f4866d22ca0e44e5ea4b7ef5bacca.py index 0d7a02380..95e98a75b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dotonex_3c5f4866d22ca0e44e5ea4b7ef5bacca.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/dotonex_3c5f4866d22ca0e44e5ea4b7ef5bacca.py @@ -254,13 +254,13 @@ def Ipv6(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390.Ipv6): An instance of the Ipv6 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc.Ipv6): An instance of the Ipv6 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc import ( Ipv6, ) @@ -554,13 +554,13 @@ def Mka(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871.Mka): An instance of the Mka class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab.Mka): An instance of the Mka class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab import ( Mka, ) @@ -634,13 +634,13 @@ def Pppoxclient(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxclient_d7a99a629d894d9e4fc7eae719c12528.Pppoxclient): An instance of the Pppoxclient class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxclient_f43b198156c11196dbbd8c4dbee2af9d.Pppoxclient): An instance of the Pppoxclient class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxclient_d7a99a629d894d9e4fc7eae719c12528 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxclient_f43b198156c11196dbbd8c4dbee2af9d import ( Pppoxclient, ) @@ -654,13 +654,13 @@ def Pppoxserver(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_6001eb455946b79aa809976e25c5d004.Pppoxserver): An instance of the Pppoxserver class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_622ad1c6d961bb8e246b079c72242bfa.Pppoxserver): An instance of the Pppoxserver class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_6001eb455946b79aa809976e25c5d004 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_622ad1c6d961bb8e246b079c72242bfa import ( Pppoxserver, ) @@ -674,13 +674,13 @@ def Ptp(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_0fccf1fcc99303d2707e822de949037f.Ptp): An instance of the Ptp class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_24f2907f5a685b611f57469838b21337.Ptp): An instance of the Ptp class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_0fccf1fcc99303d2707e822de949037f import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_24f2907f5a685b611f57469838b21337 import ( Ptp, ) @@ -805,7 +805,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -851,7 +851,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1003,7 +1003,7 @@ def ParentEth(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): + - str(None | /api/v1/sessions/1/ixnetwork/topology): """ return self._get_attribute(self._SDM_ATT_MAP["ParentEth"]) @@ -1102,7 +1102,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1206,11 +1206,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - ParentEth (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - ParentEth (str(None | /api/v1/sessions/1/ixnetwork/topology)): + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1231,11 +1231,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - ParentEth (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - ParentEth (str(None | /api/v1/sessions/1/ixnetwork/topology)): + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1280,16 +1280,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - ParentEth (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): + - ParentEth (str(None | /api/v1/sessions/1/ixnetwork/topology)): - SessionInfo (list(str[acquired | authenticated | authenticating | configured | connecting | disconnected | eapFailure | forceAuth | forceUnAuth | genFailure | held | initFailure | invalidFailure | loadFailure | logoff | restart | unconfigured])): Current 802.1x session state: Log Off - Supplicant has been sent EAPOL-Logoff message. Stopped - Supplicant disconnected succesfully. Authenticating - Supplicant is being authenticated. but negotiation didn't complete yet. Held - Supplicant ignores and discards all EAPOL packets. Authenticated - Authenticator has successfully authenticated the Supplicant. Restart - Supplicant is entered Restart state. Force Authentication - This state is entered because DUT's portControl is set to force-authorized. Force UnAuthentication - This state is entered because DUT's portControl is set to force-unauthorized. Unconfigured - Supplicant Unconfigured state. Configured - Supplicant initilize state. Authentication Failure - Supplicant's authentication failed. CA Cert Load Failed - Supplicant's unable to load CA certificate. Failed To Load Certificate/Key - Failed to load certificate or certificate key. Invalid EAP - Invalid EAP. Generic EAP Failure - Generic EAP Failure. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ducarrier_153ae93d502f0581e2ae35d9f51bca07.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ducarrier_153ae93d502f0581e2ae35d9f51bca07.py new file mode 100644 index 000000000..5e00f38fe --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ducarrier_153ae93d502f0581e2ae35d9f51bca07.py @@ -0,0 +1,553 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class DuCarrier(Base): + """Carrier configuration of O-DU. + The DuCarrier class encapsulates a required duCarrier resource which will be retrieved from the server every time the property is accessed. + """ + + __slots__ = () + _SDM_NAME = "duCarrier" + _SDM_ATT_MAP = { + "Active": "active", + "BandSectorId": "bandSectorId", + "CarrierBw": "carrierBw", + "CcId": "ccId", + "Count": "count", + "DescriptiveName": "descriptiveName", + "DuPortId": "duPortId", + "IqBitwidth": "iqBitwidth", + "IqCompMethod": "iqCompMethod", + "Name": "name", + "Numerology": "numerology", + "PrbCount": "prbCount", + "RuPortId": "ruPortId", + "SlotFormat": "slotFormat", + "Symbol0": "symbol0", + "Symbol1": "symbol1", + "Symbol10": "symbol10", + "Symbol11": "symbol11", + "Symbol12": "symbol12", + "Symbol13": "symbol13", + "Symbol2": "symbol2", + "Symbol3": "symbol3", + "Symbol4": "symbol4", + "Symbol5": "symbol5", + "Symbol6": "symbol6", + "Symbol7": "symbol7", + "Symbol8": "symbol8", + "Symbol9": "symbol9", + "UdCompHeaderInUPlane": "udCompHeaderInUPlane", + } + _SDM_ENUM_MAP = {} + + def __init__(self, parent, list_op=False): + super(DuCarrier, self).__init__(parent, list_op) + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def BandSectorId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Band Sector ID. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["BandSectorId"])) + + @property + def CarrierBw(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Bandwidth of the carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["CarrierBw"])) + + @property + def CcId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): CC ID. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["CcId"])) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def DuPortId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): DU Port ID. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["DuPortId"])) + + @property + def IqBitwidth(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Depends on the selected compression mthod No compression - represents the bitwidth of each uncompressed I and Q value. Block floating point - represents the bitwidth of each I and Q mantissa value. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IqBitwidth"])) + + @property + def IqCompMethod(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): IQ Compression Method. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IqCompMethod"])) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + @property + def Numerology(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Number which is used in the formula to calculate sub-carrier spacing. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Numerology"])) + + @property + def PrbCount(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Number of PRBs(Physical Resource Blocks). + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["PrbCount"])) + + @property + def RuPortId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): RU Port ID. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RuPortId"])) + + @property + def SlotFormat(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Configuration of the slot. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["SlotFormat"])) + + @property + def Symbol0(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 0 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol0"])) + + @property + def Symbol1(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 1 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol1"])) + + @property + def Symbol10(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 10 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol10"])) + + @property + def Symbol11(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 11 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol11"])) + + @property + def Symbol12(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 12 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol12"])) + + @property + def Symbol13(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 13 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol13"])) + + @property + def Symbol2(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 2 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol2"])) + + @property + def Symbol3(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 3 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol3"])) + + @property + def Symbol4(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 4 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol4"])) + + @property + def Symbol5(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 5 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol5"])) + + @property + def Symbol6(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 6 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol6"])) + + @property + def Symbol7(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 7 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol7"])) + + @property + def Symbol8(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 8 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol8"])) + + @property + def Symbol9(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 9 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol9"])) + + @property + def UdCompHeaderInUPlane(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): udCompHeader in U-plane + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["UdCompHeaderInUPlane"]) + ) + + def update(self, Name=None): + # type: (str) -> DuCarrier + """Updates duCarrier resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def find(self, Count=None, DescriptiveName=None, Name=None): + # type: (int, str, str) -> DuCarrier + """Finds and retrieves duCarrier resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve duCarrier resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all duCarrier resources from the server. + + Args + ---- + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Returns + ------- + - self: This instance with matching duCarrier resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of duCarrier data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the duCarrier resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def get_device_ids( + self, + PortNames=None, + Active=None, + BandSectorId=None, + CarrierBw=None, + CcId=None, + DuPortId=None, + IqBitwidth=None, + IqCompMethod=None, + Numerology=None, + PrbCount=None, + RuPortId=None, + SlotFormat=None, + Symbol0=None, + Symbol1=None, + Symbol10=None, + Symbol11=None, + Symbol12=None, + Symbol13=None, + Symbol2=None, + Symbol3=None, + Symbol4=None, + Symbol5=None, + Symbol6=None, + Symbol7=None, + Symbol8=None, + Symbol9=None, + UdCompHeaderInUPlane=None, + ): + """Base class infrastructure that gets a list of duCarrier device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + - BandSectorId (str): optional regex of bandSectorId + - CarrierBw (str): optional regex of carrierBw + - CcId (str): optional regex of ccId + - DuPortId (str): optional regex of duPortId + - IqBitwidth (str): optional regex of iqBitwidth + - IqCompMethod (str): optional regex of iqCompMethod + - Numerology (str): optional regex of numerology + - PrbCount (str): optional regex of prbCount + - RuPortId (str): optional regex of ruPortId + - SlotFormat (str): optional regex of slotFormat + - Symbol0 (str): optional regex of symbol0 + - Symbol1 (str): optional regex of symbol1 + - Symbol10 (str): optional regex of symbol10 + - Symbol11 (str): optional regex of symbol11 + - Symbol12 (str): optional regex of symbol12 + - Symbol13 (str): optional regex of symbol13 + - Symbol2 (str): optional regex of symbol2 + - Symbol3 (str): optional regex of symbol3 + - Symbol4 (str): optional regex of symbol4 + - Symbol5 (str): optional regex of symbol5 + - Symbol6 (str): optional regex of symbol6 + - Symbol7 (str): optional regex of symbol7 + - Symbol8 (str): optional regex of symbol8 + - Symbol9 (str): optional regex of symbol9 + - UdCompHeaderInUPlane (str): optional regex of udCompHeaderInUPlane + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ducplane_84f46276a04c4895c6fe4e96027e1f05.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ducplane_84f46276a04c4895c6fe4e96027e1f05.py new file mode 100644 index 000000000..d4dc23cb2 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ducplane_84f46276a04c4895c6fe4e96027e1f05.py @@ -0,0 +1,212 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class DuCPlane(Base): + """ORAN DU C Plane for traffic wizard. + The DuCPlane class encapsulates a required duCPlane resource which will be retrieved from the server every time the property is accessed. + """ + + __slots__ = () + _SDM_NAME = "duCPlane" + _SDM_ATT_MAP = { + "Active": "active", + "Count": "count", + "DescriptiveName": "descriptiveName", + "Name": "name", + } + _SDM_ENUM_MAP = {} + + def __init__(self, parent, list_op=False): + super(DuCPlane, self).__init__(parent, list_op) + + @property + def Connector(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.connector_d0d942810e4010add7642d3914a1f29b.Connector): An instance of the Connector class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.connector_d0d942810e4010add7642d3914a1f29b import ( + Connector, + ) + + if len(self._object_properties) > 0: + if self._properties.get("Connector", None) is not None: + return self._properties.get("Connector") + return Connector(self) + + @property + def Tag(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.tag_e30f24de79247381d4dfd423b2f6986d.Tag): An instance of the Tag class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.tag_e30f24de79247381d4dfd423b2f6986d import ( + Tag, + ) + + if len(self._object_properties) > 0: + if self._properties.get("Tag", None) is not None: + return self._properties.get("Tag") + return Tag(self) + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + def update(self, Name=None): + # type: (str) -> DuCPlane + """Updates duCPlane resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def find(self, Count=None, DescriptiveName=None, Name=None): + # type: (int, str, str) -> DuCPlane + """Finds and retrieves duCPlane resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve duCPlane resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all duCPlane resources from the server. + + Args + ---- + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Returns + ------- + - self: This instance with matching duCPlane resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of duCPlane data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the duCPlane resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def get_device_ids(self, PortNames=None, Active=None): + """Base class infrastructure that gets a list of duCPlane device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ducuplane_552b538c8627003544bf2ab434c809ef.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ducuplane_552b538c8627003544bf2ab434c809ef.py new file mode 100644 index 000000000..e284a3868 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ducuplane_552b538c8627003544bf2ab434c809ef.py @@ -0,0 +1,192 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class DuCUPlane(Base): + """ORAN DU CU-Plane for traffic destination endpoint. + The DuCUPlane class encapsulates a required duCUPlane resource which will be retrieved from the server every time the property is accessed. + """ + + __slots__ = () + _SDM_NAME = "duCUPlane" + _SDM_ATT_MAP = { + "Active": "active", + "Count": "count", + "DescriptiveName": "descriptiveName", + "Name": "name", + } + _SDM_ENUM_MAP = {} + + def __init__(self, parent, list_op=False): + super(DuCUPlane, self).__init__(parent, list_op) + + @property + def Tag(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.tag_e30f24de79247381d4dfd423b2f6986d.Tag): An instance of the Tag class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.tag_e30f24de79247381d4dfd423b2f6986d import ( + Tag, + ) + + if len(self._object_properties) > 0: + if self._properties.get("Tag", None) is not None: + return self._properties.get("Tag") + return Tag(self) + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + def update(self, Name=None): + # type: (str) -> DuCUPlane + """Updates duCUPlane resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def find(self, Count=None, DescriptiveName=None, Name=None): + # type: (int, str, str) -> DuCUPlane + """Finds and retrieves duCUPlane resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve duCUPlane resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all duCUPlane resources from the server. + + Args + ---- + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Returns + ------- + - self: This instance with matching duCUPlane resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of duCUPlane data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the duCUPlane resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def get_device_ids(self, PortNames=None, Active=None): + """Base class infrastructure that gets a list of duCUPlane device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/duuplane_c9477b2ed619d1459be1f2c472176a7e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/duuplane_c9477b2ed619d1459be1f2c472176a7e.py new file mode 100644 index 000000000..dae50d166 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/duuplane_c9477b2ed619d1459be1f2c472176a7e.py @@ -0,0 +1,212 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class DuUPlane(Base): + """ORAN DU U Plane for traffic wizard. + The DuUPlane class encapsulates a required duUPlane resource which will be retrieved from the server every time the property is accessed. + """ + + __slots__ = () + _SDM_NAME = "duUPlane" + _SDM_ATT_MAP = { + "Active": "active", + "Count": "count", + "DescriptiveName": "descriptiveName", + "Name": "name", + } + _SDM_ENUM_MAP = {} + + def __init__(self, parent, list_op=False): + super(DuUPlane, self).__init__(parent, list_op) + + @property + def Connector(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.connector_d0d942810e4010add7642d3914a1f29b.Connector): An instance of the Connector class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.connector_d0d942810e4010add7642d3914a1f29b import ( + Connector, + ) + + if len(self._object_properties) > 0: + if self._properties.get("Connector", None) is not None: + return self._properties.get("Connector") + return Connector(self) + + @property + def Tag(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.tag_e30f24de79247381d4dfd423b2f6986d.Tag): An instance of the Tag class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.tag_e30f24de79247381d4dfd423b2f6986d import ( + Tag, + ) + + if len(self._object_properties) > 0: + if self._properties.get("Tag", None) is not None: + return self._properties.get("Tag") + return Tag(self) + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + def update(self, Name=None): + # type: (str) -> DuUPlane + """Updates duUPlane resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def find(self, Count=None, DescriptiveName=None, Name=None): + # type: (int, str, str) -> DuUPlane + """Finds and retrieves duUPlane resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve duUPlane resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all duUPlane resources from the server. + + Args + ---- + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Returns + ------- + - self: This instance with matching duUPlane resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of duUPlane data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the duUPlane resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def get_device_ids(self, PortNames=None, Active=None): + """Base class infrastructure that gets a list of duUPlane device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ecprire_51f1030cbafd2e567d3b517032a1b011.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ecprire_51f1030cbafd2e567d3b517032a1b011.py index a4a918ef3..194df5495 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ecprire_51f1030cbafd2e567d3b517032a1b011.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ecprire_51f1030cbafd2e567d3b517032a1b011.py @@ -136,6 +136,46 @@ def ECpriFaultSubObjectsList(self): return self._properties.get("ECpriFaultSubObjectsList") return ECpriFaultSubObjectsList(self) + @property + def OranDU(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.orandu_1cf7f03fca313795b6ed7e94b499b186.OranDU): An instance of the OranDU class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.orandu_1cf7f03fca313795b6ed7e94b499b186 import ( + OranDU, + ) + + if len(self._object_properties) > 0: + if self._properties.get("OranDU", None) is not None: + return self._properties.get("OranDU") + return OranDU(self) + + @property + def OranRU(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.oranru_38317a0c7fd50491419113310eba9bb0.OranRU): An instance of the OranRU class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.oranru_38317a0c7fd50491419113310eba9bb0 import ( + OranRU, + ) + + if len(self._object_properties) > 0: + if self._properties.get("OranRU", None) is not None: + return self._properties.get("OranRU") + return OranRU(self) + @property def ActionType(self): # type: () -> 'Multivalue' @@ -192,7 +232,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -266,7 +306,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -510,7 +550,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -605,12 +645,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - MessageType (str(realTimeControlData | remoteMemoryAccess | onewayDelayMeasurement | remoteReset | eventIndication)): Message Type - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfFaultSubObjects (number): Number Of Fault or Notify. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -632,12 +672,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - MessageType (str(realTimeControlData | remoteMemoryAccess | onewayDelayMeasurement | remoteReset | eventIndication)): Message Type - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfFaultSubObjects (number): Number Of Fault or Notify. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -682,16 +722,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - MessageType (str(realTimeControlData | remoteMemoryAccess | onewayDelayMeasurement | remoteReset | eventIndication)): Message Type - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfFaultSubObjects (number): Number Of Fault or Notify. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ecprirec_129f1d43f285a4f806ade4e0df814255.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ecprirec_129f1d43f285a4f806ade4e0df814255.py index 0442352b8..bf962681f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ecprirec_129f1d43f285a4f806ade4e0df814255.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ecprirec_129f1d43f285a4f806ade4e0df814255.py @@ -136,6 +136,46 @@ def ECpriFaultSubObjectsList(self): return self._properties.get("ECpriFaultSubObjectsList") return ECpriFaultSubObjectsList(self) + @property + def OranDU(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.orandu_1cf7f03fca313795b6ed7e94b499b186.OranDU): An instance of the OranDU class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.orandu_1cf7f03fca313795b6ed7e94b499b186 import ( + OranDU, + ) + + if len(self._object_properties) > 0: + if self._properties.get("OranDU", None) is not None: + return self._properties.get("OranDU") + return OranDU(self) + + @property + def OranRU(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.oranru_38317a0c7fd50491419113310eba9bb0.OranRU): An instance of the OranRU class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.oranru_38317a0c7fd50491419113310eba9bb0 import ( + OranRU, + ) + + if len(self._object_properties) > 0: + if self._properties.get("OranRU", None) is not None: + return self._properties.get("OranRU") + return OranRU(self) + @property def ActionType(self): # type: () -> 'Multivalue' @@ -192,7 +232,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -266,7 +306,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -510,7 +550,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -605,12 +645,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - MessageType (str(realTimeControlData | remoteMemoryAccess | onewayDelayMeasurement | remoteReset | eventIndication)): Message Type - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfFaultSubObjects (number): Number Of Fault or Notify. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -632,12 +672,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - MessageType (str(realTimeControlData | remoteMemoryAccess | onewayDelayMeasurement | remoteReset | eventIndication)): Message Type - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfFaultSubObjects (number): Number Of Fault or Notify. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -682,16 +722,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - MessageType (str(realTimeControlData | remoteMemoryAccess | onewayDelayMeasurement | remoteReset | eventIndication)): Message Type - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfFaultSubObjects (number): Number Of Fault or Notify. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/esmc_4d9a2f8edc72794b61857303b0afb00d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/esmc_4d9a2f8edc72794b61857303b0afb00d.py index 3afc9eb45..79ecc55aa 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/esmc_4d9a2f8edc72794b61857303b0afb00d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/esmc_4d9a2f8edc72794b61857303b0afb00d.py @@ -86,7 +86,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -189,7 +189,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -365,7 +365,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -428,10 +428,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -445,10 +445,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -492,15 +492,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[discoveryTimeout | duplicateAddress | interfaceRemoved | none])): Logs additional information about the session state. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ethernet_18677f1f170027c217563a3250b1f635.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ethernet_18677f1f170027c217563a3250b1f635.py index 3eabaa9a5..086ef13d3 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ethernet_18677f1f170027c217563a3250b1f635.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ethernet_18677f1f170027c217563a3250b1f635.py @@ -274,13 +274,13 @@ def Ipv6(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390.Ipv6): An instance of the Ipv6 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc.Ipv6): An instance of the Ipv6 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc import ( Ipv6, ) @@ -574,13 +574,13 @@ def Mka(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871.Mka): An instance of the Mka class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab.Mka): An instance of the Mka class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab import ( Mka, ) @@ -674,13 +674,13 @@ def Pppoxclient(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxclient_d7a99a629d894d9e4fc7eae719c12528.Pppoxclient): An instance of the Pppoxclient class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxclient_f43b198156c11196dbbd8c4dbee2af9d.Pppoxclient): An instance of the Pppoxclient class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxclient_d7a99a629d894d9e4fc7eae719c12528 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxclient_f43b198156c11196dbbd8c4dbee2af9d import ( Pppoxclient, ) @@ -694,13 +694,13 @@ def Pppoxserver(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_6001eb455946b79aa809976e25c5d004.Pppoxserver): An instance of the Pppoxserver class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_622ad1c6d961bb8e246b079c72242bfa.Pppoxserver): An instance of the Pppoxserver class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_6001eb455946b79aa809976e25c5d004 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_622ad1c6d961bb8e246b079c72242bfa import ( Pppoxserver, ) @@ -714,13 +714,13 @@ def Ptp(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_0fccf1fcc99303d2707e822de949037f.Ptp): An instance of the Ptp class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_24f2907f5a685b611f57469838b21337.Ptp): An instance of the Ptp class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_0fccf1fcc99303d2707e822de949037f import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_24f2907f5a685b611f57469838b21337 import ( Ptp, ) @@ -855,7 +855,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -901,7 +901,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -990,7 +990,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1066,11 +1066,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NotifyMACMove (bool): Flag to determine if MAC move notification to be sent - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - UseVlans (bool): Flag to determine whether VLANs are enabled - VlanCount (number): Number of active VLANs @@ -1095,11 +1095,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NotifyMACMove (bool): Flag to determine if MAC move notification to be sent - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - UseVlans (bool): Flag to determine whether VLANs are enabled - VlanCount (number): Number of active VLANs @@ -1147,15 +1147,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NotifyMACMove (bool): Flag to determine if MAC move notification to be sent - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - UseVlans (bool): Flag to determine whether VLANs are enabled diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/evpnipv4prefixrange_f9fe868ed341d666199597001888e18d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/evpnipv4prefixrange_f9fe868ed341d666199597001888e18d.py index bd399f61a..b24babc05 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/evpnipv4prefixrange_f9fe868ed341d666199597001888e18d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/evpnipv4prefixrange_f9fe868ed341d666199597001888e18d.py @@ -164,13 +164,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/evpnipv6prefixrange_907e82e321deae422b0ee1ed0f82f2f3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/evpnipv6prefixrange_907e82e321deae422b0ee1ed0f82f2f3.py index 2f2ad2a75..4b179fe42 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/evpnipv6prefixrange_907e82e321deae422b0ee1ed0f82f2f3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/evpnipv6prefixrange_907e82e321deae422b0ee1ed0f82f2f3.py @@ -164,13 +164,13 @@ def BgpExtendedCommunitiesList(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254.BgpExtendedCommunitiesList): An instance of the BgpExtendedCommunitiesList class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_bac41900b4999f09d65f045cf8104248 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpextendedcommunitieslist_7e5fc3453869b321189a54fc0c370254 import ( BgpExtendedCommunitiesList, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/externallink_92dfe6bfe971a09aeb88dd947516d4b8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/externallink_92dfe6bfe971a09aeb88dd947516d4b8.py index 8aebaec68..c11e58e4f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/externallink_92dfe6bfe971a09aeb88dd947516d4b8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/externallink_92dfe6bfe971a09aeb88dd947516d4b8.py @@ -67,7 +67,7 @@ def ToNetworkTopology(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): Network Topology this link is pointing to + - str(None | /api/v1/sessions/1/ixnetwork/topology): Network Topology this link is pointing to """ return self._get_attribute(self._SDM_ATT_MAP["ToNetworkTopology"]) @@ -98,7 +98,7 @@ def update(self, FromNodeIndex=None, ToNetworkTopology=None, ToNodeIndex=None): Args ---- - FromNodeIndex (number): Index of the originating node as defined in fromNetworkTopology - - ToNetworkTopology (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Network Topology this link is pointing to + - ToNetworkTopology (str(None | /api/v1/sessions/1/ixnetwork/topology)): Network Topology this link is pointing to - ToNodeIndex (number): Index of the target node as defined in toNetworkTopology Raises @@ -114,7 +114,7 @@ def add(self, FromNodeIndex=None, ToNetworkTopology=None, ToNodeIndex=None): Args ---- - FromNodeIndex (number): Index of the originating node as defined in fromNetworkTopology - - ToNetworkTopology (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Network Topology this link is pointing to + - ToNetworkTopology (str(None | /api/v1/sessions/1/ixnetwork/topology)): Network Topology this link is pointing to - ToNodeIndex (number): Index of the target node as defined in toNetworkTopology Returns @@ -148,7 +148,7 @@ def find(self, FromNodeIndex=None, ToNetworkTopology=None, ToNodeIndex=None): Args ---- - FromNodeIndex (number): Index of the originating node as defined in fromNetworkTopology - - ToNetworkTopology (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Network Topology this link is pointing to + - ToNetworkTopology (str(None | /api/v1/sessions/1/ixnetwork/topology)): Network Topology this link is pointing to - ToNodeIndex (number): Index of the target node as defined in toNetworkTopology Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/flowprofile_a1f78cfc247b918e0d8219ac19d05f87.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/flowprofile_a1f78cfc247b918e0d8219ac19d05f87.py index d90ce62de..3bec51c7c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/flowprofile_a1f78cfc247b918e0d8219ac19d05f87.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/flowprofile_a1f78cfc247b918e0d8219ac19d05f87.py @@ -163,7 +163,7 @@ def AddFromTemplate(self, *args, **kwargs): addFromTemplate(Arg2=href, async_operation=bool) ------------------------------------------------ - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork//.../*)): + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/)): - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. Raises diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/geneve_14ab6f140956b4fc77d1d0f03c5e7514.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/geneve_14ab6f140956b4fc77d1d0f03c5e7514.py index 6b7f068aa..b78017412 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/geneve_14ab6f140956b4fc77d1d0f03c5e7514.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/geneve_14ab6f140956b4fc77d1d0f03c5e7514.py @@ -253,7 +253,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -299,7 +299,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -361,7 +361,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -422,10 +422,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -439,10 +439,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -485,14 +485,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/greoipv4_9efa17b6a965b57b3e13cf2957418d99.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/greoipv4_9efa17b6a965b57b3e13cf2957418d99.py index f2c0c2652..cfbd7b5cc 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/greoipv4_9efa17b6a965b57b3e13cf2957418d99.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/greoipv4_9efa17b6a965b57b3e13cf2957418d99.py @@ -260,13 +260,13 @@ def Ipv6(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390.Ipv6): An instance of the Ipv6 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc.Ipv6): An instance of the Ipv6 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc import ( Ipv6, ) @@ -520,13 +520,13 @@ def Mka(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871.Mka): An instance of the Mka class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab.Mka): An instance of the Mka class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab import ( Mka, ) @@ -669,7 +669,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -769,7 +769,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -883,7 +883,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -920,10 +920,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -937,10 +937,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -983,14 +983,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/greoipv6_aad01583ffa3746a541812fe996bbcd0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/greoipv6_aad01583ffa3746a541812fe996bbcd0.py index 3c364cea3..f311e18d6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/greoipv6_aad01583ffa3746a541812fe996bbcd0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/greoipv6_aad01583ffa3746a541812fe996bbcd0.py @@ -255,13 +255,13 @@ def Ipv6(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390.Ipv6): An instance of the Ipv6 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc.Ipv6): An instance of the Ipv6 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc import ( Ipv6, ) @@ -515,13 +515,13 @@ def Mka(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871.Mka): An instance of the Mka class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab.Mka): An instance of the Mka class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab import ( Mka, ) @@ -636,7 +636,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -722,7 +722,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -808,7 +808,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -845,10 +845,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -862,10 +862,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -908,14 +908,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/gribiclient_65aedfb6ef9fd1516821d85f102b2821.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/gribiclient_65aedfb6ef9fd1516821d85f102b2821.py index 0352e14bd..ec280b4cb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/gribiclient_65aedfb6ef9fd1516821d85f102b2821.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/gribiclient_65aedfb6ef9fd1516821d85f102b2821.py @@ -123,7 +123,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -183,7 +183,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -285,7 +285,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -322,10 +322,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -339,10 +339,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -385,14 +385,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/gribinexthopgroup_d6641050fbcfc8e488a8b77af527d5b2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/gribinexthopgroup_d6641050fbcfc8e488a8b77af527d5b2.py index 319ca171e..9565c2497 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/gribinexthopgroup_d6641050fbcfc8e488a8b77af527d5b2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/gribinexthopgroup_d6641050fbcfc8e488a8b77af527d5b2.py @@ -152,7 +152,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -186,7 +186,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -265,7 +265,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -309,11 +309,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfNextHops (number): Number of Next Hops per Next Hop Groups. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -334,11 +334,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfNextHops (number): Number of Next Hops per Next Hop Groups. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -382,15 +382,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfNextHops (number): Number of Next Hops per Next Hop Groups. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/grpcclient_7579119d1fa07cc33f5866d00da204cf.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/grpcclient_7579119d1fa07cc33f5866d00da204cf.py index 6e286c82b..8b84ac0c0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/grpcclient_7579119d1fa07cc33f5866d00da204cf.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/grpcclient_7579119d1fa07cc33f5866d00da204cf.py @@ -110,7 +110,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -158,7 +158,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -268,7 +268,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -305,10 +305,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -322,10 +322,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -369,15 +369,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalIp (list(str)): IP address of the underlying IPv4 interfaces. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/igmphost_8940887674c0387469423e8df3a33854.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/igmphost_8940887674c0387469423e8df3a33854.py index 2bc5ce375..c3e1ce34e 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/igmphost_8940887674c0387469423e8df3a33854.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/igmphost_8940887674c0387469423e8df3a33854.py @@ -153,7 +153,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -213,7 +213,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -357,7 +357,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -428,12 +428,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - JlMultiplier (number): No. of Join/Leave messages to send per opertation - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfGrpRanges (number): Defines the number of group range per host required - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -455,12 +455,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - JlMultiplier (number): No. of Join/Leave messages to send per opertation - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfGrpRanges (number): Defines the number of group range per host required - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -505,16 +505,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - JlMultiplier (number): No. of Join/Leave messages to send per opertation - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfGrpRanges (number): Defines the number of group range per host required - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/igmpquerier_38c883b0cec7ffb5405af90bf1b8cda5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/igmpquerier_38c883b0cec7ffb5405af90bf1b8cda5.py index 84e5fcc2f..2b38445c1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/igmpquerier_38c883b0cec7ffb5405af90bf1b8cda5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/igmpquerier_38c883b0cec7ffb5405af90bf1b8cda5.py @@ -116,7 +116,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -164,7 +164,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -320,7 +320,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -425,10 +425,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -442,10 +442,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -489,15 +489,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[noIfaceUp | up])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4_8cb960b62ae85a03e1b40a57bfaeb7bb.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4_8cb960b62ae85a03e1b40a57bfaeb7bb.py index a3f3e80a8..ff19a7f6b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4_8cb960b62ae85a03e1b40a57bfaeb7bb.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4_8cb960b62ae85a03e1b40a57bfaeb7bb.py @@ -117,13 +117,13 @@ def BgpIpv4Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a.BgpIpv4Peer): An instance of the BgpIpv4Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841.BgpIpv4Peer): An instance of the BgpIpv4Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841 import ( BgpIpv4Peer, ) @@ -697,13 +697,13 @@ def Ptp(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_0fccf1fcc99303d2707e822de949037f.Ptp): An instance of the Ptp class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_24f2907f5a685b611f57469838b21337.Ptp): An instance of the Ptp class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_0fccf1fcc99303d2707e822de949037f import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_24f2907f5a685b611f57469838b21337 import ( Ptp, ) @@ -830,7 +830,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -878,7 +878,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1014,7 +1014,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1051,10 +1051,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1068,10 +1068,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1116,16 +1116,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - ResolvedGatewayMac (list(str)): The resolved gateway's MAC addresses - SessionInfo (list(str[interfaceRemoved | none | resolveMacFailed])): Logs additional information about the session state. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4loopback_f84286c6e2c90f5267670278dde3f258.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4loopback_f84286c6e2c90f5267670278dde3f258.py index 2a8c15821..90855b304 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4loopback_f84286c6e2c90f5267670278dde3f258.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4loopback_f84286c6e2c90f5267670278dde3f258.py @@ -90,13 +90,13 @@ def BgpIpv4Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a.BgpIpv4Peer): An instance of the BgpIpv4Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841.BgpIpv4Peer): An instance of the BgpIpv4Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841 import ( BgpIpv4Peer, ) @@ -523,7 +523,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -557,7 +557,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -619,7 +619,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -656,10 +656,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -673,10 +673,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -719,14 +719,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4prefixpools_2d6f2aedde61c058965d4e1b21741352.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4prefixpools_2d6f2aedde61c058965d4e1b21741352.py index 82e67aeae..0451072ef 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4prefixpools_2d6f2aedde61c058965d4e1b21741352.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv4prefixpools_2d6f2aedde61c058965d4e1b21741352.py @@ -178,13 +178,13 @@ def BgpV6IPRouteProperty(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_3bc5aff598784532c6b5ff0b601d2985.BgpV6IPRouteProperty): An instance of the BgpV6IPRouteProperty class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_e31f5dc41e1565260f4ddeb2f61efe60.BgpV6IPRouteProperty): An instance of the BgpV6IPRouteProperty class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_3bc5aff598784532c6b5ff0b601d2985 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_e31f5dc41e1565260f4ddeb2f61efe60 import ( BgpV6IPRouteProperty, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6_0cf8a9d52fdc1a66c95779a358f9f390.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6_b40789fa49420009901a46b8dc683afc.py similarity index 95% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6_0cf8a9d52fdc1a66c95779a358f9f390.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6_b40789fa49420009901a46b8dc683afc.py index 801cbbc19..3601af811 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6_0cf8a9d52fdc1a66c95779a358f9f390.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6_b40789fa49420009901a46b8dc683afc.py @@ -40,6 +40,7 @@ class Ipv6(Base): "Address": "address", "ConnectedVia": "connectedVia", "Count": "count", + "CustomLinkLocalAddress": "customLinkLocalAddress", "DescriptiveName": "descriptiveName", "DiscoverGatewayIp": "discoverGatewayIp", "DiscoveredGatewayIp": "discoveredGatewayIp", @@ -48,6 +49,7 @@ class Ipv6(Base): "GatewayIp": "gatewayIp", "IncludeRaPrefix": "includeRaPrefix", "LearnNeighbors": "learnNeighbors", + "LinkLocalAddress": "linkLocalAddress", "ManualGatewayMac": "manualGatewayMac", "Multiplier": "multiplier", "Name": "name", @@ -60,6 +62,7 @@ class Ipv6(Base): "StackedLayers": "stackedLayers", "StateCounts": "stateCounts", "Status": "status", + "UseCustomLinkLocalAddress": "useCustomLinkLocalAddress", } _SDM_ENUM_MAP = { "gatewayDiscoveryOpt": ["ra", "nsNa"], @@ -102,13 +105,13 @@ def BgpIpv6Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b.BgpIpv6Peer): An instance of the BgpIpv6Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872.BgpIpv6Peer): An instance of the BgpIpv6Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872 import ( BgpIpv6Peer, ) @@ -422,13 +425,13 @@ def Ptp(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_0fccf1fcc99303d2707e822de949037f.Ptp): An instance of the Ptp class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_24f2907f5a685b611f57469838b21337.Ptp): An instance of the Ptp class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_0fccf1fcc99303d2707e822de949037f import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ptp_24f2907f5a685b611f57469838b21337 import ( Ptp, ) @@ -442,13 +445,13 @@ def Srv6Oam(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oam_2c2276a61daa7bd5cb5602114c35ba53.Srv6Oam): An instance of the Srv6Oam class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oam_222b2d34be60272a50cccc049cada4ef.Srv6Oam): An instance of the Srv6Oam class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oam_2c2276a61daa7bd5cb5602114c35ba53 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oam_222b2d34be60272a50cccc049cada4ef import ( Srv6Oam, ) @@ -535,7 +538,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -554,6 +557,20 @@ def Count(self): """ return self._get_attribute(self._SDM_ATT_MAP["Count"]) + @property + def CustomLinkLocalAddress(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Attribute to configure Custom Link Local Address(s). + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CustomLinkLocalAddress"]) + ) + @property def DescriptiveName(self): # type: () -> str @@ -593,7 +610,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -653,6 +670,16 @@ def LearnNeighbors(self, value): # type: (bool) -> None self._set_attribute(self._SDM_ATT_MAP["LearnNeighbors"], value) + @property + def LinkLocalAddress(self): + # type: () -> List[str] + """ + Returns + ------- + - list(str): Attribute to retrieve the configured Link Local Address(s). + """ + return self._get_attribute(self._SDM_ATT_MAP["LinkLocalAddress"]) + @property def ManualGatewayMac(self): # type: () -> 'Multivalue' @@ -771,7 +798,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -799,6 +826,21 @@ def Status(self): """ return self._get_attribute(self._SDM_ATT_MAP["Status"]) + @property + def UseCustomLinkLocalAddress(self): + # type: () -> bool + """ + Returns + ------- + - bool: Flag to determine whether the custom Link Local Address is enabled. By default, it is set to false. + """ + return self._get_attribute(self._SDM_ATT_MAP["UseCustomLinkLocalAddress"]) + + @UseCustomLinkLocalAddress.setter + def UseCustomLinkLocalAddress(self, value): + # type: (bool) -> None + self._set_attribute(self._SDM_ATT_MAP["UseCustomLinkLocalAddress"], value) + def update( self, ConnectedVia=None, @@ -807,8 +849,9 @@ def update( Multiplier=None, Name=None, StackedLayers=None, + UseCustomLinkLocalAddress=None, ): - # type: (List[str], str, bool, int, str, List[str]) -> Ipv6 + # type: (List[str], str, bool, int, str, List[str], bool) -> Ipv6 """Updates ipv6 resource on the server. This method has some named parameters with a type: obj (Multivalue). @@ -816,12 +859,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - GatewayDiscoveryOpt (str(ra | nsNa)): Options to discover the gateway IP. - LearnNeighbors (bool): Enable or disable the discover or learn neighbor(s) option. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols + - UseCustomLinkLocalAddress (bool): Flag to determine whether the custom Link Local Address is enabled. By default, it is set to false. Raises ------ @@ -837,18 +881,20 @@ def add( Multiplier=None, Name=None, StackedLayers=None, + UseCustomLinkLocalAddress=None, ): - # type: (List[str], str, bool, int, str, List[str]) -> Ipv6 + # type: (List[str], str, bool, int, str, List[str], bool) -> Ipv6 """Adds a new ipv6 resource on the server and adds it to the container. Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - GatewayDiscoveryOpt (str(ra | nsNa)): Options to discover the gateway IP. - LearnNeighbors (bool): Enable or disable the discover or learn neighbor(s) option. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols + - UseCustomLinkLocalAddress (bool): Flag to determine whether the custom Link Local Address is enabled. By default, it is set to false. Returns ------- @@ -879,6 +925,7 @@ def find( Errors=None, GatewayDiscoveryOpt=None, LearnNeighbors=None, + LinkLocalAddress=None, Multiplier=None, Name=None, ResolvedGatewayMac=None, @@ -887,6 +934,7 @@ def find( StackedLayers=None, StateCounts=None, Status=None, + UseCustomLinkLocalAddress=None, ): """Finds and retrieves ipv6 resources from the server. @@ -896,21 +944,23 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DiscoveredGatewayIp (list(str)): The discovered gateway IP addresses. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - GatewayDiscoveryOpt (str(ra | nsNa)): Options to discover the gateway IP. - LearnNeighbors (bool): Enable or disable the discover or learn neighbor(s) option. + - LinkLocalAddress (list(str)): Attribute to retrieve the configured Link Local Address(s). - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - ResolvedGatewayMac (list(str)): The resolved gateway's MAC addresses - SessionInfo (list(str[discoverIpFailed | duplicateAddress | interfaceRemoved | none | resolveMacFailed])): Logs additional information about the session state. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. + - UseCustomLinkLocalAddress (bool): Flag to determine whether the custom Link Local Address is enabled. By default, it is set to false. Returns ------- @@ -1451,6 +1501,7 @@ def get_device_ids( self, PortNames=None, Address=None, + CustomLinkLocalAddress=None, DiscoverGatewayIp=None, GatewayIp=None, IncludeRaPrefix=None, @@ -1467,6 +1518,7 @@ def get_device_ids( ---- - PortNames (str): optional regex of port names - Address (str): optional regex of address + - CustomLinkLocalAddress (str): optional regex of customLinkLocalAddress - DiscoverGatewayIp (str): optional regex of discoverGatewayIp - GatewayIp (str): optional regex of gatewayIp - IncludeRaPrefix (str): optional regex of includeRaPrefix diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6autoconfiguration_b065cceda7a3517cca0451a09d81d989.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6autoconfiguration_b065cceda7a3517cca0451a09d81d989.py index cbc47e4ad..c10fab0ef 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6autoconfiguration_b065cceda7a3517cca0451a09d81d989.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6autoconfiguration_b065cceda7a3517cca0451a09d81d989.py @@ -93,13 +93,13 @@ def BgpIpv6Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b.BgpIpv6Peer): An instance of the BgpIpv6Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872.BgpIpv6Peer): An instance of the BgpIpv6Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872 import ( BgpIpv6Peer, ) @@ -264,7 +264,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -298,7 +298,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -388,7 +388,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -422,10 +422,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -439,10 +439,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -491,10 +491,10 @@ def find( Args ---- - Address (list(str)): Discovered IPv6 addresses - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - GatewayIp (list(str)): Discovered gateway IPv6 addresses - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -502,7 +502,7 @@ def find( - ResolvedGatewayMac (list(str)): Resolved gateway MAC addresses. - SessionInfo (list(str[discoveryTimeout | duplicateAddress | interfaceRemoved | none])): Logs additional information about the session state. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6loopback_c5557054afff2b9cc84b7676de50b805.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6loopback_c5557054afff2b9cc84b7676de50b805.py index 37f101ed5..ef8d8e37d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6loopback_c5557054afff2b9cc84b7676de50b805.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6loopback_c5557054afff2b9cc84b7676de50b805.py @@ -90,13 +90,13 @@ def BgpIpv6Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b.BgpIpv6Peer): An instance of the BgpIpv6Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872.BgpIpv6Peer): An instance of the BgpIpv6Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872 import ( BgpIpv6Peer, ) @@ -343,7 +343,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -377,7 +377,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -439,7 +439,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -476,10 +476,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -493,10 +493,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -539,14 +539,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6prefixpools_f83aba85ff769655b348dc60ddcb30f2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6prefixpools_f83aba85ff769655b348dc60ddcb30f2.py index 5d940ed82..7e30e846c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6prefixpools_f83aba85ff769655b348dc60ddcb30f2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6prefixpools_f83aba85ff769655b348dc60ddcb30f2.py @@ -178,13 +178,13 @@ def BgpV6IPRouteProperty(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_3bc5aff598784532c6b5ff0b601d2985.BgpV6IPRouteProperty): An instance of the BgpV6IPRouteProperty class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_e31f5dc41e1565260f4ddeb2f61efe60.BgpV6IPRouteProperty): An instance of the BgpV6IPRouteProperty class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_3bc5aff598784532c6b5ff0b601d2985 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_e31f5dc41e1565260f4ddeb2f61efe60 import ( BgpV6IPRouteProperty, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6sr_5d596ce1a2d00c8f120ae357d45b9a46.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6sr_5d596ce1a2d00c8f120ae357d45b9a46.py index c7658db7b..3df7dea63 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6sr_5d596ce1a2d00c8f120ae357d45b9a46.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ipv6sr_5d596ce1a2d00c8f120ae357d45b9a46.py @@ -146,7 +146,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -180,7 +180,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -341,7 +341,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -411,11 +411,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberSegments (number): Maximum available index of the Segments List in SRH header (0 Based Index) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -436,11 +436,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberSegments (number): Maximum available index of the Segments List in SRH header (0 Based Index) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -484,15 +484,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberSegments (number): Maximum available index of the Segments List in SRH header (0 Based Index) - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisdcesimrouter_92c9662fb6421c6639f138f508faf4d4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisdcesimrouter_92c9662fb6421c6639f138f508faf4d4.py index 166f08124..57a3aef9a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisdcesimrouter_92c9662fb6421c6639f138f508faf4d4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisdcesimrouter_92c9662fb6421c6639f138f508faf4d4.py @@ -182,7 +182,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -261,7 +261,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -323,7 +323,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -381,13 +381,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - DceMCastIpv4GroupCount (number): # Multicast IPv4 Groups(multiplier) - DceMCastIpv6GroupCount (number): # Multicast IPv6 Groups(multiplier) - DceMCastMacGroupCount (number): MAC Group Count(multiplier) - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -410,13 +410,13 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - DceMCastIpv4GroupCount (number): # Multicast IPv4 Groups(multiplier) - DceMCastIpv6GroupCount (number): # Multicast IPv6 Groups(multiplier) - DceMCastMacGroupCount (number): MAC Group Count(multiplier) - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -462,17 +462,17 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DceMCastIpv4GroupCount (number): # Multicast IPv4 Groups(multiplier) - DceMCastIpv6GroupCount (number): # Multicast IPv6 Groups(multiplier) - DceMCastMacGroupCount (number): MAC Group Count(multiplier) - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisfabricpath_49ed8317c28295615f21a4a8362c2b95.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisfabricpath_49ed8317c28295615f21a4a8362c2b95.py index 050727287..c8bdbea90 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisfabricpath_49ed8317c28295615f21a4a8362c2b95.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisfabricpath_49ed8317c28295615f21a4a8362c2b95.py @@ -219,7 +219,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -281,7 +281,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -431,7 +431,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -468,10 +468,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -485,10 +485,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -533,16 +533,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalSystemID (list(str)): System ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[ifaceSessInfoFsmNotStarted | ifaceSessInfoNotAllNbrInFull | iPAddressNotRcvd | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisfabricpathrouter_3484383ef19d547bbf8b6a3a8701d8ab.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisfabricpathrouter_3484383ef19d547bbf8b6a3a8701d8ab.py index 2d9aa63b1..90c1e56ba 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisfabricpathrouter_3484383ef19d547bbf8b6a3a8701d8ab.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisfabricpathrouter_3484383ef19d547bbf8b6a3a8701d8ab.py @@ -397,7 +397,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -514,7 +514,7 @@ def MaxLSPSize(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Max LSP Size + - obj(ixnetwork_restpy.multivalue.Multivalue): Max PDU Size """ from ixnetwork_restpy.multivalue import Multivalue @@ -713,7 +713,7 @@ def find( - DceMCastMacGroupCount (number): MAC Group Count(multiplier) - DceTopologyCount (number): Topology Count(multiplier) - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalSystemID (list(str)): System ID - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[noIfaceUp | up])): Logs additional information about the session Information diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisl3_2471ee7fdf32e67045bfc6c9e14f54d6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisl3_2471ee7fdf32e67045bfc6c9e14f54d6.py index fef91b74f..3aab48371 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisl3_2471ee7fdf32e67045bfc6c9e14f54d6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisl3_2471ee7fdf32e67045bfc6c9e14f54d6.py @@ -455,7 +455,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -770,7 +770,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1334,7 +1334,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1432,7 +1432,7 @@ def update( Args ---- - AdjSidCount (number): Adj SID Count - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableMt (bool): Enable MT - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -1440,7 +1440,7 @@ def update( - NoOfMtIds (number): Number of Multi Topologies - NoOfTeProfile (number): Number of TE Profile - SrlgCount (number): This field value shows how many SRLG Value columns would be there in the GUI. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1467,7 +1467,7 @@ def add( Args ---- - AdjSidCount (number): Adj SID Count - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableMt (bool): Enable MT - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -1475,7 +1475,7 @@ def add( - NoOfMtIds (number): Number of Multi Topologies - NoOfTeProfile (number): Number of TE Profile - SrlgCount (number): This field value shows how many SRLG Value columns would be there in the GUI. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1527,11 +1527,11 @@ def find( Args ---- - AdjSidCount (number): Adj SID Count - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableMt (bool): Enable MT - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalSystemID (list(str)): System ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -1541,7 +1541,7 @@ def find( - SessionInfo (list(str[ifaceSessInfoFsmNotStarted | ifaceSessInfoNotAllNbrInFull | iPAddressNotRcvd | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SrlgCount (number): This field value shows how many SRLG Value columns would be there in the GUI. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisl3router_1aab69b36c29778284d68b01b8febe48.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisl3router_1aab69b36c29778284d68b01b8febe48.py index df53c732b..b4512d3c4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisl3router_1aab69b36c29778284d68b01b8febe48.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisl3router_1aab69b36c29778284d68b01b8febe48.py @@ -1090,7 +1090,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1631,7 +1631,7 @@ def MaxLSPSize(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Max LSP Size + - obj(ixnetwork_restpy.multivalue.Multivalue): Max PDU Size """ from ixnetwork_restpy.multivalue import Multivalue @@ -2413,7 +2413,7 @@ def find( - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableBIER (bool): Enable BIER - EnableSR (bool): This enables SR MPLS on all the emulated ISIS router(s) - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - FlexAlgoCount (number): If the count is greater than 0, then the Flex Algo tab will appear after ISIS-L3 RTR tab. Default is 0. Range is 0-128. - LocalSystemID (list(str)): System ID - LocatorCount (number): Locator Count diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbbcb_d576c38717539c1b1768a3a9f8ab5670.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbbcb_d576c38717539c1b1768a3a9f8ab5670.py index 2e9bd1128..9ddff914c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbbcb_d576c38717539c1b1768a3a9f8ab5670.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbbcb_d576c38717539c1b1768a3a9f8ab5670.py @@ -199,7 +199,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -273,7 +273,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -407,7 +407,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -444,10 +444,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -461,10 +461,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -509,16 +509,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalSystemID (list(str)): System ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[ifaceSessInfoFsmNotStarted | ifaceSessInfoNotAllNbrInFull | iPAddressNotRcvd | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbbeb_82771ae7e9ec8dfc9848a0c0aa078da2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbbeb_82771ae7e9ec8dfc9848a0c0aa078da2.py index 59e7a4394..fa3d6b1bc 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbbeb_82771ae7e9ec8dfc9848a0c0aa078da2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbbeb_82771ae7e9ec8dfc9848a0c0aa078da2.py @@ -199,7 +199,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -273,7 +273,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -407,7 +407,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -444,10 +444,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -461,10 +461,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -509,16 +509,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalSystemID (list(str)): System ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[ifaceSessInfoFsmNotStarted | ifaceSessInfoNotAllNbrInFull | iPAddressNotRcvd | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbrouter_7f125b55fde121bdcf257dc13c69a82b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbrouter_7f125b55fde121bdcf257dc13c69a82b.py index a7c65741f..2c3288ac1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbrouter_7f125b55fde121bdcf257dc13c69a82b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbrouter_7f125b55fde121bdcf257dc13c69a82b.py @@ -279,7 +279,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -452,7 +452,7 @@ def MaxLSPSize(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Max LSP Size + - obj(ixnetwork_restpy.multivalue.Multivalue): Max PDU Size """ from ixnetwork_restpy.multivalue import Multivalue @@ -649,7 +649,7 @@ def find( ---- - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalSystemID (list(str)): System ID - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[noIfaceUp | up])): Logs additional information about the session Information diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbsimrouter_4d8d2b3596c2f006afcd75a76b6934ff.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbsimrouter_4d8d2b3596c2f006afcd75a76b6934ff.py index eccd49b11..03b45fbd3 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbsimrouter_4d8d2b3596c2f006afcd75a76b6934ff.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isisspbsimrouter_4d8d2b3596c2f006afcd75a76b6934ff.py @@ -140,7 +140,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -174,7 +174,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -246,7 +246,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -295,10 +295,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -312,10 +312,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -359,15 +359,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SpbTopologyCount (number): Topology Count - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrill_e1cc1866688f861871e06513525d235b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrill_e1cc1866688f861871e06513525d235b.py index 54bbb1ea7..e5629d7d1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrill_e1cc1866688f861871e06513525d235b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrill_e1cc1866688f861871e06513525d235b.py @@ -220,7 +220,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -282,7 +282,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -446,7 +446,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -483,10 +483,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -500,10 +500,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -548,16 +548,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalSystemID (list(str)): System ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[ifaceSessInfoFsmNotStarted | ifaceSessInfoNotAllNbrInFull | iPAddressNotRcvd | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrillrouter_a0dffe09cb3b7d2c96fc3b3507112129.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrillrouter_a0dffe09cb3b7d2c96fc3b3507112129.py index 48da5ecc0..ee62ae63b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrillrouter_a0dffe09cb3b7d2c96fc3b3507112129.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrillrouter_a0dffe09cb3b7d2c96fc3b3507112129.py @@ -353,7 +353,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -470,7 +470,7 @@ def MaxLSPSize(self): """ Returns ------- - - obj(ixnetwork_restpy.multivalue.Multivalue): Max LSP Size + - obj(ixnetwork_restpy.multivalue.Multivalue): Max PDU Size """ from ixnetwork_restpy.multivalue import Multivalue @@ -731,7 +731,7 @@ def find( ---- - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalSystemID (list(str)): System ID - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[noIfaceUp | up])): Logs additional information about the session Information diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrillsimrouter_7f0721f1a50df44db865ccea96c8f735.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrillsimrouter_7f0721f1a50df44db865ccea96c8f735.py index b0217a8d2..914665d72 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrillsimrouter_7f0721f1a50df44db865ccea96c8f735.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/isistrillsimrouter_7f0721f1a50df44db865ccea96c8f735.py @@ -191,7 +191,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -225,7 +225,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -287,7 +287,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -390,10 +390,10 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TrillMCastIpv4GroupCount (number): # Multicast IPv4 Groups(multiplier) - TrillMCastIpv6GroupCount (number): # Multicast IPv6 Groups(multiplier) - TrillMCastMacGroupCount (number): MAC Group Count(multiplier) @@ -419,10 +419,10 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TrillMCastIpv4GroupCount (number): # Multicast IPv4 Groups(multiplier) - TrillMCastIpv6GroupCount (number): # Multicast IPv6 Groups(multiplier) - TrillMCastMacGroupCount (number): MAC Group Count(multiplier) @@ -471,14 +471,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TrillMCastIpv4GroupCount (number): # Multicast IPv4 Groups(multiplier) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lac_92ac6d7a9bf02ade5331532b27bfa0ea.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lac_92ac6d7a9bf02ade5331532b27bfa0ea.py index b7a9f4d85..891d25176 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lac_92ac6d7a9bf02ade5331532b27bfa0ea.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lac_92ac6d7a9bf02ade5331532b27bfa0ea.py @@ -188,7 +188,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -305,7 +305,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -501,7 +501,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -655,11 +655,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableExcludeHdlc (bool): If checked, HDLC header is not encoded in the L2TP packets. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TunnelsPerInterfaceMultiplier (number): Number of tunnels per interface (multiplier). Raises @@ -682,11 +682,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableExcludeHdlc (bool): If checked, HDLC header is not encoded in the L2TP packets. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TunnelsPerInterfaceMultiplier (number): Number of tunnels per interface (multiplier). Returns @@ -732,15 +732,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableExcludeHdlc (bool): If checked, HDLC header is not encoded in the L2TP packets. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TunnelsPerInterfaceMultiplier (number): Number of tunnels per interface (multiplier). diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lacp_b6b488f98125e4a7318076cb1375941b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lacp_b6b488f98125e4a7318076cb1375941b.py index 7a2668497..1a2ef8104 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lacp_b6b488f98125e4a7318076cb1375941b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lacp_b6b488f98125e4a7318076cb1375941b.py @@ -227,7 +227,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -275,7 +275,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -472,7 +472,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -537,10 +537,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -554,10 +554,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -601,15 +601,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SourceMac (list(str)): Source MAC - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lagportlacp_ed42d76e076cab1a6c2369b757a5d616.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lagportlacp_ed42d76e076cab1a6c2369b757a5d616.py index 87814f0b8..236e5fcb1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lagportlacp_ed42d76e076cab1a6c2369b757a5d616.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lagportlacp_ed42d76e076cab1a6c2369b757a5d616.py @@ -227,7 +227,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -275,7 +275,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -472,7 +472,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -537,10 +537,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -554,10 +554,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -601,15 +601,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SourceMac (list(str)): Source MAC - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lagportstaticlag_f67759421ceee90b665b41bf19b8202d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lagportstaticlag_f67759421ceee90b665b41bf19b8202d.py index b74fc61d7..70fa81c4b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lagportstaticlag_f67759421ceee90b665b41bf19b8202d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lagportstaticlag_f67759421ceee90b665b41bf19b8202d.py @@ -83,7 +83,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -117,7 +117,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -179,7 +179,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -216,10 +216,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -233,10 +233,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -279,14 +279,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpbasicrouter_53e2de40003674322c811a1ba519dbb6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpbasicrouter_53e2de40003674322c811a1ba519dbb6.py index 8688d828d..73e4e4eb7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpbasicrouter_53e2de40003674322c811a1ba519dbb6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpbasicrouter_53e2de40003674322c811a1ba519dbb6.py @@ -243,7 +243,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -389,7 +389,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -599,7 +599,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -645,13 +645,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV4 (number): The number of Leaf Ranges configured for this LDP router - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - RootRangesCountV4 (number): The number of Root Ranges configured for this LDP router - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -674,13 +674,13 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV4 (number): The number of Leaf Ranges configured for this LDP router - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - RootRangesCountV4 (number): The number of Root Ranges configured for this LDP router - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -728,10 +728,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV4 (number): The number of Leaf Ranges configured for this LDP router - LocalRouterID (list(str)): Router ID @@ -740,7 +740,7 @@ def find( - RootRangesCountV4 (number): The number of Root Ranges configured for this LDP router - SessionInfo (list(str[lDP_STATE_INITIALIZED | lDP_STATE_MULTIPLE_PEERS | lDP_STATE_NON_EXISTENT | lDP_STATE_OPENREC | lDP_STATE_OPENSENT | lDP_STATE_OPERATIONAL | none])): Logs additional information about the LDP session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpbasicrouterv6_b554f464616f39033d7acad4846e556c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpbasicrouterv6_b554f464616f39033d7acad4846e556c.py index 22ce296a6..66ff11948 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpbasicrouterv6_b554f464616f39033d7acad4846e556c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpbasicrouterv6_b554f464616f39033d7acad4846e556c.py @@ -243,7 +243,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -389,7 +389,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -599,7 +599,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -645,13 +645,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV6 (number): The number of Leaf Ranges configured for this LDP router - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - RootRangesCountV6 (number): The number of Root Ranges configured for this LDP router - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -674,13 +674,13 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV6 (number): The number of Leaf Ranges configured for this LDP router - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - RootRangesCountV6 (number): The number of Root Ranges configured for this LDP router - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -728,10 +728,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV6 (number): The number of Leaf Ranges configured for this LDP router - LocalRouterID (list(str)): Router ID @@ -740,7 +740,7 @@ def find( - RootRangesCountV6 (number): The number of Root Ranges configured for this LDP router - SessionInfo (list(str[lDP_STATE_INITIALIZED | lDP_STATE_MULTIPLE_PEERS | lDP_STATE_NON_EXISTENT | lDP_STATE_OPENREC | lDP_STATE_OPENSENT | lDP_STATE_OPERATIONAL | none])): Logs additional information about the LDP session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpconnectedinterface_be8d40bb9f96a3d7371ddaf597237ff0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpconnectedinterface_be8d40bb9f96a3d7371ddaf597237ff0.py index 0b65493d5..a0ac2a04f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpconnectedinterface_be8d40bb9f96a3d7371ddaf597237ff0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpconnectedinterface_be8d40bb9f96a3d7371ddaf597237ff0.py @@ -130,7 +130,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -178,7 +178,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -274,7 +274,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -311,10 +311,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -328,10 +328,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -375,15 +375,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldplpbinterface_a8182405aecaf64e394e960bc0e2f18f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldplpbinterface_a8182405aecaf64e394e960bc0e2f18f.py index 225bbcd4b..94028b2c8 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldplpbinterface_a8182405aecaf64e394e960bc0e2f18f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldplpbinterface_a8182405aecaf64e394e960bc0e2f18f.py @@ -97,7 +97,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -200,7 +200,7 @@ def find( ---- - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpotherpws_c7a119da3cff2b6dc1e78257b76d70b9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpotherpws_c7a119da3cff2b6dc1e78257b76d70b9.py index d15446a8a..529eb9a96 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpotherpws_c7a119da3cff2b6dc1e78257b76d70b9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpotherpws_c7a119da3cff2b6dc1e78257b76d70b9.py @@ -426,7 +426,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -536,7 +536,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -870,7 +870,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -975,10 +975,10 @@ def update( Args ---- - AutoPeerId (bool): If selected, LDP Peer IP would be taken from LDP router's peer configuration. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1000,10 +1000,10 @@ def add( Args ---- - AutoPeerId (bool): If selected, LDP Peer IP would be taken from LDP router's peer configuration. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1049,15 +1049,15 @@ def find( Args ---- - AutoPeerId (bool): If selected, LDP Peer IP would be taken from LDP router's peer configuration. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldppwvpls_e691d6b250f877cef17952ec6e6b30b9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldppwvpls_e691d6b250f877cef17952ec6e6b30b9.py index 177873717..3d3f8f8eb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldppwvpls_e691d6b250f877cef17952ec6e6b30b9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldppwvpls_e691d6b250f877cef17952ec6e6b30b9.py @@ -371,7 +371,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -481,7 +481,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -687,7 +687,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -756,10 +756,10 @@ def update( Args ---- - AutoPeerId (bool): If selected, LDP Peer IP would be taken from LDP router's peer configuration. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -781,10 +781,10 @@ def add( Args ---- - AutoPeerId (bool): If selected, LDP Peer IP would be taken from LDP router's peer configuration. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -830,15 +830,15 @@ def find( Args ---- - AutoPeerId (bool): If selected, LDP Peer IP would be taken from LDP router's peer configuration. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldptargetedrouter_85c7a9993d80996c22a9dbd739df9692.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldptargetedrouter_85c7a9993d80996c22a9dbd739df9692.py index e4e49770e..f5b5e5795 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldptargetedrouter_85c7a9993d80996c22a9dbd739df9692.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldptargetedrouter_85c7a9993d80996c22a9dbd739df9692.py @@ -301,7 +301,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -461,7 +461,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -725,7 +725,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -773,7 +773,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Ipv6peerCount (number): The number of ipv6 Target Peers configured for this LDP router - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV4 (number): The number of Leaf Ranges configured for this LDP router @@ -781,7 +781,7 @@ def update( - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PeerCount (number): The number of Target Peers configured for this LDP router - RootRangesCountV4 (number): The number of Root Ranges configured for this LDP router - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -806,7 +806,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Ipv6peerCount (number): The number of ipv6 Target Peers configured for this LDP router - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV4 (number): The number of Leaf Ranges configured for this LDP router @@ -814,7 +814,7 @@ def add( - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PeerCount (number): The number of Target Peers configured for this LDP router - RootRangesCountV4 (number): The number of Root Ranges configured for this LDP router - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -864,10 +864,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Ipv6peerCount (number): The number of ipv6 Target Peers configured for this LDP router - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV4 (number): The number of Leaf Ranges configured for this LDP router @@ -878,7 +878,7 @@ def find( - RootRangesCountV4 (number): The number of Root Ranges configured for this LDP router - SessionInfo (list(str[lDP_STATE_INITIALIZED | lDP_STATE_MULTIPLE_PEERS | lDP_STATE_NON_EXISTENT | lDP_STATE_OPENREC | lDP_STATE_OPENSENT | lDP_STATE_OPERATIONAL | none])): Logs additional information about the LDP session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldptargetedrouterv6_e86e77f17dfccefac9e15769756089cf.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldptargetedrouterv6_e86e77f17dfccefac9e15769756089cf.py index 1212ca639..2e12d6621 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldptargetedrouterv6_e86e77f17dfccefac9e15769756089cf.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldptargetedrouterv6_e86e77f17dfccefac9e15769756089cf.py @@ -301,7 +301,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -461,7 +461,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -725,7 +725,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -773,7 +773,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Ipv6peerCount (number): The number of ipv6 Target Peers configured for this LDP router - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV6 (number): The number of Leaf Ranges configured for this LDP router @@ -781,7 +781,7 @@ def update( - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PeerCount (number): The number of Target Peers configured for this LDP router - RootRangesCountV6 (number): The number of Root Ranges configured for this LDP router - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -806,7 +806,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Ipv6peerCount (number): The number of ipv6 Target Peers configured for this LDP router - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV6 (number): The number of Leaf Ranges configured for this LDP router @@ -814,7 +814,7 @@ def add( - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PeerCount (number): The number of Target Peers configured for this LDP router - RootRangesCountV6 (number): The number of Root Ranges configured for this LDP router - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -864,10 +864,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Ipv6peerCount (number): The number of ipv6 Target Peers configured for this LDP router - LdpVersion (str(version1 | version2)): Version of LDP. When RFC 5036 is chosen, LDP version is version 1. When draft-pdutta-mpls-ldp-adj-capability-00 is chosen, LDP version is version 2 - LeafRangesCountV6 (number): The number of Leaf Ranges configured for this LDP router @@ -878,7 +878,7 @@ def find( - RootRangesCountV6 (number): The number of Root Ranges configured for this LDP router - SessionInfo (list(str[lDP_STATE_INITIALIZED | lDP_STATE_MULTIPLE_PEERS | lDP_STATE_NON_EXISTENT | lDP_STATE_OPENREC | lDP_STATE_OPENSENT | lDP_STATE_OPERATIONAL | none])): Logs additional information about the LDP session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpv6connectedinterface_c2cbc5e29b8ad12450804681ee48ce22.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpv6connectedinterface_c2cbc5e29b8ad12450804681ee48ce22.py index 0015f39fb..95460792e 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpv6connectedinterface_c2cbc5e29b8ad12450804681ee48ce22.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpv6connectedinterface_c2cbc5e29b8ad12450804681ee48ce22.py @@ -130,7 +130,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -178,7 +178,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -274,7 +274,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -311,10 +311,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -328,10 +328,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -375,15 +375,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpv6loopbackinterface_1c613e9df4bfa76dac19166ff3ca5017.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpv6loopbackinterface_1c613e9df4bfa76dac19166ff3ca5017.py index 20c8dd28c..3a468e888 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpv6loopbackinterface_1c613e9df4bfa76dac19166ff3ca5017.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpv6loopbackinterface_1c613e9df4bfa76dac19166ff3ca5017.py @@ -98,7 +98,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -211,7 +211,7 @@ def find( ---- - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpvplsbgpad_0f32fa32863dd9e13cd7e772a3fb8771.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpvplsbgpad_0f32fa32863dd9e13cd7e772a3fb8771.py index 9a0c6472c..1861f4669 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpvplsbgpad_0f32fa32863dd9e13cd7e772a3fb8771.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ldpvplsbgpad_0f32fa32863dd9e13cd7e772a3fb8771.py @@ -389,7 +389,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -499,7 +499,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -771,7 +771,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -878,10 +878,10 @@ def update( Args ---- - AutoPeerId (bool): If selected, LDP Peer IP would be taken from LDP router's peer configuration. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -903,10 +903,10 @@ def add( Args ---- - AutoPeerId (bool): If selected, LDP Peer IP would be taken from LDP router's peer configuration. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -952,15 +952,15 @@ def find( Args ---- - AutoPeerId (bool): If selected, LDP Peer IP would be taken from LDP router's peer configuration. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lightweightdhcpv6relayagent_f435ed323783b3dadd80a122fef5c031.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lightweightdhcpv6relayagent_f435ed323783b3dadd80a122fef5c031.py index cf44884c1..aabfc05df 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lightweightdhcpv6relayagent_f435ed323783b3dadd80a122fef5c031.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lightweightdhcpv6relayagent_f435ed323783b3dadd80a122fef5c031.py @@ -94,7 +94,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -128,7 +128,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -138,7 +138,7 @@ def LightweightDhcp6RelayAgentGlobalAndPortData(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): Global and Port Settings + - str(None | /api/v1/sessions/1/ixnetwork/topology): Global and Port Settings """ return self._get_attribute( self._SDM_ATT_MAP["LightweightDhcp6RelayAgentGlobalAndPortData"] @@ -200,7 +200,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -234,10 +234,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -251,10 +251,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -299,16 +299,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred - - LightweightDhcp6RelayAgentGlobalAndPortData (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Global and Port Settings + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred + - LightweightDhcp6RelayAgentGlobalAndPortData (str(None | /api/v1/sessions/1/ixnetwork/topology)): Global and Port Settings - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[excessiveTlvs | ipDown | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lns_a4b3be663ffb1dfb1f114cda5dbbcd4e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lns_a4b3be663ffb1dfb1f114cda5dbbcd4e.py index f2c8028a3..a63e7ee11 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lns_a4b3be663ffb1dfb1f114cda5dbbcd4e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/lns_a4b3be663ffb1dfb1f114cda5dbbcd4e.py @@ -116,13 +116,13 @@ def Pppoxserver(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_6001eb455946b79aa809976e25c5d004.Pppoxserver): An instance of the Pppoxserver class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_622ad1c6d961bb8e246b079c72242bfa.Pppoxserver): An instance of the Pppoxserver class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_6001eb455946b79aa809976e25c5d004 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.pppoxserver_622ad1c6d961bb8e246b079c72242bfa import ( Pppoxserver, ) @@ -183,7 +183,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -317,7 +317,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -523,7 +523,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -662,12 +662,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - CredentialsCount (number): Number of L2TP authentication credentials the LNS accepts for multiple tunnels establishment. - EnableExcludeHdlc (bool): If checked, HDLC header is not encoded in the L2TP packets. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -689,12 +689,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - CredentialsCount (number): Number of L2TP authentication credentials the LNS accepts for multiple tunnels establishment. - EnableExcludeHdlc (bool): If checked, HDLC header is not encoded in the L2TP packets. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -739,16 +739,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - CredentialsCount (number): Number of L2TP authentication credentials the LNS accepts for multiple tunnels establishment. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableExcludeHdlc (bool): If checked, HDLC header is not encoded in the L2TP packets. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/macsec_e234f4bb7910f70ddb27cb1e585d5040.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/macsec_e234f4bb7910f70ddb27cb1e585d5040.py index aaee7afc0..15ce91aa5 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/macsec_e234f4bb7910f70ddb27cb1e585d5040.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/macsec_e234f4bb7910f70ddb27cb1e585d5040.py @@ -264,13 +264,13 @@ def Ipv6(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390.Ipv6): An instance of the Ipv6 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc.Ipv6): An instance of the Ipv6 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc import ( Ipv6, ) @@ -524,13 +524,13 @@ def Mka(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871.Mka): An instance of the Mka class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab.Mka): An instance of the Mka class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab import ( Mka, ) @@ -723,7 +723,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -863,7 +863,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1099,7 +1099,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1276,7 +1276,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableClearTextVlans (bool): Determines whether the VLANs configured on the parent Ethernet layer are sent as clear text VLANs (before secTAG) or as encrypted VLANs (after secTAG). By default this is disabled and the VLANs configured on the parent Ethernet layer are copied to MACsec layer and sent as encrypted VLANs. - EncryptedVlanCount (number): Denotes the number of VLANs to be sent as encrypted VLANs. Maximum 6 VLANs can be configured as encrypted VLANs. - InterleaveDuration (number): Determines how long the Old and New SAKs should be interleaved. @@ -1289,7 +1289,7 @@ def update( - RekeyMode (str(timerBased | pnBased)): Rekey criteria, either PN based or Timer based. - RxSakPoolSize (number): Determines the number of SAKs configured for each device for the Rx secure channel. Multiple SAKs are needed if DUT is expected to trigger Rekey during the test. - SourceMac (list(str)): MAC address of the Ethernet devices configured in the Ethernet stack. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TxSakPoolSize (number): Determines the number of SAKs configured for each device for the Tx secure channel. Multiple SAKs are needed if Rekey scenario is to be simulated. Raises @@ -1321,7 +1321,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableClearTextVlans (bool): Determines whether the VLANs configured on the parent Ethernet layer are sent as clear text VLANs (before secTAG) or as encrypted VLANs (after secTAG). By default this is disabled and the VLANs configured on the parent Ethernet layer are copied to MACsec layer and sent as encrypted VLANs. - EncryptedVlanCount (number): Denotes the number of VLANs to be sent as encrypted VLANs. Maximum 6 VLANs can be configured as encrypted VLANs. - InterleaveDuration (number): Determines how long the Old and New SAKs should be interleaved. @@ -1334,7 +1334,7 @@ def add( - RekeyMode (str(timerBased | pnBased)): Rekey criteria, either PN based or Timer based. - RxSakPoolSize (number): Determines the number of SAKs configured for each device for the Rx secure channel. Multiple SAKs are needed if DUT is expected to trigger Rekey during the test. - SourceMac (list(str)): MAC address of the Ethernet devices configured in the Ethernet stack. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TxSakPoolSize (number): Determines the number of SAKs configured for each device for the Tx secure channel. Multiple SAKs are needed if Rekey scenario is to be simulated. Returns @@ -1389,12 +1389,12 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableClearTextVlans (bool): Determines whether the VLANs configured on the parent Ethernet layer are sent as clear text VLANs (before secTAG) or as encrypted VLANs (after secTAG). By default this is disabled and the VLANs configured on the parent Ethernet layer are copied to MACsec layer and sent as encrypted VLANs. - EncryptedVlanCount (number): Denotes the number of VLANs to be sent as encrypted VLANs. Maximum 6 VLANs can be configured as encrypted VLANs. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - InterleaveDuration (number): Determines how long the Old and New SAKs should be interleaved. - InterleaveOldSak (bool): Determines whether Ixia interleaves Old and New SAKs after Rekey is triggered. - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -1406,7 +1406,7 @@ def find( - RxSakPoolSize (number): Determines the number of SAKs configured for each device for the Rx secure channel. Multiple SAKs are needed if DUT is expected to trigger Rekey during the test. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SourceMac (list(str)): MAC address of the Ethernet devices configured in the Ethernet stack. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TxSakPoolSize (number): Determines the number of SAKs configured for each device for the Tx secure channel. Multiple SAKs are needed if Rekey scenario is to be simulated. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mka_f83702f137304769ca29eeb7f114d871.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mka_263a86da717fe553c3af300d3bfb0cab.py similarity index 97% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mka_f83702f137304769ca29eeb7f114d871.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mka_263a86da717fe553c3af300d3bfb0cab.py index 9e23cc9b8..249b329de 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mka_f83702f137304769ca29eeb7f114d871.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mka_263a86da717fe553c3af300d3bfb0cab.py @@ -80,6 +80,7 @@ class Mka(Base): "StartingOLPN": "startingOLPN", "StateCounts": "stateCounts", "Status": "status", + "SupportedCipherSuites": "supportedCipherSuites", "TxChannelCount": "txChannelCount", } _SDM_ENUM_MAP = { @@ -229,7 +230,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -295,7 +296,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -628,7 +629,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -708,6 +709,20 @@ def Status(self): """ return self._get_attribute(self._SDM_ATT_MAP["Status"]) + @property + def SupportedCipherSuites(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The list of cipher suites supported by the device. All options are selected by default. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SupportedCipherSuites"]) + ) + @property def TxChannelCount(self): # type: () -> int @@ -742,7 +757,7 @@ def update( Args ---- - CakCount (number): PSK Chain Size (Min 1, Max 10). - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - KeyType (str(psk)): Indicates the source of CAK. - MkaLifeTime (number): Indicates MKA Life Time of a Peer. - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -752,7 +767,7 @@ def update( - RandomizeMemberIdentifier (bool): If this box is checked, then Ixia MKA devices will generate random member identifiers. Otherwise member identifiers of the form MAC Address-Counter will be generated to aid in debugging. - RekeyBehaviour (str(dontRekey | rekeyContinuous | rekeyFixedCount)): Determines the Rekey behavior. - RekeyMode (str(timerBased | pNBased)): Rekey criteria. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -781,7 +796,7 @@ def add( Args ---- - CakCount (number): PSK Chain Size (Min 1, Max 10). - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - KeyType (str(psk)): Indicates the source of CAK. - MkaLifeTime (number): Indicates MKA Life Time of a Peer. - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -791,7 +806,7 @@ def add( - RandomizeMemberIdentifier (bool): If this box is checked, then Ixia MKA devices will generate random member identifiers. Otherwise member identifiers of the form MAC Address-Counter will be generated to aid in debugging. - RekeyBehaviour (str(dontRekey | rekeyContinuous | rekeyFixedCount)): Determines the Rekey behavior. - RekeyMode (str(timerBased | pNBased)): Rekey criteria. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -850,12 +865,12 @@ def find( ---- - AssociationNumber (list(str)): Displays the Association Number for the received SAK. - CakCount (number): PSK Chain Size (Min 1, Max 10). - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DelayProtectSimulation (list(str)): Displays the actual PN, simulated PN and the MKPDU message number. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - ElectedKeyServer (list(str)): Denotes whether this device has been elected as a Key Server or not. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - KeyType (str(psk)): Indicates the source of CAK. - MirroredMacAddr (list(str)): MAC address of the Ethernet devices configured in the Ethernet stack. - MkaLifeTime (number): Indicates MKA Life Time of a Peer. @@ -868,7 +883,7 @@ def find( - RekeyMode (str(timerBased | pNBased)): Rekey criteria. - Sak (list(str)): Displays the SAK received from the Key Server. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TxChannelCount (number): Determines the number of Tx Channels configured for each device. @@ -1442,6 +1457,7 @@ def get_device_ids( StartingKeyNumber=None, StartingLLPN=None, StartingOLPN=None, + SupportedCipherSuites=None, ): """Base class infrastructure that gets a list of mka device ids encapsulated by this object. @@ -1470,6 +1486,7 @@ def get_device_ids( - StartingKeyNumber (str): optional regex of startingKeyNumber - StartingLLPN (str): optional regex of startingLLPN - StartingOLPN (str): optional regex of startingOLPN + - SupportedCipherSuites (str): optional regex of supportedCipherSuites Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mldhost_824a1bed927138d4bb32f7d2631197a5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mldhost_824a1bed927138d4bb32f7d2631197a5.py index 0797a7607..a329761c7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mldhost_824a1bed927138d4bb32f7d2631197a5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mldhost_824a1bed927138d4bb32f7d2631197a5.py @@ -153,7 +153,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -213,7 +213,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -357,7 +357,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -428,12 +428,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - JlMultiplier (number): No. of Join/Leave messages to send per opertation - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfGrpRanges (number): Defines the number of group range per host required - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -455,12 +455,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - JlMultiplier (number): No. of Join/Leave messages to send per opertation - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfGrpRanges (number): Defines the number of group range per host required - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -505,16 +505,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - JlMultiplier (number): No. of Join/Leave messages to send per opertation - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfGrpRanges (number): Defines the number of group range per host required - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mldquerier_e20671d730d138d65036e88d7cad63ac.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mldquerier_e20671d730d138d65036e88d7cad63ac.py index eef8244e2..3425892b4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mldquerier_e20671d730d138d65036e88d7cad63ac.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mldquerier_e20671d730d138d65036e88d7cad63ac.py @@ -116,7 +116,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -164,7 +164,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -320,7 +320,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -425,10 +425,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -442,10 +442,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -489,15 +489,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[noIfaceUp | up])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mpls_ffaab24246ff53741a201b0a48e8e3f1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mpls_ffaab24246ff53741a201b0a48e8e3f1.py index 7e281aaa2..96e9d2e2a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mpls_ffaab24246ff53741a201b0a48e8e3f1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mpls_ffaab24246ff53741a201b0a48e8e3f1.py @@ -261,13 +261,13 @@ def Ipv6(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390.Ipv6): An instance of the Ipv6 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc.Ipv6): An instance of the Ipv6 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc import ( Ipv6, ) @@ -521,13 +521,13 @@ def Mka(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871.Mka): An instance of the Mka class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab.Mka): An instance of the Mka class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_f83702f137304769ca29eeb7f114d871 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.mka_263a86da717fe553c3af300d3bfb0cab import ( Mka, ) @@ -654,7 +654,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -727,7 +727,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -814,7 +814,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -915,12 +915,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Enablecw (bool): Enable Control Word - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - Overridecos (bool): Override Cos - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TransportType (str(overMac | overTunnel)): TransportType - UpperLayer (str(nhEthernet | nhIp)): Value to Determine who is upper Layer. @@ -946,12 +946,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Enablecw (bool): Enable Control Word - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - Overridecos (bool): Override Cos - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TransportType (str(overMac | overTunnel)): TransportType - UpperLayer (str(nhEthernet | nhIp)): Value to Determine who is upper Layer. @@ -1001,17 +1001,17 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - Enablecw (bool): Enable Control Word - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - Overridecos (bool): Override Cos - SessionInfo (list(str[interfaceCreationFailed | interfaceDeletionFailed | interfaceInternalProblem | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TransportType (str(overMac | overTunnel)): TransportType diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mplsoam_e01bb6affe899a4731aa60619f4aeadc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mplsoam_e01bb6affe899a4731aa60619f4aeadc.py index 823db4647..e43dc948b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mplsoam_e01bb6affe899a4731aa60619f4aeadc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mplsoam_e01bb6affe899a4731aa60619f4aeadc.py @@ -231,7 +231,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -464,7 +464,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -630,7 +630,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -715,12 +715,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableSBfdResponder (bool): Enables S-BFD Responder - InitiatorSBFDSessionCount (number): Number of configured S-BFD Initiator sessions with static MPLS labels per MPLS-OAM Interface. Labels should be configured as the actual label values (not SIDs) for SR-LSPs and should include list of labels learned by Ixia port and not the ones configured on the Tx Port itself. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -742,12 +742,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableSBfdResponder (bool): Enables S-BFD Responder - InitiatorSBFDSessionCount (number): Number of configured S-BFD Initiator sessions with static MPLS labels per MPLS-OAM Interface. Labels should be configured as the actual label values (not SIDs) for SR-LSPs and should include list of labels learned by Ixia port and not the ones configured on the Tx Port itself. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -793,17 +793,17 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableSBfdResponder (bool): Enables S-BFD Responder - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - InitiatorSBFDSessionCount (number): Number of configured S-BFD Initiator sessions with static MPLS labels per MPLS-OAM Interface. Labels should be configured as the actual label values (not SIDs) for SR-LSPs and should include list of labels learned by Ixia port and not the ones configured on the Tx Port itself. - LocalRouterId (list(str)): The MPLOAM Router ID value, in IPv4 format. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mplsoamrouter_845700fadfdfffc9273541ede90252e5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mplsoamrouter_845700fadfdfffc9273541ede90252e5.py index 3df6c1ba7..4c282fd46 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mplsoamrouter_845700fadfdfffc9273541ede90252e5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/mplsoamrouter_845700fadfdfffc9273541ede90252e5.py @@ -99,7 +99,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -223,7 +223,7 @@ def find( ---- - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterId (list(str)): The MPLSOAM Router ID value, in IPv4 format. - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/msrplistener_e4c5ef0942a99c83ab955893f78633c0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/msrplistener_e4c5ef0942a99c83ab955893f78633c0.py index 10e5fff12..90e2ac21f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/msrplistener_e4c5ef0942a99c83ab955893f78633c0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/msrplistener_e4c5ef0942a99c83ab955893f78633c0.py @@ -165,7 +165,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -214,7 +214,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -329,7 +329,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -430,12 +430,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - DeclareUnsolicitedVlan (bool): Declare VLAN membership of configured VLAN range using MVRP even before learning any streams - ListenerDomainCount (number): Domain Count - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - SubscribeAll (bool): Send MSRP Listener Ready for all streams advertised in recieved MSRP Talker Advertise - SubscribedStreamCount (number): Count of streams Listener want to listen @@ -461,12 +461,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - DeclareUnsolicitedVlan (bool): Declare VLAN membership of configured VLAN range using MVRP even before learning any streams - ListenerDomainCount (number): Domain Count - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - SubscribeAll (bool): Send MSRP Listener Ready for all streams advertised in recieved MSRP Talker Advertise - SubscribedStreamCount (number): Count of streams Listener want to listen @@ -515,16 +515,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DeclareUnsolicitedVlan (bool): Declare VLAN membership of configured VLAN range using MVRP even before learning any streams - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - ListenerDomainCount (number): Domain Count - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - SubscribeAll (bool): Send MSRP Listener Ready for all streams advertised in recieved MSRP Talker Advertise diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/msrptalker_ac4e61374b0b4d8500aef7076a2cda89.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/msrptalker_ac4e61374b0b4d8500aef7076a2cda89.py index c4c8e658d..690c717f0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/msrptalker_ac4e61374b0b4d8500aef7076a2cda89.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/msrptalker_ac4e61374b0b4d8500aef7076a2cda89.py @@ -157,7 +157,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -191,7 +191,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -291,7 +291,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -368,10 +368,10 @@ def update( Args ---- - AdvertiseVlanMembership (bool): Advertise VLAN Membership from these talkers - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StreamCount (number): number of stream id instances per talker instance (multiplier) - TalkerDomainCount (number): Domain Count @@ -397,10 +397,10 @@ def add( Args ---- - AdvertiseVlanMembership (bool): Advertise VLAN Membership from these talkers - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StreamCount (number): number of stream id instances per talker instance (multiplier) - TalkerDomainCount (number): Domain Count @@ -449,14 +449,14 @@ def find( Args ---- - AdvertiseVlanMembership (bool): Advertise VLAN Membership from these talkers - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - StreamCount (number): number of stream id instances per talker instance (multiplier) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/netconfclient_1eaa2ab0efacd988796bdc1f5fe4291c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/netconfclient_1eaa2ab0efacd988796bdc1f5fe4291c.py index 624cf097b..96edc6e24 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/netconfclient_1eaa2ab0efacd988796bdc1f5fe4291c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/netconfclient_1eaa2ab0efacd988796bdc1f5fe4291c.py @@ -323,7 +323,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -399,7 +399,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -668,7 +668,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -726,13 +726,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - LogCleanUpOption (str(notClean | clean)): Debug Log Clean Up - LogFileAge (number): This field determines how old logs to be deleted. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfCommandSnippetsPerClient (number): Number of Command Snippets per client.Maximum 100 are allowed per client. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -755,13 +755,13 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - LogCleanUpOption (str(notClean | clean)): Debug Log Clean Up - LogFileAge (number): This field determines how old logs to be deleted. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfCommandSnippetsPerClient (number): Number of Command Snippets per client.Maximum 100 are allowed per client. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -808,10 +808,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LogCleanUpOption (str(notClean | clean)): Debug Log Clean Up - LogFileAge (number): This field determines how old logs to be deleted. - Multiplier (number): Number of layer instances per parent instance (multiplier) @@ -819,7 +819,7 @@ def find( - NetconfSessionState (list(str[authenticating | connecting | initialized | none | openingChannel | ready | reconnecting | requestingSubsystem])): Shows the current state of the Netconf SSH Session. None - Not started. Initialized - Configuration has reached the port and TCP connect is on-going. Connecting - SSH Connect is in process. Authenticating - The SSH session is authenticating with the DUT using user/password or Key-based authentication. Open Channel - SSH session is established and SSH Channel is being opened on which data will be sent. Requesting Subsystem - Netconf Subsystem is being requested on top of SSH channel. Ready - The SSH session is in Ready state and waiting for Netconf data to be exchanged. Note that this does not mean that NETCONF is in Up state. That is reached only after Netconf Capabilities are negotiated and there is at least one matching Netconf version (1.0 or 1.1) supported on both client and server. Reconnecting - The TCP connection is broken with DUT and the client is trying to reconnect via TCP with the server. - NumberOfCommandSnippetsPerClient (number): Number of Command Snippets per client.Maximum 100 are allowed per client. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/netconfserver_bf453114f7f2bb7b009c8c9874517624.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/netconfserver_bf453114f7f2bb7b009c8c9874517624.py index a94ca85b7..e83b34e8e 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/netconfserver_bf453114f7f2bb7b009c8c9874517624.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/netconfserver_bf453114f7f2bb7b009c8c9874517624.py @@ -344,7 +344,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -468,7 +468,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -768,7 +768,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -839,12 +839,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfNotificationSnippetsPerServer (number): Number of Notification Snippets per Server.Maximum 100 are allowed per server. - NumberOfRpcResponseXmlsPerServer (number): Number of RPC Response XMLs per Server. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -866,12 +866,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfNotificationSnippetsPerServer (number): Number of Notification Snippets per Server.Maximum 100 are allowed per server. - NumberOfRpcResponseXmlsPerServer (number): Number of RPC Response XMLs per Server. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -917,17 +917,17 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NetconfSessionState (list(str[authenticated | channelOpened | multipleConnections | none | ready | subsystemRequested])): Shows the current state of the Netconf SSH Session. None - Not started. Authenticated - The SSH session has been authenticated by the server using user/password or Key-based authentication. Channel Opened- SSH session is established and SSH Channel has been opened on which data will be sent. Subsystem Requested- Netconf Subsystem has been requested on top of SSH channel. Ready - The SSH session is in Ready state and waiting for Netconf data to be exchanged. Note that this does not mean that NETCONF is in Up state. That is reached only after Netconf Capabilities are negotiated and there is at least one matching Netconf version (1.0 or 1.1) supported on both client and server. Multiple connections - The server has multiple connections - NumberOfNotificationSnippetsPerServer (number): Number of Notification Snippets per Server.Maximum 100 are allowed per server. - NumberOfRpcResponseXmlsPerServer (number): Number of RPC Response XMLs per Server. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/networkgroup_4a63874e791827c3a0361c2d201dbc0c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/networkgroup_4a63874e791827c3a0361c2d201dbc0c.py index 3163022b2..8fb7e1e13 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/networkgroup_4a63874e791827c3a0361c2d201dbc0c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/networkgroup_4a63874e791827c3a0361c2d201dbc0c.py @@ -175,13 +175,13 @@ def BgpV6IPRouteProperty(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_3bc5aff598784532c6b5ff0b601d2985.BgpV6IPRouteProperty): An instance of the BgpV6IPRouteProperty class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_e31f5dc41e1565260f4ddeb2f61efe60.BgpV6IPRouteProperty): An instance of the BgpV6IPRouteProperty class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_3bc5aff598784532c6b5ff0b601d2985 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpv6iprouteproperty_e31f5dc41e1565260f4ddeb2f61efe60 import ( BgpV6IPRouteProperty, ) @@ -575,13 +575,13 @@ def NetworkTopology(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.networktopology_657b9792feb17675a34c183046aa9924.NetworkTopology): An instance of the NetworkTopology class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.networktopology_8aeb1c02ce88d0f4f656681df998fe83.NetworkTopology): An instance of the NetworkTopology class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.networktopology_657b9792feb17675a34c183046aa9924 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.networktopology_8aeb1c02ce88d0f4f656681df998fe83 import ( NetworkTopology, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/networktopology_657b9792feb17675a34c183046aa9924.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/networktopology_8aeb1c02ce88d0f4f656681df998fe83.py similarity index 93% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/networktopology_657b9792feb17675a34c183046aa9924.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/networktopology_8aeb1c02ce88d0f4f656681df998fe83.py index 2cfc81702..3c03cf54c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/networktopology_657b9792feb17675a34c183046aa9924.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/networktopology_8aeb1c02ce88d0f4f656681df998fe83.py @@ -39,6 +39,7 @@ class NetworkTopology(Base): _SDM_ATT_MAP = { "Count": "count", "FromNodeIndex": "fromNodeIndex", + "IncludeAllTopologies": "includeAllTopologies", "LinksPerNetwork": "linksPerNetwork", "NodesPerNetwork": "nodesPerNetwork", "ToNodeIndex": "toNodeIndex", @@ -471,6 +472,21 @@ def FromNodeIndex(self): """ return self._get_attribute(self._SDM_ATT_MAP["FromNodeIndex"]) + @property + def IncludeAllTopologies(self): + # type: () -> bool + """ + Returns + ------- + - bool: Creates link(s) between one-to-many or many-to-one node(s) of different network topologies. + """ + return self._get_attribute(self._SDM_ATT_MAP["IncludeAllTopologies"]) + + @IncludeAllTopologies.setter + def IncludeAllTopologies(self, value): + # type: (bool) -> None + self._set_attribute(self._SDM_ATT_MAP["IncludeAllTopologies"], value) + @property def LinksPerNetwork(self): # type: () -> int @@ -501,9 +517,28 @@ def ToNodeIndex(self): """ return self._get_attribute(self._SDM_ATT_MAP["ToNodeIndex"]) - def add(self): + def update(self, IncludeAllTopologies=None): + # type: (bool) -> NetworkTopology + """Updates networkTopology resource on the server. + + Args + ---- + - IncludeAllTopologies (bool): Creates link(s) between one-to-many or many-to-one node(s) of different network topologies. + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def add(self, IncludeAllTopologies=None): + # type: (bool) -> NetworkTopology """Adds a new networkTopology resource on the server and adds it to the container. + Args + ---- + - IncludeAllTopologies (bool): Creates link(s) between one-to-many or many-to-one node(s) of different network topologies. + Returns ------- - self: This instance with all currently retrieved networkTopology resources using find and the newly added networkTopology resources available through an iterator or index @@ -528,11 +563,12 @@ def find( self, Count=None, FromNodeIndex=None, + IncludeAllTopologies=None, LinksPerNetwork=None, NodesPerNetwork=None, ToNodeIndex=None, ): - # type: (int, List[str], int, int, List[str]) -> NetworkTopology + # type: (int, List[str], bool, int, int, List[str]) -> NetworkTopology """Finds and retrieves networkTopology resources from the server. All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve networkTopology resources from the server. @@ -543,6 +579,7 @@ def find( ---- - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - FromNodeIndex (list(str)): Link From Node Index + - IncludeAllTopologies (bool): Creates link(s) between one-to-many or many-to-one node(s) of different network topologies. - LinksPerNetwork (number): linksPerNetwork is controled by assigned topology - NodesPerNetwork (number): Number of nodes in the Network Topology, including the root node defined in the parent Device Group - ToNodeIndex (list(str)): Link To Node Index diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ntpclock_0d879e81ae3d4c658c1fddb7e0bca059.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ntpclock_0d879e81ae3d4c658c1fddb7e0bca059.py index 2ee39ab8e..90cafc628 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ntpclock_0d879e81ae3d4c658c1fddb7e0bca059.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ntpclock_0d879e81ae3d4c658c1fddb7e0bca059.py @@ -123,7 +123,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -157,7 +157,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -277,7 +277,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -324,12 +324,12 @@ def update( Args ---- - AcceptNTPPacketswithCryptoNAK (bool): Accept NTP Packets with Crypto-NAK - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - IsParentV6 (bool): Parent v6 - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NtpServerCount (number): NTP server Count - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -353,12 +353,12 @@ def add( Args ---- - AcceptNTPPacketswithCryptoNAK (bool): Accept NTP Packets with Crypto-NAK - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - IsParentV6 (bool): Parent v6 - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NtpServerCount (number): NTP server Count - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -405,16 +405,16 @@ def find( Args ---- - AcceptNTPPacketswithCryptoNAK (bool): Accept NTP Packets with Crypto-NAK - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - IsParentV6 (bool): Parent v6 - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NtpServerCount (number): NTP server Count - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ofswitchchannel_73fc107210c8f2c174f0a9ff032ae654.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ofswitchchannel_73fc107210c8f2c174f0a9ff032ae654.py index 30b279658..01e9a01b3 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ofswitchchannel_73fc107210c8f2c174f0a9ff032ae654.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ofswitchchannel_73fc107210c8f2c174f0a9ff032ae654.py @@ -123,7 +123,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -181,7 +181,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -253,7 +253,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -308,10 +308,10 @@ def update( Args ---- - AuxConnectionsPerChannel (number): Number of Auxiliary Connections per Switch Channel - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -333,10 +333,10 @@ def add( Args ---- - AuxConnectionsPerChannel (number): Number of Auxiliary Connections per Switch Channel - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -383,15 +383,15 @@ def find( Args ---- - AuxConnectionsPerChannel (number): Number of Auxiliary Connections per Switch Channel - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalIp (list(str)): The local IP address of the interface. This field is auto-populated and cannot be changed. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - SwitchName (str): Parent Switch Name diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowchannel_97012d0be69c2c7c1b2ca179dbbe39ac.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowchannel_97012d0be69c2c7c1b2ca179dbbe39ac.py index efea8945a..c2f5e2b9b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowchannel_97012d0be69c2c7c1b2ca179dbbe39ac.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowchannel_97012d0be69c2c7c1b2ca179dbbe39ac.py @@ -187,7 +187,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -279,7 +279,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -437,7 +437,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -538,12 +538,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - GroupsPerChannel (number): Number of Groups per Channel - MetersPerChannel (number): Number of Meters per Channel - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TablesPerChannel (number): Number of Tables per Channel Raises @@ -567,12 +567,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - GroupsPerChannel (number): Number of Groups per Channel - MetersPerChannel (number): Number of Meters per Channel - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TablesPerChannel (number): Number of Tables per Channel Returns @@ -622,19 +622,19 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ControllerIndex (list(str)): Parent Controller Index - ControllerName (str): Parent Controller Name - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - GroupsPerChannel (number): Number of Groups per Channel - LocalIp (list(str)): The local IP address of the interface. This field is auto-populated and cannot be changed. - MetersPerChannel (number): Number of Meters per Channel - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TablesPerChannel (number): Number of Tables per Channel diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowcontroller_855b90b006cc4c874a779dee4d2b3eb2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowcontroller_855b90b006cc4c874a779dee4d2b3eb2.py index 2cafec2a7..8a11e5214 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowcontroller_855b90b006cc4c874a779dee4d2b3eb2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowcontroller_855b90b006cc4c874a779dee4d2b3eb2.py @@ -235,7 +235,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -329,7 +329,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -628,7 +628,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -803,13 +803,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfChannels (number): Total number of OpenFlow channels to be added for this protocol interface. - SetAsyncConfig (bool): Un-checked state means getting the async config, Checked means setting asynchronous config with available parameters - SetSwitchConfig (bool): Un-checked state means getting the async config, Checked means setting asynchronous config with available parameters - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -832,13 +832,13 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfChannels (number): Total number of OpenFlow channels to be added for this protocol interface. - SetAsyncConfig (bool): Un-checked state means getting the async config, Checked means setting asynchronous config with available parameters - SetSwitchConfig (bool): Un-checked state means getting the async config, Checked means setting asynchronous config with available parameters - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -886,18 +886,18 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ControllerLocalIp (list(str)): The local IP address of the interface. This field is auto-populated and cannot be changed. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfChannels (number): Total number of OpenFlow channels to be added for this protocol interface. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SetAsyncConfig (bool): Un-checked state means getting the async config, Checked means setting asynchronous config with available parameters - SetSwitchConfig (bool): Un-checked state means getting the async config, Checked means setting asynchronous config with available parameters - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - Version (number): Implementation Version diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowswitch_11d07d0a0b339c8fe20b86a2badffa69.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowswitch_11d07d0a0b339c8fe20b86a2badffa69.py index fba8662f3..70d606e3e 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowswitch_11d07d0a0b339c8fe20b86a2badffa69.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/openflowswitch_11d07d0a0b339c8fe20b86a2badffa69.py @@ -377,7 +377,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -511,7 +511,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1027,7 +1027,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1212,14 +1212,14 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfChannels (number): Total number of OpenFlow channels to be added for this protocol interface. - NumberOfPacketIn (number): Specify the number of packet-in ranges supported by the switch.The maximum allowed value is 10 ranges. - NumberOfTableRanges (number): Number of Tables per Switch - NumberOfUnconnectedPorts (number): Number of Unconnected Ports per Switch - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1243,14 +1243,14 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfChannels (number): Total number of OpenFlow channels to be added for this protocol interface. - NumberOfPacketIn (number): Specify the number of packet-in ranges supported by the switch.The maximum allowed value is 10 ranges. - NumberOfTableRanges (number): Number of Tables per Switch - NumberOfUnconnectedPorts (number): Number of Unconnected Ports per Switch - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1301,10 +1301,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfChannels (number): Total number of OpenFlow channels to be added for this protocol interface. @@ -1315,7 +1315,7 @@ def find( - NumberOfTopologyPorts (number): Number of Topology Ports per Switch - NumberOfUnconnectedPorts (number): Number of Unconnected Ports per Switch - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - SwitchLocalIp (list(str)): The local IP address of the interface. This field is auto-populated and cannot be changed. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/orandu_1cf7f03fca313795b6ed7e94b499b186.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/orandu_1cf7f03fca313795b6ed7e94b499b186.py new file mode 100644 index 000000000..47a060ea8 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/orandu_1cf7f03fca313795b6ed7e94b499b186.py @@ -0,0 +1,754 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class OranDU(Base): + """Oran DU Configuration + The OranDU class encapsulates a list of oranDU resources that are managed by the user. + A list of resources can be retrieved from the server using the OranDU.find() method. + The list can be managed by using the OranDU.add() and OranDU.remove() methods. + """ + + __slots__ = () + _SDM_NAME = "oranDU" + _SDM_ATT_MAP = { + "Active": "active", + "CPlaneVlanId": "cPlaneVlanId", + "CPlaneVlanIdPriority": "cPlaneVlanIdPriority", + "ConnectedVia": "connectedVia", + "Count": "count", + "DescriptiveName": "descriptiveName", + "DlCPlaneTimingAdvance": "dlCPlaneTimingAdvance", + "DlUPlaneTimingAdvance": "dlUPlaneTimingAdvance", + "Errors": "errors", + "IpDscp": "ipDscp", + "Multiplier": "multiplier", + "Name": "name", + "NumberOfCarriers": "numberOfCarriers", + "NumberOfODuCUPlanes": "numberOfODuCUPlanes", + "OverrideVlan": "overrideVlan", + "SessionStatus": "sessionStatus", + "StackedLayers": "stackedLayers", + "StateCounts": "stateCounts", + "Status": "status", + "UPlaneVlanId": "uPlaneVlanId", + "UPlaneVlanIdPriority": "uPlaneVlanIdPriority", + "UlCPlaneTimingAdvance": "ulCPlaneTimingAdvance", + } + _SDM_ENUM_MAP = { + "status": [ + "configured", + "error", + "mixed", + "notStarted", + "started", + "starting", + "stopping", + ], + } + + def __init__(self, parent, list_op=False): + super(OranDU, self).__init__(parent, list_op) + + @property + def DuCPlane(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ducplane_84f46276a04c4895c6fe4e96027e1f05.DuCPlane): An instance of the DuCPlane class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ducplane_84f46276a04c4895c6fe4e96027e1f05 import ( + DuCPlane, + ) + + if len(self._object_properties) > 0: + if self._properties.get("DuCPlane", None) is not None: + return self._properties.get("DuCPlane") + return DuCPlane(self)._select() + + @property + def DuCUPlane(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ducuplane_552b538c8627003544bf2ab434c809ef.DuCUPlane): An instance of the DuCUPlane class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ducuplane_552b538c8627003544bf2ab434c809ef import ( + DuCUPlane, + ) + + if len(self._object_properties) > 0: + if self._properties.get("DuCUPlane", None) is not None: + return self._properties.get("DuCUPlane") + return DuCUPlane(self)._select() + + @property + def DuCarrier(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ducarrier_153ae93d502f0581e2ae35d9f51bca07.DuCarrier): An instance of the DuCarrier class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ducarrier_153ae93d502f0581e2ae35d9f51bca07 import ( + DuCarrier, + ) + + if len(self._object_properties) > 0: + if self._properties.get("DuCarrier", None) is not None: + return self._properties.get("DuCarrier") + return DuCarrier(self)._select() + + @property + def DuUPlane(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.duuplane_c9477b2ed619d1459be1f2c472176a7e.DuUPlane): An instance of the DuUPlane class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.duuplane_c9477b2ed619d1459be1f2c472176a7e import ( + DuUPlane, + ) + + if len(self._object_properties) > 0: + if self._properties.get("DuUPlane", None) is not None: + return self._properties.get("DuUPlane") + return DuUPlane(self)._select() + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def CPlaneVlanId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): 12-bit VLAN ID in the VLAN tag to be used for C-Plane messages. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["CPlaneVlanId"])) + + @property + def CPlaneVlanIdPriority(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): 3-bit user priority field in the VLAN tag used for C-Plane messages. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CPlaneVlanIdPriority"]) + ) + + @property + def ConnectedVia(self): + # type: () -> List[str] + """DEPRECATED + Returns + ------- + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. + """ + return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) + + @ConnectedVia.setter + def ConnectedVia(self, value): + # type: (List[str]) -> None + self._set_attribute(self._SDM_ATT_MAP["ConnectedVia"], value) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def DlCPlaneTimingAdvance(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): DL C-Plane Timing Advance (ns) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["DlCPlaneTimingAdvance"]) + ) + + @property + def DlUPlaneTimingAdvance(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): DL U-Plane Timing Advance (ns) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["DlUPlaneTimingAdvance"]) + ) + + @property + def Errors(self): + """ + Returns + ------- + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred + """ + return self._get_attribute(self._SDM_ATT_MAP["Errors"]) + + @property + def IpDscp(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Configuration of the IP DSCP value. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IpDscp"])) + + @property + def Multiplier(self): + # type: () -> int + """ + Returns + ------- + - number: Number of layer instances per parent instance (multiplier) + """ + return self._get_attribute(self._SDM_ATT_MAP["Multiplier"]) + + @Multiplier.setter + def Multiplier(self, value): + # type: (int) -> None + self._set_attribute(self._SDM_ATT_MAP["Multiplier"], value) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + @property + def NumberOfCarriers(self): + # type: () -> int + """ + Returns + ------- + - number: Number of carriers to be configured. + """ + return self._get_attribute(self._SDM_ATT_MAP["NumberOfCarriers"]) + + @NumberOfCarriers.setter + def NumberOfCarriers(self, value): + # type: (int) -> None + self._set_attribute(self._SDM_ATT_MAP["NumberOfCarriers"], value) + + @property + def NumberOfODuCUPlanes(self): + # type: () -> int + """ + Returns + ------- + - number: Represents control/user plane of O-DU. + """ + return self._get_attribute(self._SDM_ATT_MAP["NumberOfODuCUPlanes"]) + + @NumberOfODuCUPlanes.setter + def NumberOfODuCUPlanes(self, value): + # type: (int) -> None + self._set_attribute(self._SDM_ATT_MAP["NumberOfODuCUPlanes"], value) + + @property + def OverrideVlan(self): + # type: () -> bool + """ + Returns + ------- + - bool: Override the ethernet VLAN with this for C-Plane and U-Plane messages. + """ + return self._get_attribute(self._SDM_ATT_MAP["OverrideVlan"]) + + @OverrideVlan.setter + def OverrideVlan(self, value): + # type: (bool) -> None + self._set_attribute(self._SDM_ATT_MAP["OverrideVlan"], value) + + @property + def SessionStatus(self): + # type: () -> List[str] + """ + Returns + ------- + - list(str[down | notStarted | up]): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. + """ + return self._get_attribute(self._SDM_ATT_MAP["SessionStatus"]) + + @property + def StackedLayers(self): + # type: () -> List[str] + """ + Returns + ------- + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols + """ + return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) + + @StackedLayers.setter + def StackedLayers(self, value): + # type: (List[str]) -> None + self._set_attribute(self._SDM_ATT_MAP["StackedLayers"], value) + + @property + def StateCounts(self): + """ + Returns + ------- + - dict(total:number,notStarted:number,down:number,up:number): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up + """ + return self._get_attribute(self._SDM_ATT_MAP["StateCounts"]) + + @property + def Status(self): + # type: () -> str + """ + Returns + ------- + - str(configured | error | mixed | notStarted | started | starting | stopping): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. + """ + return self._get_attribute(self._SDM_ATT_MAP["Status"]) + + @property + def UPlaneVlanId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): 12-bit VLAN ID in the VLAN tag to be used for U-Plane messages. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["UPlaneVlanId"])) + + @property + def UPlaneVlanIdPriority(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): 3-bit user priority field in the VLAN tag used for U-Plane messages. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["UPlaneVlanIdPriority"]) + ) + + @property + def UlCPlaneTimingAdvance(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): UL C-Plane Time Advance (ns) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["UlCPlaneTimingAdvance"]) + ) + + def update( + self, + ConnectedVia=None, + Multiplier=None, + Name=None, + NumberOfCarriers=None, + NumberOfODuCUPlanes=None, + OverrideVlan=None, + StackedLayers=None, + ): + # type: (List[str], int, str, int, int, bool, List[str]) -> OranDU + """Updates oranDU resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. + - Multiplier (number): Number of layer instances per parent instance (multiplier) + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + - NumberOfCarriers (number): Number of carriers to be configured. + - NumberOfODuCUPlanes (number): Represents control/user plane of O-DU. + - OverrideVlan (bool): Override the ethernet VLAN with this for C-Plane and U-Plane messages. + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def add( + self, + ConnectedVia=None, + Multiplier=None, + Name=None, + NumberOfCarriers=None, + NumberOfODuCUPlanes=None, + OverrideVlan=None, + StackedLayers=None, + ): + # type: (List[str], int, str, int, int, bool, List[str]) -> OranDU + """Adds a new oranDU resource on the server and adds it to the container. + + Args + ---- + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. + - Multiplier (number): Number of layer instances per parent instance (multiplier) + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + - NumberOfCarriers (number): Number of carriers to be configured. + - NumberOfODuCUPlanes (number): Represents control/user plane of O-DU. + - OverrideVlan (bool): Override the ethernet VLAN with this for C-Plane and U-Plane messages. + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols + + Returns + ------- + - self: This instance with all currently retrieved oranDU resources using find and the newly added oranDU resources available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._create(self._map_locals(self._SDM_ATT_MAP, locals())) + + def remove(self): + """Deletes all the contained oranDU resources in this instance from the server. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + self._delete() + + def find( + self, + ConnectedVia=None, + Count=None, + DescriptiveName=None, + Errors=None, + Multiplier=None, + Name=None, + NumberOfCarriers=None, + NumberOfODuCUPlanes=None, + OverrideVlan=None, + SessionStatus=None, + StackedLayers=None, + StateCounts=None, + Status=None, + ): + """Finds and retrieves oranDU resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve oranDU resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all oranDU resources from the server. + + Args + ---- + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred + - Multiplier (number): Number of layer instances per parent instance (multiplier) + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + - NumberOfCarriers (number): Number of carriers to be configured. + - NumberOfODuCUPlanes (number): Represents control/user plane of O-DU. + - OverrideVlan (bool): Override the ethernet VLAN with this for C-Plane and U-Plane messages. + - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols + - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up + - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. + + Returns + ------- + - self: This instance with matching oranDU resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of oranDU data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the oranDU resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def Abort(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the abort operation on the server. + + Abort CPF control plane (equals to demote to kUnconfigured state). + + The IxNetwork model allows for multiple method Signatures with the same name while python does not. + + abort(async_operation=bool) + --------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + abort(SessionIndices=list, async_operation=bool) + ------------------------------------------------ + - SessionIndices (list(number)): This parameter requires an array of session numbers 1 2 3 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + abort(SessionIndices=string, async_operation=bool) + -------------------------------------------------- + - SessionIndices (str): This parameter requires a string of session numbers 1-4;6;7-12 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("abort", payload=payload, response_object=None) + + def RestartDown(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the restartDown operation on the server. + + Stop and start interfaces and sessions that are in Down state. + + The IxNetwork model allows for multiple method Signatures with the same name while python does not. + + restartDown(async_operation=bool) + --------------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + restartDown(SessionIndices=list, async_operation=bool) + ------------------------------------------------------ + - SessionIndices (list(number)): This parameter requires an array of session numbers 1 2 3 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + restartDown(SessionIndices=string, async_operation=bool) + -------------------------------------------------------- + - SessionIndices (str): This parameter requires a string of session numbers 1-4;6;7-12 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("restartDown", payload=payload, response_object=None) + + def Start(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the start operation on the server. + + Start CPF control plane (equals to promote to negotiated state). + + The IxNetwork model allows for multiple method Signatures with the same name while python does not. + + start(async_operation=bool) + --------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + start(SessionIndices=list, async_operation=bool) + ------------------------------------------------ + - SessionIndices (list(number)): This parameter requires an array of session numbers 1 2 3 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + start(SessionIndices=string, async_operation=bool) + -------------------------------------------------- + - SessionIndices (str): This parameter requires a string of session numbers 1-4;6;7-12 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("start", payload=payload, response_object=None) + + def Stop(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the stop operation on the server. + + Stop CPF control plane (equals to demote to PreValidated-DoDDone state). + + The IxNetwork model allows for multiple method Signatures with the same name while python does not. + + stop(async_operation=bool) + -------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + stop(SessionIndices=list, async_operation=bool) + ----------------------------------------------- + - SessionIndices (list(number)): This parameter requires an array of session numbers 1 2 3 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + stop(SessionIndices=string, async_operation=bool) + ------------------------------------------------- + - SessionIndices (str): This parameter requires a string of session numbers 1-4;6;7-12 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("stop", payload=payload, response_object=None) + + def get_device_ids( + self, + PortNames=None, + Active=None, + CPlaneVlanId=None, + CPlaneVlanIdPriority=None, + DlCPlaneTimingAdvance=None, + DlUPlaneTimingAdvance=None, + IpDscp=None, + UPlaneVlanId=None, + UPlaneVlanIdPriority=None, + UlCPlaneTimingAdvance=None, + ): + """Base class infrastructure that gets a list of oranDU device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + - CPlaneVlanId (str): optional regex of cPlaneVlanId + - CPlaneVlanIdPriority (str): optional regex of cPlaneVlanIdPriority + - DlCPlaneTimingAdvance (str): optional regex of dlCPlaneTimingAdvance + - DlUPlaneTimingAdvance (str): optional regex of dlUPlaneTimingAdvance + - IpDscp (str): optional regex of ipDscp + - UPlaneVlanId (str): optional regex of uPlaneVlanId + - UPlaneVlanIdPriority (str): optional regex of uPlaneVlanIdPriority + - UlCPlaneTimingAdvance (str): optional regex of ulCPlaneTimingAdvance + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/oranru_38317a0c7fd50491419113310eba9bb0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/oranru_38317a0c7fd50491419113310eba9bb0.py new file mode 100644 index 000000000..ea473d3e0 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/oranru_38317a0c7fd50491419113310eba9bb0.py @@ -0,0 +1,668 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class OranRU(Base): + """Oran RU Configuration. + The OranRU class encapsulates a list of oranRU resources that are managed by the user. + A list of resources can be retrieved from the server using the OranRU.find() method. + The list can be managed by using the OranRU.add() and OranRU.remove() methods. + """ + + __slots__ = () + _SDM_NAME = "oranRU" + _SDM_ATT_MAP = { + "Active": "active", + "ConnectedVia": "connectedVia", + "Count": "count", + "DescriptiveName": "descriptiveName", + "Errors": "errors", + "IpDscp": "ipDscp", + "Multiplier": "multiplier", + "Name": "name", + "NumberOfCarriers": "numberOfCarriers", + "NumberOfORuCUPlaneList": "numberOfORuCUPlaneList", + "OverrideVlan": "overrideVlan", + "SessionStatus": "sessionStatus", + "StackedLayers": "stackedLayers", + "StateCounts": "stateCounts", + "Status": "status", + "UPlaneVlanId": "uPlaneVlanId", + "UPlaneVlanIdPriority": "uPlaneVlanIdPriority", + "UlUPlaneTimingDelay": "ulUPlaneTimingDelay", + } + _SDM_ENUM_MAP = { + "status": [ + "configured", + "error", + "mixed", + "notStarted", + "started", + "starting", + "stopping", + ], + } + + def __init__(self, parent, list_op=False): + super(OranRU, self).__init__(parent, list_op) + + @property + def RuCUPlane(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.rucuplane_5a30497b19e2a66b22c8822c83c1df83.RuCUPlane): An instance of the RuCUPlane class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.rucuplane_5a30497b19e2a66b22c8822c83c1df83 import ( + RuCUPlane, + ) + + if len(self._object_properties) > 0: + if self._properties.get("RuCUPlane", None) is not None: + return self._properties.get("RuCUPlane") + return RuCUPlane(self)._select() + + @property + def RuCarrier(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.rucarrier_9fc1ca05aa71639ef4aa1bf05267ec32.RuCarrier): An instance of the RuCarrier class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.rucarrier_9fc1ca05aa71639ef4aa1bf05267ec32 import ( + RuCarrier, + ) + + if len(self._object_properties) > 0: + if self._properties.get("RuCarrier", None) is not None: + return self._properties.get("RuCarrier") + return RuCarrier(self)._select() + + @property + def RuUPlane(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ruuplane_49d312b91abfe9fd6bdfee21a53fb842.RuUPlane): An instance of the RuUPlane class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ruuplane_49d312b91abfe9fd6bdfee21a53fb842 import ( + RuUPlane, + ) + + if len(self._object_properties) > 0: + if self._properties.get("RuUPlane", None) is not None: + return self._properties.get("RuUPlane") + return RuUPlane(self)._select() + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def ConnectedVia(self): + # type: () -> List[str] + """DEPRECATED + Returns + ------- + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. + """ + return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) + + @ConnectedVia.setter + def ConnectedVia(self, value): + # type: (List[str]) -> None + self._set_attribute(self._SDM_ATT_MAP["ConnectedVia"], value) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def Errors(self): + """ + Returns + ------- + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred + """ + return self._get_attribute(self._SDM_ATT_MAP["Errors"]) + + @property + def IpDscp(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Configuration of the IP DSCP value. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IpDscp"])) + + @property + def Multiplier(self): + # type: () -> int + """ + Returns + ------- + - number: Number of layer instances per parent instance (multiplier) + """ + return self._get_attribute(self._SDM_ATT_MAP["Multiplier"]) + + @Multiplier.setter + def Multiplier(self, value): + # type: (int) -> None + self._set_attribute(self._SDM_ATT_MAP["Multiplier"], value) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + @property + def NumberOfCarriers(self): + # type: () -> int + """ + Returns + ------- + - number: Number of carriers to be configured. + """ + return self._get_attribute(self._SDM_ATT_MAP["NumberOfCarriers"]) + + @NumberOfCarriers.setter + def NumberOfCarriers(self, value): + # type: (int) -> None + self._set_attribute(self._SDM_ATT_MAP["NumberOfCarriers"], value) + + @property + def NumberOfORuCUPlaneList(self): + # type: () -> int + """ + Returns + ------- + - number: Represents traffic endpoints for O-RU. + """ + return self._get_attribute(self._SDM_ATT_MAP["NumberOfORuCUPlaneList"]) + + @NumberOfORuCUPlaneList.setter + def NumberOfORuCUPlaneList(self, value): + # type: (int) -> None + self._set_attribute(self._SDM_ATT_MAP["NumberOfORuCUPlaneList"], value) + + @property + def OverrideVlan(self): + # type: () -> bool + """ + Returns + ------- + - bool: Override the ethernet VLAN with this for C-Plane and U-Plane messages. + """ + return self._get_attribute(self._SDM_ATT_MAP["OverrideVlan"]) + + @OverrideVlan.setter + def OverrideVlan(self, value): + # type: (bool) -> None + self._set_attribute(self._SDM_ATT_MAP["OverrideVlan"], value) + + @property + def SessionStatus(self): + # type: () -> List[str] + """ + Returns + ------- + - list(str[down | notStarted | up]): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. + """ + return self._get_attribute(self._SDM_ATT_MAP["SessionStatus"]) + + @property + def StackedLayers(self): + # type: () -> List[str] + """ + Returns + ------- + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols + """ + return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) + + @StackedLayers.setter + def StackedLayers(self, value): + # type: (List[str]) -> None + self._set_attribute(self._SDM_ATT_MAP["StackedLayers"], value) + + @property + def StateCounts(self): + """ + Returns + ------- + - dict(total:number,notStarted:number,down:number,up:number): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up + """ + return self._get_attribute(self._SDM_ATT_MAP["StateCounts"]) + + @property + def Status(self): + # type: () -> str + """ + Returns + ------- + - str(configured | error | mixed | notStarted | started | starting | stopping): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. + """ + return self._get_attribute(self._SDM_ATT_MAP["Status"]) + + @property + def UPlaneVlanId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): 12-bit VLAN ID in the VLAN tag to be used for U-Plane messages. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["UPlaneVlanId"])) + + @property + def UPlaneVlanIdPriority(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): 3-bit user priority field in the VLAN tag used for U-Plane messages. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["UPlaneVlanIdPriority"]) + ) + + @property + def UlUPlaneTimingDelay(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): UL U-Plane Timing Delay (ns) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["UlUPlaneTimingDelay"]) + ) + + def update( + self, + ConnectedVia=None, + Multiplier=None, + Name=None, + NumberOfCarriers=None, + NumberOfORuCUPlaneList=None, + OverrideVlan=None, + StackedLayers=None, + ): + # type: (List[str], int, str, int, int, bool, List[str]) -> OranRU + """Updates oranRU resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. + - Multiplier (number): Number of layer instances per parent instance (multiplier) + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + - NumberOfCarriers (number): Number of carriers to be configured. + - NumberOfORuCUPlaneList (number): Represents traffic endpoints for O-RU. + - OverrideVlan (bool): Override the ethernet VLAN with this for C-Plane and U-Plane messages. + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def add( + self, + ConnectedVia=None, + Multiplier=None, + Name=None, + NumberOfCarriers=None, + NumberOfORuCUPlaneList=None, + OverrideVlan=None, + StackedLayers=None, + ): + # type: (List[str], int, str, int, int, bool, List[str]) -> OranRU + """Adds a new oranRU resource on the server and adds it to the container. + + Args + ---- + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. + - Multiplier (number): Number of layer instances per parent instance (multiplier) + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + - NumberOfCarriers (number): Number of carriers to be configured. + - NumberOfORuCUPlaneList (number): Represents traffic endpoints for O-RU. + - OverrideVlan (bool): Override the ethernet VLAN with this for C-Plane and U-Plane messages. + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols + + Returns + ------- + - self: This instance with all currently retrieved oranRU resources using find and the newly added oranRU resources available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._create(self._map_locals(self._SDM_ATT_MAP, locals())) + + def remove(self): + """Deletes all the contained oranRU resources in this instance from the server. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + self._delete() + + def find( + self, + ConnectedVia=None, + Count=None, + DescriptiveName=None, + Errors=None, + Multiplier=None, + Name=None, + NumberOfCarriers=None, + NumberOfORuCUPlaneList=None, + OverrideVlan=None, + SessionStatus=None, + StackedLayers=None, + StateCounts=None, + Status=None, + ): + """Finds and retrieves oranRU resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve oranRU resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all oranRU resources from the server. + + Args + ---- + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred + - Multiplier (number): Number of layer instances per parent instance (multiplier) + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + - NumberOfCarriers (number): Number of carriers to be configured. + - NumberOfORuCUPlaneList (number): Represents traffic endpoints for O-RU. + - OverrideVlan (bool): Override the ethernet VLAN with this for C-Plane and U-Plane messages. + - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols + - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up + - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. + + Returns + ------- + - self: This instance with matching oranRU resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of oranRU data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the oranRU resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def Abort(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the abort operation on the server. + + Abort CPF control plane (equals to demote to kUnconfigured state). + + The IxNetwork model allows for multiple method Signatures with the same name while python does not. + + abort(async_operation=bool) + --------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + abort(SessionIndices=list, async_operation=bool) + ------------------------------------------------ + - SessionIndices (list(number)): This parameter requires an array of session numbers 1 2 3 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + abort(SessionIndices=string, async_operation=bool) + -------------------------------------------------- + - SessionIndices (str): This parameter requires a string of session numbers 1-4;6;7-12 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("abort", payload=payload, response_object=None) + + def RestartDown(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the restartDown operation on the server. + + Stop and start interfaces and sessions that are in Down state. + + The IxNetwork model allows for multiple method Signatures with the same name while python does not. + + restartDown(async_operation=bool) + --------------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + restartDown(SessionIndices=list, async_operation=bool) + ------------------------------------------------------ + - SessionIndices (list(number)): This parameter requires an array of session numbers 1 2 3 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + restartDown(SessionIndices=string, async_operation=bool) + -------------------------------------------------------- + - SessionIndices (str): This parameter requires a string of session numbers 1-4;6;7-12 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("restartDown", payload=payload, response_object=None) + + def Start(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the start operation on the server. + + Start CPF control plane (equals to promote to negotiated state). + + The IxNetwork model allows for multiple method Signatures with the same name while python does not. + + start(async_operation=bool) + --------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + start(SessionIndices=list, async_operation=bool) + ------------------------------------------------ + - SessionIndices (list(number)): This parameter requires an array of session numbers 1 2 3 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + start(SessionIndices=string, async_operation=bool) + -------------------------------------------------- + - SessionIndices (str): This parameter requires a string of session numbers 1-4;6;7-12 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("start", payload=payload, response_object=None) + + def Stop(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the stop operation on the server. + + Stop CPF control plane (equals to demote to PreValidated-DoDDone state). + + The IxNetwork model allows for multiple method Signatures with the same name while python does not. + + stop(async_operation=bool) + -------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + stop(SessionIndices=list, async_operation=bool) + ----------------------------------------------- + - SessionIndices (list(number)): This parameter requires an array of session numbers 1 2 3 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + stop(SessionIndices=string, async_operation=bool) + ------------------------------------------------- + - SessionIndices (str): This parameter requires a string of session numbers 1-4;6;7-12 + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("stop", payload=payload, response_object=None) + + def get_device_ids( + self, + PortNames=None, + Active=None, + IpDscp=None, + UPlaneVlanId=None, + UPlaneVlanIdPriority=None, + UlUPlaneTimingDelay=None, + ): + """Base class infrastructure that gets a list of oranRU device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + - IpDscp (str): optional regex of ipDscp + - UPlaneVlanId (str): optional regex of uPlaneVlanId + - UPlaneVlanIdPriority (str): optional regex of uPlaneVlanIdPriority + - UlUPlaneTimingDelay (str): optional regex of ulUPlaneTimingDelay + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv2_eb5737de1e17134d62e78286b93d24ac.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv2_eb5737de1e17134d62e78286b93d24ac.py index ab7076e67..d774350dd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv2_eb5737de1e17134d62e78286b93d24ac.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv2_eb5737de1e17134d62e78286b93d24ac.py @@ -333,7 +333,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -510,7 +510,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -894,7 +894,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1038,13 +1038,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableFast2wayConvergence (bool): Enable 2-way Adj Fast Convergence - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfTeProfile (number): Number of TE Profile - SrlgCount (number): This field value shows how many SRLG Value columns would be there in the GUI. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1067,13 +1067,13 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableFast2wayConvergence (bool): Enable 2-way Adj Fast Convergence - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NoOfTeProfile (number): Number of TE Profile - SrlgCount (number): This field value shows how many SRLG Value columns would be there in the GUI. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1123,11 +1123,11 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableFast2wayConvergence (bool): Enable 2-way Adj Fast Convergence - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -1137,7 +1137,7 @@ def find( - SessionInfo (list(str[ifaceSessInfoAllNbrIn2Way | ifaceSessInfoAllNbrInattempt | ifaceSessInfoAllNbrInDown | ifaceSessInfoAllNbrInExchange | ifaceSessInfoAllNbrInExStart | ifaceSessInfoAllNbrInInit | ifaceSessInfoAllNbrInLoading | ifaceSessInfoFsmNotStarted | ifaceSessInfoSameNbrId | iPAddressNotRcvd | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SrlgCount (number): This field value shows how many SRLG Value columns would be there in the GUI. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv2router_cbf436add158272345961e609dd48227.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv2router_cbf436add158272345961e609dd48227.py index a4cb518d1..ad97d0a4a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv2router_cbf436add158272345961e609dd48227.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv2router_cbf436add158272345961e609dd48227.py @@ -497,7 +497,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1193,7 +1193,7 @@ def find( - EnableBIER (bool): Enable BIER - EnableSegmentRouting (bool): Enable Segment Routing - EnableSrlb (bool): Enable SRLB - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - FlexAlgoCount (number): If the count is greater than 0, then the Flex Algo tab will appear after OSPF RTR tab. Default is 0. Range is 0-128. - LocalRouterID (list(str)): Router ID - LoopBackAddress (list(str)): Router ID diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3_3fea0f5606ed503cbf2020d4f305b6fa.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3_3fea0f5606ed503cbf2020d4f305b6fa.py index 4a7452423..7682e72dd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3_3fea0f5606ed503cbf2020d4f305b6fa.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3_3fea0f5606ed503cbf2020d4f305b6fa.py @@ -276,7 +276,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -414,7 +414,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -782,7 +782,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -875,10 +875,10 @@ def update( Args ---- - AdjSidCount (number): Count of SRv6 Adjacency Segment Identifier. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -900,10 +900,10 @@ def add( Args ---- - AdjSidCount (number): Count of SRv6 Adjacency Segment Identifier. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -952,10 +952,10 @@ def find( Args ---- - AdjSidCount (number): Count of SRv6 Adjacency Segment Identifier. - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterID (list(str)): Router ID - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -963,7 +963,7 @@ def find( - Ospfv3NeighborState (list(str[attempt | down | exchange | exStart | full | init | loading | multiNeighbor | none | twoWay])): Logs additional information about the Neighbor State - SessionInfo (list(str[ifaceSessInfoAllNbrIn2Way | ifaceSessInfoAllNbrInattempt | ifaceSessInfoAllNbrInDown | ifaceSessInfoAllNbrInExchange | ifaceSessInfoAllNbrInExStart | ifaceSessInfoAllNbrInInit | ifaceSessInfoAllNbrInLoading | ifaceSessInfoFsmNotStarted | ifaceSessInfoSameNbrId | iPAddressNotRcvd | none])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3pseudointerface_327f4e2b6135eda641c61e8b406754f5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3pseudointerface_1f2c21f89a2195f0af73017a746752a7.py similarity index 97% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3pseudointerface_327f4e2b6135eda641c61e8b406754f5.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3pseudointerface_1f2c21f89a2195f0af73017a746752a7.py index 2e471ead7..0e0c62899 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3pseudointerface_327f4e2b6135eda641c61e8b406754f5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3pseudointerface_1f2c21f89a2195f0af73017a746752a7.py @@ -38,6 +38,7 @@ class Ospfv3PseudoInterface(Base): _SDM_ATT_MAP = { "AdjSID": "adjSID", "AdjSidCount": "adjSidCount", + "AdvertiseIntraAreaPrefixLSA": "advertiseIntraAreaPrefixLSA", "AdvertiseLinkMsd": "advertiseLinkMsd", "BFlag": "bFlag", "Count": "count", @@ -115,6 +116,20 @@ def AdjSidCount(self, value): # type: (int) -> None self._set_attribute(self._SDM_ATT_MAP["AdjSidCount"], value) + @property + def AdvertiseIntraAreaPrefixLSA(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If enabled, IPv6 addresses of interface will be advertised in Intra-Area-Prefix LSA. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["AdvertiseIntraAreaPrefixLSA"]) + ) + @property def AdvertiseLinkMsd(self): # type: () -> 'Multivalue' @@ -634,6 +649,7 @@ def get_device_ids( self, PortNames=None, AdjSID=None, + AdvertiseIntraAreaPrefixLSA=None, AdvertiseLinkMsd=None, BFlag=None, EnableAdjSID=None, @@ -664,6 +680,7 @@ def get_device_ids( ---- - PortNames (str): optional regex of port names - AdjSID (str): optional regex of adjSID + - AdvertiseIntraAreaPrefixLSA (str): optional regex of advertiseIntraAreaPrefixLSA - AdvertiseLinkMsd (str): optional regex of advertiseLinkMsd - BFlag (str): optional regex of bFlag - EnableAdjSID (str): optional regex of enableAdjSID diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3router_8b017f50055a8a8daa11df922db1a75a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3router_8b017f50055a8a8daa11df922db1a75a.py index 76abffc10..8fbffd42b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3router_8b017f50055a8a8daa11df922db1a75a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ospfv3router_8b017f50055a8a8daa11df922db1a75a.py @@ -408,7 +408,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -897,7 +897,7 @@ def find( - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableSrMpls (bool): Makes the Segment Routing configuration enabled - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterId (list(str)): Router ID - LocatorCount (number): This field denotes the locator Count. - Name (str): Name of NGPF element, guaranteed to be unique in Scenario diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ovsdbcontroller_789ff2911c009a5ce719da4041ccbf73.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ovsdbcontroller_789ff2911c009a5ce719da4041ccbf73.py index 4f6552009..9b8287aa0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ovsdbcontroller_789ff2911c009a5ce719da4041ccbf73.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ovsdbcontroller_789ff2911c009a5ce719da4041ccbf73.py @@ -161,7 +161,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -358,7 +358,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -520,7 +520,7 @@ def PseudoConnectedTo(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): GUI-only connection + - str(None | /api/v1/sessions/1/ixnetwork/topology): GUI-only connection """ return self._get_attribute(self._SDM_ATT_MAP["PseudoConnectedTo"]) @@ -535,7 +535,7 @@ def PseudoConnectedToBfd(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): GUI-only connection + - str(None | /api/v1/sessions/1/ixnetwork/topology): GUI-only connection """ return self._get_attribute(self._SDM_ATT_MAP["PseudoConnectedToBfd"]) @@ -550,7 +550,7 @@ def PseudoConnectedToVxlanReplicator(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): GUI-only connection + - str(None | /api/v1/sessions/1/ixnetwork/topology): GUI-only connection """ return self._get_attribute( self._SDM_ATT_MAP["PseudoConnectedToVxlanReplicator"] @@ -658,7 +658,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -747,7 +747,7 @@ def Vxlan(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): + - str(None | /api/v1/sessions/1/ixnetwork/topology): """ return self._get_attribute(self._SDM_ATT_MAP["Vxlan"]) @@ -762,7 +762,7 @@ def VxlanReplicator(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): + - str(None | /api/v1/sessions/1/ixnetwork/topology): """ return self._get_attribute(self._SDM_ATT_MAP["VxlanReplicator"]) @@ -796,20 +796,20 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableLogging (bool): If true, Port debug logs will be recorded, Maximum recording will be upto 500 MB . - LatestDumpDbFileNames (str): Api to fetch latest DumpDb Files - LatestErrorFileNames (str): Api to fetch latest Error Files - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection - - PseudoConnectedToBfd (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection - - PseudoConnectedToVxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection + - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection + - PseudoConnectedToBfd (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection + - PseudoConnectedToVxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection - ServerAddDeleteConnectionError (str): API to retrieve error occured while Adding/ Deleting Server - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TimeOut (number): Transact request Time Out in seconds. For scale scenarios increase this Timeout value. - - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): - - VxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): + - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology)): + - VxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology)): Raises ------ @@ -839,20 +839,20 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableLogging (bool): If true, Port debug logs will be recorded, Maximum recording will be upto 500 MB . - LatestDumpDbFileNames (str): Api to fetch latest DumpDb Files - LatestErrorFileNames (str): Api to fetch latest Error Files - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection - - PseudoConnectedToBfd (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection - - PseudoConnectedToVxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection + - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection + - PseudoConnectedToBfd (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection + - PseudoConnectedToVxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection - ServerAddDeleteConnectionError (str): API to retrieve error occured while Adding/ Deleting Server - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TimeOut (number): Transact request Time Out in seconds. For scale scenarios increase this Timeout value. - - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): - - VxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): + - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology)): + - VxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology)): Returns ------- @@ -910,18 +910,18 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableLogging (bool): If true, Port debug logs will be recorded, Maximum recording will be upto 500 MB . - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LatestDumpDbFileNames (str): Api to fetch latest DumpDb Files - LatestErrorFileNames (str): Api to fetch latest Error Files - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection - - PseudoConnectedToBfd (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection - - PseudoConnectedToVxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection + - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection + - PseudoConnectedToBfd (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection + - PseudoConnectedToVxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection - PseudoMultiplier (number): Multiplier for GUI-only connection - PseudoMultiplierBfd (number): Multiplier for GUI-only connection - PseudoMultiplierVxlanReplicator (number): Multiplier for GUI-only connection @@ -929,12 +929,12 @@ def find( - ServerAddDeleteConnectionError (str): API to retrieve error occured while Adding/ Deleting Server - ServerAddDeleteStatus (str): Status of all servers Added/Deleted to Controller. Use Get Server Add/Delete Status, right click action to get current status - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TimeOut (number): Transact request Time Out in seconds. For scale scenarios increase this Timeout value. - - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): - - VxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): + - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology)): + - VxlanReplicator (str(None | /api/v1/sessions/1/ixnetwork/topology)): Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ovsdbserver_54c04aa8692b2b034dcd8eac05978340.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ovsdbserver_54c04aa8692b2b034dcd8eac05978340.py index 2fa4aa4fd..629fd9960 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ovsdbserver_54c04aa8692b2b034dcd8eac05978340.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ovsdbserver_54c04aa8692b2b034dcd8eac05978340.py @@ -100,7 +100,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -160,7 +160,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -267,7 +267,7 @@ def PseudoConnectedTo(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): GUI-only connection + - str(None | /api/v1/sessions/1/ixnetwork/topology): GUI-only connection """ return self._get_attribute(self._SDM_ATT_MAP["PseudoConnectedTo"]) @@ -314,7 +314,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -348,7 +348,7 @@ def Vxlan(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): + - str(None | /api/v1/sessions/1/ixnetwork/topology): """ return self._get_attribute(self._SDM_ATT_MAP["Vxlan"]) @@ -375,13 +375,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ManagerCount (number): Number of Managers the OVSDB Server will initiate connections to - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols - - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): + - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols + - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology)): Raises ------ @@ -404,13 +404,13 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ManagerCount (number): Number of Managers the OVSDB Server will initiate connections to - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols - - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): + - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols + - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology)): Returns ------- @@ -457,20 +457,20 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - ManagerCount (number): Number of Managers the OVSDB Server will initiate connections to - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): GUI-only connection + - PseudoConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/topology)): GUI-only connection - PseudoMultiplier (number): Multiplier for GUI-only connection - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): + - Vxlan (str(None | /api/v1/sessions/1/ixnetwork/topology)): Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pcc_4548de1a5046938dd4962870dfbd425f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pcc_4548de1a5046938dd4962870dfbd425f.py index 80de91969..acd08beea 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pcc_4548de1a5046938dd4962870dfbd425f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pcc_4548de1a5046938dd4962870dfbd425f.py @@ -275,7 +275,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -333,7 +333,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -731,7 +731,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -806,14 +806,14 @@ def update( Args ---- - Active_pre_established_lsps (number): - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ExpectedInitiatedLspsForTraffic (number): Based on the value in this control the number of Expected Initiated LSPs for Traffic can be configured. This is used for traffic only. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfBackupPCEs (number): Number of Backup PCEs - PreEstablishedSrLspsPerPcc (number): Pre-Established SR LSPs per PCC - RequestedLspsPerPcc (number): Requested LSPs per PCC - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -839,14 +839,14 @@ def add( Args ---- - Active_pre_established_lsps (number): - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - ExpectedInitiatedLspsForTraffic (number): Based on the value in this control the number of Expected Initiated LSPs for Traffic can be configured. This is used for traffic only. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfBackupPCEs (number): Number of Backup PCEs - PreEstablishedSrLspsPerPcc (number): Pre-Established SR LSPs per PCC - RequestedLspsPerPcc (number): Requested LSPs per PCC - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -895,10 +895,10 @@ def find( Args ---- - Active_pre_established_lsps (number): - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - ExpectedInitiatedLspsForTraffic (number): Based on the value in this control the number of Expected Initiated LSPs for Traffic can be configured. This is used for traffic only. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -906,7 +906,7 @@ def find( - PreEstablishedSrLspsPerPcc (number): Pre-Established SR LSPs per PCC - RequestedLspsPerPcc (number): Requested LSPs per PCC - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pccgroup_de05278160425f9f4927025725e28501.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pccgroup_de05278160425f9f4927025725e28501.py index 04f78c831..e66dc7e55 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pccgroup_de05278160425f9f4927025725e28501.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pccgroup_de05278160425f9f4927025725e28501.py @@ -248,7 +248,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -294,7 +294,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -566,7 +566,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -625,12 +625,12 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PcReplyLspsPerPcc (number): Controls the maximum number of PCE LSPs that can be send as PATH Response. - PceInitiatedLspsPerPcc (number): Controls the maximum number of PCE LSPs that can be Initiated per PCC. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -652,12 +652,12 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PcReplyLspsPerPcc (number): Controls the maximum number of PCE LSPs that can be send as PATH Response. - PceInitiatedLspsPerPcc (number): Controls the maximum number of PCE LSPs that can be Initiated per PCC. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -702,16 +702,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PcReplyLspsPerPcc (number): Controls the maximum number of PCE LSPs that can be send as PATH Response. - PceInitiatedLspsPerPcc (number): Controls the maximum number of PCE LSPs that can be Initiated per PCC. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pce_bd5f6a11078a4f0deb5d56bef8e9674f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pce_bd5f6a11078a4f0deb5d56bef8e9674f.py index 41817e29e..448235eb2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pce_bd5f6a11078a4f0deb5d56bef8e9674f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pce_bd5f6a11078a4f0deb5d56bef8e9674f.py @@ -115,7 +115,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -149,7 +149,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -256,7 +256,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -312,11 +312,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PceActionMode (str(none | reset | srPcrep | rsvpPcupd | rsvpPcInitiate | rsvpPcrep)): PCE Mode of Action - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -337,11 +337,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PceActionMode (str(none | reset | srPcrep | rsvpPcupd | rsvpPcInitiate | rsvpPcrep)): PCE Mode of Action - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -385,15 +385,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - PceActionMode (str(none | reset | srPcrep | rsvpPcupd | rsvpPcInitiate | rsvpPcrep)): PCE Mode of Action - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimrouter_fdf354c2c4e318a7557c536f097648a7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimrouter_fdf354c2c4e318a7557c536f097648a7.py index 5d8db2f57..6e6fbea7a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimrouter_fdf354c2c4e318a7557c536f097648a7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimrouter_fdf354c2c4e318a7557c536f097648a7.py @@ -114,7 +114,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -266,7 +266,7 @@ def find( ---- - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterId (list(str)): The PIM-SM Router ID value, in IPv4 format. - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimv4interface_92603cbceaf153039f7575ed9bc4aa67.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimv4interface_92603cbceaf153039f7575ed9bc4aa67.py index a97fd6ba6..6c952aa63 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimv4interface_92603cbceaf153039f7575ed9bc4aa67.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimv4interface_92603cbceaf153039f7575ed9bc4aa67.py @@ -279,7 +279,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -396,7 +396,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -616,7 +616,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -702,13 +702,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - CrpRanges (number): Number of C-RP Ranges - JoinPrunes (number): Number of Join/Prunes - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - Sources (number): Number of Sources - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -731,13 +731,13 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - CrpRanges (number): Number of C-RP Ranges - JoinPrunes (number): Number of Join/Prunes - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - Sources (number): Number of Sources - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -784,18 +784,18 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - CrpRanges (number): Number of C-RP Ranges - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - JoinPrunes (number): Number of Join/Prunes - LocalRouterId (list(str)): The PIM-SM Router ID value, in IPv4 format. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - Sources (number): Number of Sources - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimv6interface_74a3aa08a315ca50732e853e3e8cdc43.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimv6interface_74a3aa08a315ca50732e853e3e8cdc43.py index 76c7af7ad..96dfc5b7d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimv6interface_74a3aa08a315ca50732e853e3e8cdc43.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pimv6interface_74a3aa08a315ca50732e853e3e8cdc43.py @@ -279,7 +279,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -396,7 +396,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -630,7 +630,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -704,13 +704,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - CrpRanges (number): Number of C-RP Ranges - JoinPrunes (number): Number of Join/Prunes - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - Sources (number): Number of Sources - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -733,13 +733,13 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - CrpRanges (number): Number of C-RP Ranges - JoinPrunes (number): Number of Join/Prunes - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - Sources (number): Number of Sources - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -786,18 +786,18 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - CrpRanges (number): Number of C-RP Ranges - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - JoinPrunes (number): Number of Join/Prunes - LocalRouterId (list(str)): The PIM-SM Router ID value, in IPv4 format. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - Sources (number): Number of Sources - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxclient_d7a99a629d894d9e4fc7eae719c12528.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxclient_f43b198156c11196dbbd8c4dbee2af9d.py similarity index 88% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxclient_d7a99a629d894d9e4fc7eae719c12528.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxclient_f43b198156c11196dbbd8c4dbee2af9d.py index 2ee8e8438..e00cfeaa9 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxclient_d7a99a629d894d9e4fc7eae719c12528.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxclient_f43b198156c11196dbbd8c4dbee2af9d.py @@ -68,9 +68,12 @@ class Pppoxclient(Base): "ClientWinsOptions": "clientWinsOptions", "ClientWinsPrimaryAddress": "clientWinsPrimaryAddress", "ClientWinsSecondaryAddress": "clientWinsSecondaryAddress", + "CompMaxHeader": "compMaxHeader", + "CompSuboptions": "compSuboptions", "ConnectSpeedUpdateEnable": "connectSpeedUpdateEnable", "ConnectedVia": "connectedVia", "Count": "count", + "CustomAction": "customAction", "DataLink": "dataLink", "DescriptiveName": "descriptiveName", "DiscoveredIpv4Addresses": "discoveredIpv4Addresses", @@ -95,12 +98,23 @@ class Pppoxclient(Base): "EndpointDiscNegotiation": "endpointDiscNegotiation", "EndpointDiscriminatorClass": "endpointDiscriminatorClass", "Errors": "errors", + "FcsAltOption": "fcsAltOption", "HostUniq": "hostUniq", "HostUniqLength": "hostUniqLength", + "IphcFMaxPeriod": "iphcFMaxPeriod", + "IphcFMaxTime": "iphcFMaxTime", + "IphcNonTcpSpace": "iphcNonTcpSpace", + "IphcTcpSpace": "iphcTcpSpace", "LastRxLcpReq": "lastRxLcpReq", "LastSentLcpReq": "lastSentLcpReq", "LcpAccm": "lcpAccm", + "LcpConfReqInterval": "lcpConfReqInterval", + "LcpConfReqMode": "lcpConfReqMode", + "LcpConfReqRetries": "lcpConfReqRetries", "LcpEnableAccm": "lcpEnableAccm", + "LcpEnableAcfc": "lcpEnableAcfc", + "LcpEnableFcsAlternatives": "lcpEnableFcsAlternatives", + "LcpEnablePfc": "lcpEnablePfc", "LcpMaxFailure": "lcpMaxFailure", "LcpRetries": "lcpRetries", "LcpStartDelay": "lcpStartDelay", @@ -115,6 +129,11 @@ class Pppoxclient(Base): "Mtu": "mtu", "Multiplier": "multiplier", "Name": "name", + "NcpConfReqInterval": "ncpConfReqInterval", + "NcpConfReqMode": "ncpConfReqMode", + "NcpConfReqRetries": "ncpConfReqRetries", + "NcpEnableIPComp": "ncpEnableIPComp", + "NcpIPCompProtocol": "ncpIPCompProtocol", "NcpRetries": "ncpRetries", "NcpTimeout": "ncpTimeout", "NcpType": "ncpType", @@ -132,6 +151,8 @@ class Pppoxclient(Base): "ProxyAuthType": "proxyAuthType", "RedialMax": "redialMax", "RedialTimeout": "redialTimeout", + "RohcMaxCid": "rohcMaxCid", + "RohcMrru": "rohcMrru", "RxConnectSpeed": "rxConnectSpeed", "ServiceName": "serviceName", "ServiceOptions": "serviceOptions", @@ -144,6 +165,8 @@ class Pppoxclient(Base): "UnlimitedRedialAttempts": "unlimitedRedialAttempts", "UserDefinedDslType": "userDefinedDslType", "UserDefinedPonType": "userDefinedPonType", + "VjCompSlotId": "vjCompSlotId", + "VjMaxSlotId": "vjMaxSlotId", } _SDM_ENUM_MAP = { "status": [ @@ -205,13 +228,13 @@ def BgpIpv4Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a.BgpIpv4Peer): An instance of the BgpIpv4Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841.BgpIpv4Peer): An instance of the BgpIpv4Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841 import ( BgpIpv4Peer, ) @@ -225,13 +248,13 @@ def BgpIpv6Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b.BgpIpv6Peer): An instance of the BgpIpv6Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872.BgpIpv6Peer): An instance of the BgpIpv6Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872 import ( BgpIpv6Peer, ) @@ -1130,6 +1153,32 @@ def ClientWinsSecondaryAddress(self): self, self._get_attribute(self._SDM_ATT_MAP["ClientWinsSecondaryAddress"]) ) + @property + def CompMaxHeader(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The largest header size in octets that may be compressed. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["CompMaxHeader"])) + + @property + def CompSuboptions(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field contain suboptions data in hex format. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CompSuboptions"]) + ) + @property def ConnectSpeedUpdateEnable(self): # type: () -> 'Multivalue' @@ -1150,7 +1199,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -1169,6 +1218,18 @@ def Count(self): """ return self._get_attribute(self._SDM_ATT_MAP["Count"]) + @property + def CustomAction(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Custom action to be executed as per the configuration value. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["CustomAction"])) + @property def DataLink(self): # type: () -> 'Multivalue' @@ -1444,10 +1505,22 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) + @property + def FcsAltOption(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): FCS Alternatives Configuration Options. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["FcsAltOption"])) + @property def HostUniq(self): # type: () -> 'Multivalue' @@ -1474,6 +1547,58 @@ def HostUniqLength(self): self, self._get_attribute(self._SDM_ATT_MAP["HostUniqLength"]) ) + @property + def IphcFMaxPeriod(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Maximum interval between full headers. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["IphcFMaxPeriod"]) + ) + + @property + def IphcFMaxTime(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Maximum time interval between full headers. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IphcFMaxTime"])) + + @property + def IphcNonTcpSpace(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The NON_TCP_SPACE field is two octets and indicates the maximum value of a context identifier in the space of context identifiers allocated for non-TCP. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["IphcNonTcpSpace"]) + ) + + @property + def IphcTcpSpace(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The TCP_SPACE field is two octets and indicates the maximum value of a context identifier in the space of context identifiers allocated for TCP. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IphcTcpSpace"])) + @property def LastRxLcpReq(self): # type: () -> 'Multivalue' @@ -1512,6 +1637,48 @@ def LcpAccm(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LcpAccm"])) + @property + def LcpConfReqInterval(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Time interval between config-reject received and config-request with same local options sent in response, in seconds. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LcpConfReqInterval"]) + ) + + @property + def LcpConfReqMode(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This dropdown determines the behavior of LCP Config-Request on receiving config-reject. None or Default - Default workflow. Local and Close Connection - this will allow PPPoE client/server to ignore config-reject and will send config-req with the same local options in response to config-reject till the counter configured in LCP Config-Req Retries after which the connection will close by sending PADT. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LcpConfReqMode"]) + ) + + @property + def LcpConfReqRetries(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Number of config-request retries with same local options in response to config-reject after which the connection will close. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LcpConfReqRetries"]) + ) + @property def LcpEnableAccm(self): # type: () -> 'Multivalue' @@ -1524,6 +1691,44 @@ def LcpEnableAccm(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LcpEnableAccm"])) + @property + def LcpEnableAcfc(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Address and Control Field Compression (Option 8) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LcpEnableAcfc"])) + + @property + def LcpEnableFcsAlternatives(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable FCS Alternatives (Option 9) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LcpEnableFcsAlternatives"]) + ) + + @property + def LcpEnablePfc(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Protocol Field Compression (Option 7) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LcpEnablePfc"])) + @property def LcpMaxFailure(self): # type: () -> 'Multivalue' @@ -1708,6 +1913,76 @@ def Name(self, value): # type: (str) -> None self._set_attribute(self._SDM_ATT_MAP["Name"], value) + @property + def NcpConfReqInterval(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Time interval between config-nak received and config-request with same local options sent in response, in seconds. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["NcpConfReqInterval"]) + ) + + @property + def NcpConfReqMode(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This dropdown determines the behavior of NCP Config-Request on receiving config-nak. None or Default - Default workflow. Local and Close Connection - this will allow PPPoE client/server to ignore IPCP config-nak and will send config-req with the same local options in response to config-nak till the counter configured in NCP Config-Req Retries after which the connection will close by sending termination/PADT. This option is limited to only IPCP. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["NcpConfReqMode"]) + ) + + @property + def NcpConfReqRetries(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Number of config-request retries with same local options in response to config-nak after which the connection will close. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["NcpConfReqRetries"]) + ) + + @property + def NcpEnableIPComp(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable IP Compression Protocol + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["NcpEnableIPComp"]) + ) + + @property + def NcpIPCompProtocol(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Select IP Compression Protocol + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["NcpIPCompProtocol"]) + ) + @property def NcpRetries(self): # type: () -> 'Multivalue' @@ -1912,6 +2187,30 @@ def RedialTimeout(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RedialTimeout"])) + @property + def RohcMaxCid(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The MAX_CID field is two octets and indicates the maximum value of a context identifier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RohcMaxCid"])) + + @property + def RohcMrru(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The MRRU field is two octets and indicates the maximum reconstructed reception unit for Robust Header Compression. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RohcMrru"])) + @property def RxConnectSpeed(self): # type: () -> 'Multivalue' @@ -1978,7 +2277,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -2062,6 +2361,30 @@ def UserDefinedPonType(self): self, self._get_attribute(self._SDM_ATT_MAP["UserDefinedPonType"]) ) + @property + def VjCompSlotId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field indicates whether the slot identifier field may be compressed. 0 The slot identifier must not be compressed. 1 The slot identifer may be compressed. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["VjCompSlotId"])) + + @property + def VjMaxSlotId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field indicates the maximum slot identifier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["VjMaxSlotId"])) + def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None): # type: (List[str], int, str, List[str]) -> Pppoxclient """Updates pppoxclient resource on the server. @@ -2071,10 +2394,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -2088,10 +2411,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -2143,7 +2466,7 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - DiscoveredIpv4Addresses (list(str)): The discovered IPv4 addresses. @@ -2154,12 +2477,12 @@ def find( - DiscoveredSessionIds (list(number)): The negotiated session ID. - DiscoveredTunnelIPs (list(str)): The discovered remote tunnel IP. - DiscoveredTunnelIds (list(number)): The negotiated tunnel ID. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionInfo (list(str[cLS_CFG_REJ_AUTH | cLS_CHAP_PEER_DET_FAIL | cLS_CHAP_PEER_RESP_BAD | cLS_CODE_REJ_IPCP | cLS_CODE_REJ_IPV6CP | cLS_CODE_REJ_LCP | cLS_ERR_PPP_NO_BUF | cLS_ERR_PPP_SEND_PKT | cLS_LINK_DISABLE | cLS_LOC_IPADDR_BROADCAST | cLS_LOC_IPADDR_CLASS_E | cLS_LOC_IPADDR_INVAL_ACKS_0 | cLS_LOC_IPADDR_INVAL_ACKS_DIFF | cLS_LOC_IPADDR_LOOPBACK | cLS_LOC_IPADDR_PEER_MATCH_LOC | cLS_LOC_IPADDR_PEER_NO_GIVE | cLS_LOC_IPADDR_PEER_NO_HELP | cLS_LOC_IPADDR_PEER_NO_TAKE | cLS_LOC_IPADDR_PEER_REJ | cLS_LOOPBACK_DETECT | cLS_NO_NCP | cLS_NONE | cLS_PAP_BAD_PASSWD | cLS_PEER_DISCONNECTED | cLS_PEER_DISCONNECTED_NEGO | cLS_PEER_IPADDR_MATCH_LOC | cLS_PEER_IPADDR_PEER_NO_SET | cLS_PPOE_AC_SYSTEM_ERROR | cLS_PPOE_GENERIC_ERROR | cLS_PPP_DISABLE | cLS_PPPOE_NO_HOST_UNIQ | cLS_PPPOE_PADI_TIMEOUT | cLS_PPPOE_PADO_TIMEOUT | cLS_PPPOE_PADR_TIMEOUT | cLS_PROTO_REJ_IPCP | cLS_PROTO_REJ_IPv6CP | cLS_TIMEOUT_CHAP_CHAL | cLS_TIMEOUT_CHAP_RESP | cLS_TIMEOUT_IPCP_CFG_REQ | cLS_TIMEOUT_IPV6CP_CFG_REQ | cLS_TIMEOUT_IPV6CP_RA | cLS_TIMEOUT_LCP_CFG_REQ | cLS_TIMEOUT_LCP_ECHO_REQ | cLS_TIMEOUT_PAP_AUTH_REQ | cLS_TUN_AUTH_FAILED | cLS_TUN_NO_RESOURCES | cLS_TUN_TIMEOUT_ICRQ | cLS_TUN_TIMEOUT_SCCRQ | cLS_TUN_VENDOR_SPECIFIC_ERR])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. @@ -2583,7 +2906,10 @@ def get_device_ids( ClientWinsOptions=None, ClientWinsPrimaryAddress=None, ClientWinsSecondaryAddress=None, + CompMaxHeader=None, + CompSuboptions=None, ConnectSpeedUpdateEnable=None, + CustomAction=None, DataLink=None, DomainList=None, DslTypeTlv=None, @@ -2598,12 +2924,23 @@ def get_device_ids( Encaps2=None, EndpointDiscNegotiation=None, EndpointDiscriminatorClass=None, + FcsAltOption=None, HostUniq=None, HostUniqLength=None, + IphcFMaxPeriod=None, + IphcFMaxTime=None, + IphcNonTcpSpace=None, + IphcTcpSpace=None, LastRxLcpReq=None, LastSentLcpReq=None, LcpAccm=None, + LcpConfReqInterval=None, + LcpConfReqMode=None, + LcpConfReqRetries=None, LcpEnableAccm=None, + LcpEnableAcfc=None, + LcpEnableFcsAlternatives=None, + LcpEnablePfc=None, LcpMaxFailure=None, LcpRetries=None, LcpStartDelay=None, @@ -2616,6 +2953,11 @@ def get_device_ids( MrruNegotiation=None, MruNegotiation=None, Mtu=None, + NcpConfReqInterval=None, + NcpConfReqMode=None, + NcpConfReqRetries=None, + NcpEnableIPComp=None, + NcpIPCompProtocol=None, NcpRetries=None, NcpTimeout=None, NcpType=None, @@ -2633,6 +2975,8 @@ def get_device_ids( ProxyAuthType=None, RedialMax=None, RedialTimeout=None, + RohcMaxCid=None, + RohcMrru=None, RxConnectSpeed=None, ServiceName=None, ServiceOptions=None, @@ -2640,6 +2984,8 @@ def get_device_ids( UnlimitedRedialAttempts=None, UserDefinedDslType=None, UserDefinedPonType=None, + VjCompSlotId=None, + VjMaxSlotId=None, ): """Base class infrastructure that gets a list of pppoxclient device ids encapsulated by this object. @@ -2679,7 +3025,10 @@ def get_device_ids( - ClientWinsOptions (str): optional regex of clientWinsOptions - ClientWinsPrimaryAddress (str): optional regex of clientWinsPrimaryAddress - ClientWinsSecondaryAddress (str): optional regex of clientWinsSecondaryAddress + - CompMaxHeader (str): optional regex of compMaxHeader + - CompSuboptions (str): optional regex of compSuboptions - ConnectSpeedUpdateEnable (str): optional regex of connectSpeedUpdateEnable + - CustomAction (str): optional regex of customAction - DataLink (str): optional regex of dataLink - DomainList (str): optional regex of domainList - DslTypeTlv (str): optional regex of dslTypeTlv @@ -2694,12 +3043,23 @@ def get_device_ids( - Encaps2 (str): optional regex of encaps2 - EndpointDiscNegotiation (str): optional regex of endpointDiscNegotiation - EndpointDiscriminatorClass (str): optional regex of endpointDiscriminatorClass + - FcsAltOption (str): optional regex of fcsAltOption - HostUniq (str): optional regex of hostUniq - HostUniqLength (str): optional regex of hostUniqLength + - IphcFMaxPeriod (str): optional regex of iphcFMaxPeriod + - IphcFMaxTime (str): optional regex of iphcFMaxTime + - IphcNonTcpSpace (str): optional regex of iphcNonTcpSpace + - IphcTcpSpace (str): optional regex of iphcTcpSpace - LastRxLcpReq (str): optional regex of lastRxLcpReq - LastSentLcpReq (str): optional regex of lastSentLcpReq - LcpAccm (str): optional regex of lcpAccm + - LcpConfReqInterval (str): optional regex of lcpConfReqInterval + - LcpConfReqMode (str): optional regex of lcpConfReqMode + - LcpConfReqRetries (str): optional regex of lcpConfReqRetries - LcpEnableAccm (str): optional regex of lcpEnableAccm + - LcpEnableAcfc (str): optional regex of lcpEnableAcfc + - LcpEnableFcsAlternatives (str): optional regex of lcpEnableFcsAlternatives + - LcpEnablePfc (str): optional regex of lcpEnablePfc - LcpMaxFailure (str): optional regex of lcpMaxFailure - LcpRetries (str): optional regex of lcpRetries - LcpStartDelay (str): optional regex of lcpStartDelay @@ -2712,6 +3072,11 @@ def get_device_ids( - MrruNegotiation (str): optional regex of mrruNegotiation - MruNegotiation (str): optional regex of mruNegotiation - Mtu (str): optional regex of mtu + - NcpConfReqInterval (str): optional regex of ncpConfReqInterval + - NcpConfReqMode (str): optional regex of ncpConfReqMode + - NcpConfReqRetries (str): optional regex of ncpConfReqRetries + - NcpEnableIPComp (str): optional regex of ncpEnableIPComp + - NcpIPCompProtocol (str): optional regex of ncpIPCompProtocol - NcpRetries (str): optional regex of ncpRetries - NcpTimeout (str): optional regex of ncpTimeout - NcpType (str): optional regex of ncpType @@ -2729,6 +3094,8 @@ def get_device_ids( - ProxyAuthType (str): optional regex of proxyAuthType - RedialMax (str): optional regex of redialMax - RedialTimeout (str): optional regex of redialTimeout + - RohcMaxCid (str): optional regex of rohcMaxCid + - RohcMrru (str): optional regex of rohcMrru - RxConnectSpeed (str): optional regex of rxConnectSpeed - ServiceName (str): optional regex of serviceName - ServiceOptions (str): optional regex of serviceOptions @@ -2736,6 +3103,8 @@ def get_device_ids( - UnlimitedRedialAttempts (str): optional regex of unlimitedRedialAttempts - UserDefinedDslType (str): optional regex of userDefinedDslType - UserDefinedPonType (str): optional regex of userDefinedPonType + - VjCompSlotId (str): optional regex of vjCompSlotId + - VjMaxSlotId (str): optional regex of vjMaxSlotId Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxserver_6001eb455946b79aa809976e25c5d004.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxserver_622ad1c6d961bb8e246b079c72242bfa.py similarity index 83% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxserver_6001eb455946b79aa809976e25c5d004.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxserver_622ad1c6d961bb8e246b079c72242bfa.py index 138eb5c75..35a649634 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxserver_6001eb455946b79aa809976e25c5d004.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/pppoxserver_622ad1c6d961bb8e246b079c72242bfa.py @@ -47,6 +47,8 @@ class Pppoxserver(Base): "ClientIID": "clientIID", "ClientIIDIncr": "clientIIDIncr", "ClientIpIncr": "clientIpIncr", + "CompMaxHeader": "compMaxHeader", + "CompSuboptions": "compSuboptions", "ConnectedVia": "connectedVia", "Count": "count", "DescriptiveName": "descriptiveName", @@ -61,11 +63,22 @@ class Pppoxserver(Base): "EndpointDiscNegotiation": "endpointDiscNegotiation", "EndpointDiscriminatorClass": "endpointDiscriminatorClass", "Errors": "errors", + "FcsAltOption": "fcsAltOption", + "IphcFMaxPeriod": "iphcFMaxPeriod", + "IphcFMaxTime": "iphcFMaxTime", + "IphcNonTcpSpace": "iphcNonTcpSpace", + "IphcTcpSpace": "iphcTcpSpace", "Ipv6AddrPrefixLen": "ipv6AddrPrefixLen", "Ipv6PoolPrefix": "ipv6PoolPrefix", "Ipv6PoolPrefixLen": "ipv6PoolPrefixLen", "LcpAccm": "lcpAccm", + "LcpConfReqInterval": "lcpConfReqInterval", + "LcpConfReqMode": "lcpConfReqMode", + "LcpConfReqRetries": "lcpConfReqRetries", "LcpEnableAccm": "lcpEnableAccm", + "LcpEnableAcfc": "lcpEnableAcfc", + "LcpEnableFcsAlternatives": "lcpEnableFcsAlternatives", + "LcpEnablePfc": "lcpEnablePfc", "LcpMaxFailure": "lcpMaxFailure", "LcpRetries": "lcpRetries", "LcpStartDelay": "lcpStartDelay", @@ -79,10 +92,17 @@ class Pppoxserver(Base): "Mtu": "mtu", "Multiplier": "multiplier", "Name": "name", + "NcpConfReqInterval": "ncpConfReqInterval", + "NcpConfReqMode": "ncpConfReqMode", + "NcpConfReqRetries": "ncpConfReqRetries", + "NcpEnableIPComp": "ncpEnableIPComp", + "NcpIPCompProtocol": "ncpIPCompProtocol", "NcpRetries": "ncpRetries", "NcpTimeout": "ncpTimeout", "NcpType": "ncpType", "PppoxServerGlobalAndPortData": "pppoxServerGlobalAndPortData", + "RohcMaxCid": "rohcMaxCid", + "RohcMrru": "rohcMrru", "ServerBaseIID": "serverBaseIID", "ServerBaseIp": "serverBaseIp", "ServerDnsOptions": "serverDnsOptions", @@ -110,6 +130,8 @@ class Pppoxserver(Base): "StackedLayers": "stackedLayers", "StateCounts": "stateCounts", "Status": "status", + "VjCompSlotId": "vjCompSlotId", + "VjMaxSlotId": "vjMaxSlotId", } _SDM_ENUM_MAP = { "status": [ @@ -171,13 +193,13 @@ def BgpIpv4Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a.BgpIpv4Peer): An instance of the BgpIpv4Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841.BgpIpv4Peer): An instance of the BgpIpv4Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_904e2c38f7c97d7b9bfa48f79492ac8a import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv4peer_2e2c3c2ad1ad138953e43543afb88841 import ( BgpIpv4Peer, ) @@ -191,13 +213,13 @@ def BgpIpv6Peer(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b.BgpIpv6Peer): An instance of the BgpIpv6Peer class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872.BgpIpv6Peer): An instance of the BgpIpv6Peer class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d4de2e9634d2dee11a9265d28434788b import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6peer_d1a9d481647a51c783f6ad2bd104f872 import ( BgpIpv6Peer, ) @@ -788,13 +810,39 @@ def ClientIpIncr(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["ClientIpIncr"])) + @property + def CompMaxHeader(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The largest header size in octets that may be compressed. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["CompMaxHeader"])) + + @property + def CompSuboptions(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field contain suboptions data in hex format. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CompSuboptions"]) + ) + @property def ConnectedVia(self): # type: () -> List[str] """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -956,10 +1004,74 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) + @property + def FcsAltOption(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): FCS Alternatives Configuration Options. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["FcsAltOption"])) + + @property + def IphcFMaxPeriod(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Maximum interval between full headers. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["IphcFMaxPeriod"]) + ) + + @property + def IphcFMaxTime(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Maximum time interval between full headers. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IphcFMaxTime"])) + + @property + def IphcNonTcpSpace(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The NON_TCP_SPACE field is two octets and indicates the maximum value of a context identifier in the space of context identifiers allocated for non-TCP. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["IphcNonTcpSpace"]) + ) + + @property + def IphcTcpSpace(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The TCP_SPACE field is two octets and indicates the maximum value of a context identifier in the space of context identifiers allocated for TCP. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IphcTcpSpace"])) + @property def Ipv6AddrPrefixLen(self): # type: () -> 'Multivalue' @@ -1014,6 +1126,48 @@ def LcpAccm(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LcpAccm"])) + @property + def LcpConfReqInterval(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Time interval between config-reject received and config-request with same local options sent in response, in seconds. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LcpConfReqInterval"]) + ) + + @property + def LcpConfReqMode(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This dropdown determines the behavior of LCP Config-Request on receiving config-reject. None or Default - Default workflow. Local and Close Connection - this will allow PPPoE client/server to ignore config-reject and will send config-req with the same local options in response to config-reject till the counter configured in LCP Config-Req Retries after which the connection will close by sending PADT. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LcpConfReqMode"]) + ) + + @property + def LcpConfReqRetries(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Number of config-request retries with same local options in response to config-reject after which the connection will close. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LcpConfReqRetries"]) + ) + @property def LcpEnableAccm(self): # type: () -> 'Multivalue' @@ -1026,6 +1180,44 @@ def LcpEnableAccm(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LcpEnableAccm"])) + @property + def LcpEnableAcfc(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Address and Control Field Compression (Option 8) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LcpEnableAcfc"])) + + @property + def LcpEnableFcsAlternatives(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable FCS Alternatives (Option 9) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LcpEnableFcsAlternatives"]) + ) + + @property + def LcpEnablePfc(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable Protocol Field Compression (Option 7) + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LcpEnablePfc"])) + @property def LcpMaxFailure(self): # type: () -> 'Multivalue' @@ -1198,6 +1390,76 @@ def Name(self, value): # type: (str) -> None self._set_attribute(self._SDM_ATT_MAP["Name"], value) + @property + def NcpConfReqInterval(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Time interval between config-nak received and config-request with same local options sent in response, in seconds. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["NcpConfReqInterval"]) + ) + + @property + def NcpConfReqMode(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This dropdown determines the behavior of NCP Config-Request on receiving config-nak. None or Default - Default workflow. Local and Close Connection - this will allow PPPoE client/server to ignore IPCP config-nak and will send config-req with the same local options in response to config-nak till the counter configured in NCP Config-Req Retries after which the connection will close by sending termination/PADT. This option is limited to only IPCP. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["NcpConfReqMode"]) + ) + + @property + def NcpConfReqRetries(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Number of config-request retries with same local options in response to config-nak after which the connection will close. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["NcpConfReqRetries"]) + ) + + @property + def NcpEnableIPComp(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Enable IP Compression Protocol + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["NcpEnableIPComp"]) + ) + + @property + def NcpIPCompProtocol(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Select IP Compression Protocol + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["NcpIPCompProtocol"]) + ) + @property def NcpRetries(self): # type: () -> 'Multivalue' @@ -1240,10 +1502,34 @@ def PppoxServerGlobalAndPortData(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/topology/.../*): Global and Port Settings + - str(None | /api/v1/sessions/1/ixnetwork/topology): Global and Port Settings """ return self._get_attribute(self._SDM_ATT_MAP["PppoxServerGlobalAndPortData"]) + @property + def RohcMaxCid(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The MAX_CID field is two octets and indicates the maximum value of a context identifier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RohcMaxCid"])) + + @property + def RohcMrru(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The MRRU field is two octets and indicates the maximum reconstructed reception unit for Robust Header Compression. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RohcMrru"])) + @property def ServerBaseIID(self): # type: () -> 'Multivalue' @@ -1570,7 +1856,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1598,6 +1884,30 @@ def Status(self): """ return self._get_attribute(self._SDM_ATT_MAP["Status"]) + @property + def VjCompSlotId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field indicates whether the slot identifier field may be compressed. 0 The slot identifier must not be compressed. 1 The slot identifer may be compressed. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["VjCompSlotId"])) + + @property + def VjMaxSlotId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): This field indicates the maximum slot identifier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["VjMaxSlotId"])) + def update( self, ConnectedVia=None, @@ -1614,11 +1924,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionsCount (number): Number of PPP clients a single server can accept (multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -1639,11 +1949,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionsCount (number): Number of PPP clients a single server can accept (multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -1688,16 +1998,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - PppoxServerGlobalAndPortData (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): Global and Port Settings + - PppoxServerGlobalAndPortData (str(None | /api/v1/sessions/1/ixnetwork/topology)): Global and Port Settings - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SessionsCount (number): Number of PPP clients a single server can accept (multiplier) - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. @@ -1878,6 +2188,8 @@ def get_device_ids( ClientIID=None, ClientIIDIncr=None, ClientIpIncr=None, + CompMaxHeader=None, + CompSuboptions=None, DnsServerList=None, EchoReqInterval=None, EnableDnsRa=None, @@ -1888,11 +2200,22 @@ def get_device_ids( EnableRaOFlag=None, EndpointDiscNegotiation=None, EndpointDiscriminatorClass=None, + FcsAltOption=None, + IphcFMaxPeriod=None, + IphcFMaxTime=None, + IphcNonTcpSpace=None, + IphcTcpSpace=None, Ipv6AddrPrefixLen=None, Ipv6PoolPrefix=None, Ipv6PoolPrefixLen=None, LcpAccm=None, + LcpConfReqInterval=None, + LcpConfReqMode=None, + LcpConfReqRetries=None, LcpEnableAccm=None, + LcpEnableAcfc=None, + LcpEnableFcsAlternatives=None, + LcpEnablePfc=None, LcpMaxFailure=None, LcpRetries=None, LcpStartDelay=None, @@ -1904,9 +2227,16 @@ def get_device_ids( MrruNegotiation=None, MruNegotiation=None, Mtu=None, + NcpConfReqInterval=None, + NcpConfReqMode=None, + NcpConfReqRetries=None, + NcpEnableIPComp=None, + NcpIPCompProtocol=None, NcpRetries=None, NcpTimeout=None, NcpType=None, + RohcMaxCid=None, + RohcMrru=None, ServerBaseIID=None, ServerBaseIp=None, ServerDnsOptions=None, @@ -1929,6 +2259,8 @@ def get_device_ids( ServerWinsPrimaryAddress=None, ServerWinsSecondaryAddress=None, ServiceName=None, + VjCompSlotId=None, + VjMaxSlotId=None, ): """Base class infrastructure that gets a list of pppoxserver device ids encapsulated by this object. @@ -1947,6 +2279,8 @@ def get_device_ids( - ClientIID (str): optional regex of clientIID - ClientIIDIncr (str): optional regex of clientIIDIncr - ClientIpIncr (str): optional regex of clientIpIncr + - CompMaxHeader (str): optional regex of compMaxHeader + - CompSuboptions (str): optional regex of compSuboptions - DnsServerList (str): optional regex of dnsServerList - EchoReqInterval (str): optional regex of echoReqInterval - EnableDnsRa (str): optional regex of enableDnsRa @@ -1957,11 +2291,22 @@ def get_device_ids( - EnableRaOFlag (str): optional regex of enableRaOFlag - EndpointDiscNegotiation (str): optional regex of endpointDiscNegotiation - EndpointDiscriminatorClass (str): optional regex of endpointDiscriminatorClass + - FcsAltOption (str): optional regex of fcsAltOption + - IphcFMaxPeriod (str): optional regex of iphcFMaxPeriod + - IphcFMaxTime (str): optional regex of iphcFMaxTime + - IphcNonTcpSpace (str): optional regex of iphcNonTcpSpace + - IphcTcpSpace (str): optional regex of iphcTcpSpace - Ipv6AddrPrefixLen (str): optional regex of ipv6AddrPrefixLen - Ipv6PoolPrefix (str): optional regex of ipv6PoolPrefix - Ipv6PoolPrefixLen (str): optional regex of ipv6PoolPrefixLen - LcpAccm (str): optional regex of lcpAccm + - LcpConfReqInterval (str): optional regex of lcpConfReqInterval + - LcpConfReqMode (str): optional regex of lcpConfReqMode + - LcpConfReqRetries (str): optional regex of lcpConfReqRetries - LcpEnableAccm (str): optional regex of lcpEnableAccm + - LcpEnableAcfc (str): optional regex of lcpEnableAcfc + - LcpEnableFcsAlternatives (str): optional regex of lcpEnableFcsAlternatives + - LcpEnablePfc (str): optional regex of lcpEnablePfc - LcpMaxFailure (str): optional regex of lcpMaxFailure - LcpRetries (str): optional regex of lcpRetries - LcpStartDelay (str): optional regex of lcpStartDelay @@ -1973,9 +2318,16 @@ def get_device_ids( - MrruNegotiation (str): optional regex of mrruNegotiation - MruNegotiation (str): optional regex of mruNegotiation - Mtu (str): optional regex of mtu + - NcpConfReqInterval (str): optional regex of ncpConfReqInterval + - NcpConfReqMode (str): optional regex of ncpConfReqMode + - NcpConfReqRetries (str): optional regex of ncpConfReqRetries + - NcpEnableIPComp (str): optional regex of ncpEnableIPComp + - NcpIPCompProtocol (str): optional regex of ncpIPCompProtocol - NcpRetries (str): optional regex of ncpRetries - NcpTimeout (str): optional regex of ncpTimeout - NcpType (str): optional regex of ncpType + - RohcMaxCid (str): optional regex of rohcMaxCid + - RohcMrru (str): optional regex of rohcMrru - ServerBaseIID (str): optional regex of serverBaseIID - ServerBaseIp (str): optional regex of serverBaseIp - ServerDnsOptions (str): optional regex of serverDnsOptions @@ -1998,6 +2350,8 @@ def get_device_ids( - ServerWinsPrimaryAddress (str): optional regex of serverWinsPrimaryAddress - ServerWinsSecondaryAddress (str): optional regex of serverWinsSecondaryAddress - ServiceName (str): optional regex of serviceName + - VjCompSlotId (str): optional regex of vjCompSlotId + - VjMaxSlotId (str): optional regex of vjMaxSlotId Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ptp_0fccf1fcc99303d2707e822de949037f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ptp_24f2907f5a685b611f57469838b21337.py similarity index 97% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ptp_0fccf1fcc99303d2707e822de949037f.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ptp_24f2907f5a685b611f57469838b21337.py index 029d217fa..d0ac3f93d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ptp_0fccf1fcc99303d2707e822de949037f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ptp_24f2907f5a685b611f57469838b21337.py @@ -131,6 +131,11 @@ class Ptp(Base): "MeanLinkDelayThreshold": "meanLinkDelayThreshold", "MulticastAddress": "multicastAddress", "Multiplier": "multiplier", + "MvIncludeCustomTlv": "mvIncludeCustomTlv", + "MvTlvInsertionPoint": "mvTlvInsertionPoint", + "MvTlvLength": "mvTlvLength", + "MvTlvType": "mvTlvType", + "MvTlvdataValue": "mvTlvdataValue", "Name": "name", "NanosecondsPerSecond": "nanosecondsPerSecond", "NotSlave": "notSlave", @@ -562,7 +567,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -989,7 +994,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -1568,6 +1573,72 @@ def Multiplier(self, value): # type: (int) -> None self._set_attribute(self._SDM_ATT_MAP["Multiplier"], value) + @property + def MvIncludeCustomTlv(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Includes Custom TLV. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["MvIncludeCustomTlv"]) + ) + + @property + def MvTlvInsertionPoint(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): It describes at which packet and position TLV will be inserted. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["MvTlvInsertionPoint"]) + ) + + @property + def MvTlvLength(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Length of the TLV Data Field. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["MvTlvLength"])) + + @property + def MvTlvType(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): TLV Type (2 bytes). + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["MvTlvType"])) + + @property + def MvTlvdataValue(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Value field of the TLV without type and length. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["MvTlvdataValue"]) + ) + @property def Name(self): # type: () -> str @@ -2210,7 +2281,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -2518,7 +2589,7 @@ def update( - AtoiTlvCount (number): ATOI TLV Count - AvnuMode (str(aVNU_NA | aVNU_GPTP)): AVNU Mode - ConfiguredInterfaceSpeed (number): Configured Interface Speed - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableATOITlv (bool): Enable ATOI TLV - EnableCmlds (bool): Enable Cmlds - EnableMultipleSubnet (bool): If this field is enabled user can configure slaves of multiple subnet. @@ -2530,7 +2601,7 @@ def update( - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOFMsgs (number): Messages Count - SlaveIPRangeCount (number): Number of subnets for a master. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -2565,7 +2636,7 @@ def add( - AtoiTlvCount (number): ATOI TLV Count - AvnuMode (str(aVNU_NA | aVNU_GPTP)): AVNU Mode - ConfiguredInterfaceSpeed (number): Configured Interface Speed - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableATOITlv (bool): Enable ATOI TLV - EnableCmlds (bool): Enable Cmlds - EnableMultipleSubnet (bool): If this field is enabled user can configure slaves of multiple subnet. @@ -2577,7 +2648,7 @@ def add( - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOFMsgs (number): Messages Count - SlaveIPRangeCount (number): Number of subnets for a master. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -2637,14 +2708,14 @@ def find( - AtoiTlvCount (number): ATOI TLV Count - AvnuMode (str(aVNU_NA | aVNU_GPTP)): AVNU Mode - ConfiguredInterfaceSpeed (number): Configured Interface Speed - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableATOITlv (bool): Enable ATOI TLV - EnableCmlds (bool): Enable Cmlds - EnableMultipleSubnet (bool): If this field is enabled user can configure slaves of multiple subnet. - EnableNegativeTesting (bool): Enable Negative Conformance Test - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Frequency (number): Frequency(N) - LogCleanUpOption (str(notClean | clean)): Debug Log Clean Up - LogFileAge (number): This field determines how old logs to be deleted. @@ -2655,7 +2726,7 @@ def find( - SessionInfo (list(str[announceReceiptTimeout | aSCapable | delayRespReceiptTimeout | g82651Layer | g82751ClockAccuracy | g82751ClockClass | g82751Domain | g82751Layer | g82751LogVariance | g82751Priority1 | g82751Rates | g82751VLANs | g82752Layer | gPTPCapable | gPTPLayer | handleAnnounceTlvUnckecked | multipleP2PResponses | noAnnounce | none | p2PMixedMode | pathTraceDropAnnounce | signalAnnounceTimeout | signalDelayRespTimeout | signalIntervalGrantDelayRespDuration | signalIntervalGrantDuration | signalIntervalGrantSyncDuration | signalSyncTimeout | sMPTELayer | syncReceiptTimeout | syncReceiptTimeoutgPTP])): Logs additional information about the session state - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SlaveIPRangeCount (number): Number of subnets for a master. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. @@ -3046,6 +3117,11 @@ def get_device_ids( MasterMacIncrementBy=None, MeanLinkDelayThreshold=None, MulticastAddress=None, + MvIncludeCustomTlv=None, + MvTlvInsertionPoint=None, + MvTlvLength=None, + MvTlvType=None, + MvTlvdataValue=None, NanosecondsPerSecond=None, NotSlave=None, NumRecords=None, @@ -3194,6 +3270,11 @@ def get_device_ids( - MasterMacIncrementBy (str): optional regex of masterMacIncrementBy - MeanLinkDelayThreshold (str): optional regex of meanLinkDelayThreshold - MulticastAddress (str): optional regex of multicastAddress + - MvIncludeCustomTlv (str): optional regex of mvIncludeCustomTlv + - MvTlvInsertionPoint (str): optional regex of mvTlvInsertionPoint + - MvTlvLength (str): optional regex of mvTlvLength + - MvTlvType (str): optional regex of mvTlvType + - MvTlvdataValue (str): optional regex of mvTlvdataValue - NanosecondsPerSecond (str): optional regex of nanosecondsPerSecond - NotSlave (str): optional regex of notSlave - NumRecords (str): optional regex of numRecords diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rsvpteif_e2b2ecdbf1fa5e15d2f6d87dd1789f1c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rsvpteif_e2b2ecdbf1fa5e15d2f6d87dd1789f1c.py index 60ca2165b..e3efb9ee7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rsvpteif_e2b2ecdbf1fa5e15d2f6d87dd1789f1c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rsvpteif_e2b2ecdbf1fa5e15d2f6d87dd1789f1c.py @@ -269,7 +269,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -418,7 +418,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -642,7 +642,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -729,11 +729,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - LabelReqRefCount (number): Number of Label Req in RSVP-TE DG - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -754,11 +754,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - LabelReqRefCount (number): Number of Label Req in RSVP-TE DG - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -803,16 +803,16 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LabelReqRefCount (number): Number of Label Req in RSVP-TE DG - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - OurIp (list(str)): Local IP - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rsvptelsps_c853570a71a8549c854868139dd47959.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rsvptelsps_c853570a71a8549c854868139dd47959.py index 77760bb21..9324528a6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rsvptelsps_c853570a71a8549c854868139dd47959.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rsvptelsps_c853570a71a8549c854868139dd47959.py @@ -188,7 +188,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -237,7 +237,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -357,7 +357,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -405,7 +405,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableP2PEgress (bool): Enable to configure P2P Egress LSPs - ExpectedPceInitiatedLspsCount (number): Number of Expected PCE Initiated RSVP-TE LSPs - IngressP2PLsps (number): Number of P2P Ingress LSPs configured per IPv4 Loopback @@ -413,7 +413,7 @@ def update( - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - P2mpEgressTunnelCount (number): Number of P2MP Egress Tunnels configured per IPv4 Loopback - P2mpIngressLspCount (number): Number of P2MP Ingress LSPs configured per IPv4 Loopback - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -438,7 +438,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableP2PEgress (bool): Enable to configure P2P Egress LSPs - ExpectedPceInitiatedLspsCount (number): Number of Expected PCE Initiated RSVP-TE LSPs - IngressP2PLsps (number): Number of P2P Ingress LSPs configured per IPv4 Loopback @@ -446,7 +446,7 @@ def add( - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - P2mpEgressTunnelCount (number): Number of P2MP Egress Tunnels configured per IPv4 Loopback - P2mpIngressLspCount (number): Number of P2MP Ingress LSPs configured per IPv4 Loopback - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -495,11 +495,11 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableP2PEgress (bool): Enable to configure P2P Egress LSPs - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - ExpectedPceInitiatedLspsCount (number): Number of Expected PCE Initiated RSVP-TE LSPs - IngressP2PLsps (number): Number of P2P Ingress LSPs configured per IPv4 Loopback - LocalIp (list(str)): Local IP @@ -508,7 +508,7 @@ def find( - P2mpEgressTunnelCount (number): Number of P2MP Egress Tunnels configured per IPv4 Loopback - P2mpIngressLspCount (number): Number of P2MP Ingress LSPs configured per IPv4 Loopback - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rucarrier_9fc1ca05aa71639ef4aa1bf05267ec32.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rucarrier_9fc1ca05aa71639ef4aa1bf05267ec32.py new file mode 100644 index 000000000..3657dd5eb --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rucarrier_9fc1ca05aa71639ef4aa1bf05267ec32.py @@ -0,0 +1,553 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class RuCarrier(Base): + """ORU Carrier configuration. + The RuCarrier class encapsulates a required ruCarrier resource which will be retrieved from the server every time the property is accessed. + """ + + __slots__ = () + _SDM_NAME = "ruCarrier" + _SDM_ATT_MAP = { + "Active": "active", + "BandSectorId": "bandSectorId", + "CarrierBw": "carrierBw", + "CcId": "ccId", + "Count": "count", + "DescriptiveName": "descriptiveName", + "DuPortId": "duPortId", + "IqBitwidth": "iqBitwidth", + "IqCompMethod": "iqCompMethod", + "Name": "name", + "Numerology": "numerology", + "PrbCount": "prbCount", + "RuPortId": "ruPortId", + "SlotFormat": "slotFormat", + "Symbol0": "symbol0", + "Symbol1": "symbol1", + "Symbol10": "symbol10", + "Symbol11": "symbol11", + "Symbol12": "symbol12", + "Symbol13": "symbol13", + "Symbol2": "symbol2", + "Symbol3": "symbol3", + "Symbol4": "symbol4", + "Symbol5": "symbol5", + "Symbol6": "symbol6", + "Symbol7": "symbol7", + "Symbol8": "symbol8", + "Symbol9": "symbol9", + "UdCompHeaderInUPlane": "udCompHeaderInUPlane", + } + _SDM_ENUM_MAP = {} + + def __init__(self, parent, list_op=False): + super(RuCarrier, self).__init__(parent, list_op) + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def BandSectorId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Band Sector ID. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["BandSectorId"])) + + @property + def CarrierBw(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Bandwidth of the carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["CarrierBw"])) + + @property + def CcId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): CC ID. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["CcId"])) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def DuPortId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): DU Port ID. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["DuPortId"])) + + @property + def IqBitwidth(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Depends on the selected compression mthod No compression - represents the bitwidth of each uncompressed I and Q value. Block floating point - represents the bitwidth of each I and Q mantissa value. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IqBitwidth"])) + + @property + def IqCompMethod(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): IQ Compression Method. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IqCompMethod"])) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + @property + def Numerology(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Number which is used in the formula to calculate sub-carrier spacing. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Numerology"])) + + @property + def PrbCount(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Number of PRBs(Physical Resource Blocks). + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["PrbCount"])) + + @property + def RuPortId(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): RU Port ID. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RuPortId"])) + + @property + def SlotFormat(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Configuration of the slot. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["SlotFormat"])) + + @property + def Symbol0(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 0 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol0"])) + + @property + def Symbol1(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 1 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol1"])) + + @property + def Symbol10(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 10 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol10"])) + + @property + def Symbol11(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 11 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol11"])) + + @property + def Symbol12(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 12 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol12"])) + + @property + def Symbol13(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 13 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol13"])) + + @property + def Symbol2(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 2 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol2"])) + + @property + def Symbol3(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 3 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol3"])) + + @property + def Symbol4(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 4 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol4"])) + + @property + def Symbol5(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 5 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol5"])) + + @property + def Symbol6(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 6 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol6"])) + + @property + def Symbol7(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 7 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol7"])) + + @property + def Symbol8(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 8 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol8"])) + + @property + def Symbol9(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Symbol 9 of carrier. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Symbol9"])) + + @property + def UdCompHeaderInUPlane(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): udCompHeader in U-plane + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["UdCompHeaderInUPlane"]) + ) + + def update(self, Name=None): + # type: (str) -> RuCarrier + """Updates ruCarrier resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def find(self, Count=None, DescriptiveName=None, Name=None): + # type: (int, str, str) -> RuCarrier + """Finds and retrieves ruCarrier resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve ruCarrier resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all ruCarrier resources from the server. + + Args + ---- + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Returns + ------- + - self: This instance with matching ruCarrier resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of ruCarrier data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the ruCarrier resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def get_device_ids( + self, + PortNames=None, + Active=None, + BandSectorId=None, + CarrierBw=None, + CcId=None, + DuPortId=None, + IqBitwidth=None, + IqCompMethod=None, + Numerology=None, + PrbCount=None, + RuPortId=None, + SlotFormat=None, + Symbol0=None, + Symbol1=None, + Symbol10=None, + Symbol11=None, + Symbol12=None, + Symbol13=None, + Symbol2=None, + Symbol3=None, + Symbol4=None, + Symbol5=None, + Symbol6=None, + Symbol7=None, + Symbol8=None, + Symbol9=None, + UdCompHeaderInUPlane=None, + ): + """Base class infrastructure that gets a list of ruCarrier device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + - BandSectorId (str): optional regex of bandSectorId + - CarrierBw (str): optional regex of carrierBw + - CcId (str): optional regex of ccId + - DuPortId (str): optional regex of duPortId + - IqBitwidth (str): optional regex of iqBitwidth + - IqCompMethod (str): optional regex of iqCompMethod + - Numerology (str): optional regex of numerology + - PrbCount (str): optional regex of prbCount + - RuPortId (str): optional regex of ruPortId + - SlotFormat (str): optional regex of slotFormat + - Symbol0 (str): optional regex of symbol0 + - Symbol1 (str): optional regex of symbol1 + - Symbol10 (str): optional regex of symbol10 + - Symbol11 (str): optional regex of symbol11 + - Symbol12 (str): optional regex of symbol12 + - Symbol13 (str): optional regex of symbol13 + - Symbol2 (str): optional regex of symbol2 + - Symbol3 (str): optional regex of symbol3 + - Symbol4 (str): optional regex of symbol4 + - Symbol5 (str): optional regex of symbol5 + - Symbol6 (str): optional regex of symbol6 + - Symbol7 (str): optional regex of symbol7 + - Symbol8 (str): optional regex of symbol8 + - Symbol9 (str): optional regex of symbol9 + - UdCompHeaderInUPlane (str): optional regex of udCompHeaderInUPlane + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rucuplane_5a30497b19e2a66b22c8822c83c1df83.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rucuplane_5a30497b19e2a66b22c8822c83c1df83.py new file mode 100644 index 000000000..2c98bec30 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/rucuplane_5a30497b19e2a66b22c8822c83c1df83.py @@ -0,0 +1,192 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class RuCUPlane(Base): + """ORAN RU CU-Plane for traffic destination endpoint. + The RuCUPlane class encapsulates a required ruCUPlane resource which will be retrieved from the server every time the property is accessed. + """ + + __slots__ = () + _SDM_NAME = "ruCUPlane" + _SDM_ATT_MAP = { + "Active": "active", + "Count": "count", + "DescriptiveName": "descriptiveName", + "Name": "name", + } + _SDM_ENUM_MAP = {} + + def __init__(self, parent, list_op=False): + super(RuCUPlane, self).__init__(parent, list_op) + + @property + def Tag(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.tag_e30f24de79247381d4dfd423b2f6986d.Tag): An instance of the Tag class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.tag_e30f24de79247381d4dfd423b2f6986d import ( + Tag, + ) + + if len(self._object_properties) > 0: + if self._properties.get("Tag", None) is not None: + return self._properties.get("Tag") + return Tag(self) + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + def update(self, Name=None): + # type: (str) -> RuCUPlane + """Updates ruCUPlane resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def find(self, Count=None, DescriptiveName=None, Name=None): + # type: (int, str, str) -> RuCUPlane + """Finds and retrieves ruCUPlane resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve ruCUPlane resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all ruCUPlane resources from the server. + + Args + ---- + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Returns + ------- + - self: This instance with matching ruCUPlane resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of ruCUPlane data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the ruCUPlane resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def get_device_ids(self, PortNames=None, Active=None): + """Base class infrastructure that gets a list of ruCUPlane device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ruuplane_49d312b91abfe9fd6bdfee21a53fb842.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ruuplane_49d312b91abfe9fd6bdfee21a53fb842.py new file mode 100644 index 000000000..2ff4d4cb8 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/ruuplane_49d312b91abfe9fd6bdfee21a53fb842.py @@ -0,0 +1,212 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class RuUPlane(Base): + """ORAN RU U Plane for traffic wizard. + The RuUPlane class encapsulates a required ruUPlane resource which will be retrieved from the server every time the property is accessed. + """ + + __slots__ = () + _SDM_NAME = "ruUPlane" + _SDM_ATT_MAP = { + "Active": "active", + "Count": "count", + "DescriptiveName": "descriptiveName", + "Name": "name", + } + _SDM_ENUM_MAP = {} + + def __init__(self, parent, list_op=False): + super(RuUPlane, self).__init__(parent, list_op) + + @property + def Connector(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.connector_d0d942810e4010add7642d3914a1f29b.Connector): An instance of the Connector class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.connector_d0d942810e4010add7642d3914a1f29b import ( + Connector, + ) + + if len(self._object_properties) > 0: + if self._properties.get("Connector", None) is not None: + return self._properties.get("Connector") + return Connector(self) + + @property + def Tag(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.tag_e30f24de79247381d4dfd423b2f6986d.Tag): An instance of the Tag class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.tag_e30f24de79247381d4dfd423b2f6986d import ( + Tag, + ) + + if len(self._object_properties) > 0: + if self._properties.get("Tag", None) is not None: + return self._properties.get("Tag") + return Tag(self) + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + def update(self, Name=None): + # type: (str) -> RuUPlane + """Updates ruUPlane resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def find(self, Count=None, DescriptiveName=None, Name=None): + # type: (int, str, str) -> RuUPlane + """Finds and retrieves ruUPlane resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve ruUPlane resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all ruUPlane resources from the server. + + Args + ---- + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Returns + ------- + - self: This instance with matching ruUPlane resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of ruUPlane data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the ruUPlane resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def get_device_ids(self, PortNames=None, Active=None): + """Base class infrastructure that gets a list of ruUPlane device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/siminterfaceipv6config_189f3bfbc365f2b105e35cd8b9d542d6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/siminterfaceipv6config_189f3bfbc365f2b105e35cd8b9d542d6.py index 2bfa69b6d..586af78ce 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/siminterfaceipv6config_189f3bfbc365f2b105e35cd8b9d542d6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/siminterfaceipv6config_189f3bfbc365f2b105e35cd8b9d542d6.py @@ -54,13 +54,13 @@ def Ospfv3PseudoInterface(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ospfv3pseudointerface_327f4e2b6135eda641c61e8b406754f5.Ospfv3PseudoInterface): An instance of the Ospfv3PseudoInterface class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ospfv3pseudointerface_1f2c21f89a2195f0af73017a746752a7.Ospfv3PseudoInterface): An instance of the Ospfv3PseudoInterface class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ospfv3pseudointerface_327f4e2b6135eda641c61e8b406754f5 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ospfv3pseudointerface_1f2c21f89a2195f0af73017a746752a7 import ( Ospfv3PseudoInterface, ) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oam_2c2276a61daa7bd5cb5602114c35ba53.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oam_222b2d34be60272a50cccc049cada4ef.py similarity index 91% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oam_2c2276a61daa7bd5cb5602114c35ba53.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oam_222b2d34be60272a50cccc049cada4ef.py index 4447434a3..817867f1e 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oam_2c2276a61daa7bd5cb5602114c35ba53.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oam_222b2d34be60272a50cccc049cada4ef.py @@ -48,6 +48,7 @@ class Srv6Oam(Base): "Multiplier": "multiplier", "Name": "name", "NumPingTraceRouteDest": "numPingTraceRouteDest", + "NumReverseBsid": "numReverseBsid", "ReplyDestUnreachCode": "replyDestUnreachCode", "RxCfgSrcAddrFlag": "rxCfgSrcAddrFlag", "RxSrcAddr": "rxSrcAddr", @@ -137,13 +138,13 @@ def Srv6OamDestination(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oamdestination_db6b12442d0712e3252c53be323d3b83.Srv6OamDestination): An instance of the Srv6OamDestination class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oamdestination_4c1ece21781b682b07f8d26d61f2b8b6.Srv6OamDestination): An instance of the Srv6OamDestination class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oamdestination_db6b12442d0712e3252c53be323d3b83 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oamdestination_4c1ece21781b682b07f8d26d61f2b8b6 import ( Srv6OamDestination, ) @@ -152,6 +153,26 @@ def Srv6OamDestination(self): return self._properties.get("Srv6OamDestination") return Srv6OamDestination(self)._select() + @property + def Srv6OamReverseBsid(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oamreversebsid_32c773aa5ec81fe48c4dde8135918746.Srv6OamReverseBsid): An instance of the Srv6OamReverseBsid class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oamreversebsid_32c773aa5ec81fe48c4dde8135918746 import ( + Srv6OamReverseBsid, + ) + + if len(self._object_properties) > 0: + if self._properties.get("Srv6OamReverseBsid", None) is not None: + return self._properties.get("Srv6OamReverseBsid") + return Srv6OamReverseBsid(self)._select() + @property def Srv6SbfdResponder(self): """ @@ -190,7 +211,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -239,7 +260,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -310,6 +331,21 @@ def NumPingTraceRouteDest(self, value): # type: (int) -> None self._set_attribute(self._SDM_ATT_MAP["NumPingTraceRouteDest"], value) + @property + def NumReverseBsid(self): + # type: () -> int + """ + Returns + ------- + - number: Specify number of Reverse Binding SIDs to be configured for backhaul detection. + """ + return self._get_attribute(self._SDM_ATT_MAP["NumReverseBsid"]) + + @NumReverseBsid.setter + def NumReverseBsid(self, value): + # type: (int) -> None + self._set_attribute(self._SDM_ATT_MAP["NumReverseBsid"], value) + @property def ReplyDestUnreachCode(self): # type: () -> 'Multivalue' @@ -366,7 +402,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -416,10 +452,11 @@ def update( Multiplier=None, Name=None, NumPingTraceRouteDest=None, + NumReverseBsid=None, StackedLayers=None, TracerouteDstPort=None, ): - # type: (List[str], bool, int, str, int, List[str], int) -> Srv6Oam + # type: (List[str], bool, int, str, int, int, List[str], int) -> Srv6Oam """Updates srv6Oam resource on the server. This method has some named parameters with a type: obj (Multivalue). @@ -427,12 +464,13 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableSBfdResponder (bool): If selected, it enables the S-BFD Responder. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumPingTraceRouteDest (number): Specify number of destinations to be configured for Ping/Trace Route/SBFD Requests. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - NumReverseBsid (number): Specify number of Reverse Binding SIDs to be configured for backhaul detection. + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TracerouteDstPort (number): Destination Port to be used for Trace Route Raises @@ -448,20 +486,22 @@ def add( Multiplier=None, Name=None, NumPingTraceRouteDest=None, + NumReverseBsid=None, StackedLayers=None, TracerouteDstPort=None, ): - # type: (List[str], bool, int, str, int, List[str], int) -> Srv6Oam + # type: (List[str], bool, int, str, int, int, List[str], int) -> Srv6Oam """Adds a new srv6Oam resource on the server and adds it to the container. Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableSBfdResponder (bool): If selected, it enables the S-BFD Responder. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumPingTraceRouteDest (number): Specify number of destinations to be configured for Ping/Trace Route/SBFD Requests. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - NumReverseBsid (number): Specify number of Reverse Binding SIDs to be configured for backhaul detection. + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TracerouteDstPort (number): Destination Port to be used for Trace Route Returns @@ -495,6 +535,7 @@ def find( Multiplier=None, Name=None, NumPingTraceRouteDest=None, + NumReverseBsid=None, SessionStatus=None, StackedLayers=None, StateCounts=None, @@ -509,17 +550,18 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableSBfdResponder (bool): If selected, it enables the S-BFD Responder. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LocalRouterId (list(str)): The MPLOAM Router ID value, in IPv4 format. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumPingTraceRouteDest (number): Specify number of destinations to be configured for Ping/Trace Route/SBFD Requests. + - NumReverseBsid (number): Specify number of Reverse Binding SIDs to be configured for backhaul detection. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TracerouteDstPort (number): Destination Port to be used for Trace Route diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamdestination_db6b12442d0712e3252c53be323d3b83.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamdestination_4c1ece21781b682b07f8d26d61f2b8b6.py similarity index 75% rename from ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamdestination_db6b12442d0712e3252c53be323d3b83.py rename to ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamdestination_4c1ece21781b682b07f8d26d61f2b8b6.py index 2092d5017..8aeb82f8b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamdestination_db6b12442d0712e3252c53be323d3b83.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamdestination_4c1ece21781b682b07f8d26d61f2b8b6.py @@ -37,9 +37,21 @@ class Srv6OamDestination(Base): _SDM_ATT_MAP = { "Active": "active", "AutoGenSegmentLeftValue": "autoGenSegmentLeftValue", + "BfdDiscriminator": "bfdDiscriminator", + "BfdEchoInterval": "bfdEchoInterval", + "BfdEnCtrlPlaneIndependent": "bfdEnCtrlPlaneIndependent", + "BfdEnPeerDiscriminatorLearned": "bfdEnPeerDiscriminatorLearned", + "BfdHopLimit": "bfdHopLimit", + "BfdMinRxInterval": "bfdMinRxInterval", + "BfdMode": "bfdMode", + "BfdPeerDiscriminator": "bfdPeerDiscriminator", + "BfdSessionInfo": "bfdSessionInfo", + "BfdTimeoutMultiplier": "bfdTimeoutMultiplier", + "BfdTxInterval": "bfdTxInterval", "Count": "count", "DescriptiveName": "descriptiveName", "EnReducedSRH": "enReducedSRH", + "EnableBfd": "enableBfd", "EnableSBfdInitiator": "enableSBfdInitiator", "MaxTtlForTR": "maxTtlForTR", "MyDiscriminator": "myDiscriminator", @@ -118,6 +130,151 @@ def AutoGenSegmentLeftValue(self): self, self._get_attribute(self._SDM_ATT_MAP["AutoGenSegmentLeftValue"]) ) + @property + def BfdDiscriminator(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The value to be used for My Discriminator in BFD packets sent by this BFD session. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["BfdDiscriminator"]) + ) + + @property + def BfdEchoInterval(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Echo Interval in Milli Seconds. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["BfdEchoInterval"]) + ) + + @property + def BfdEnCtrlPlaneIndependent(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If selected, it enables the Control Plane Independent flag BFD packet. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["BfdEnCtrlPlaneIndependent"]) + ) + + @property + def BfdEnPeerDiscriminatorLearned(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If selected, it enables BFD session to learn peer discriminator. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["BfdEnPeerDiscriminatorLearned"]), + ) + + @property + def BfdHopLimit(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Hop Limit to be set in IPv6 header in BFD packet. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["BfdHopLimit"])) + + @property + def BfdMinRxInterval(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The minimum interval, in milliseconds, between received BFD packets that this session is capable of supporting. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["BfdMinRxInterval"]) + ) + + @property + def BfdMode(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Mode of BFD session. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["BfdMode"])) + + @property + def BfdPeerDiscriminator(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The value to be used for Your Discriminator in BFD packets sent by this BFD session. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["BfdPeerDiscriminator"]) + ) + + @property + def BfdSessionInfo(self): + # type: () -> List[str] + """ + Returns + ------- + - list(str[adminDown | down | errorDupDisc | up]): Current state of the BFD Session. + """ + return self._get_attribute(self._SDM_ATT_MAP["BfdSessionInfo"]) + + @property + def BfdTimeoutMultiplier(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If reply packets are not recieved within Timeout Multiplier times Negotiated Transmit Interval, then session is brought down and Flap Count is increased in statistics. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["BfdTimeoutMultiplier"]) + ) + + @property + def BfdTxInterval(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): The minimum inter, in milliseconds, thst the session would like to use when transmitting BFD packets. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["BfdTxInterval"])) + @property def Count(self): # type: () -> int @@ -150,6 +307,18 @@ def EnReducedSRH(self): return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["EnReducedSRH"])) + @property + def EnableBfd(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If selected, it enables the BFD. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["EnableBfd"])) + @property def EnableSBfdInitiator(self): # type: () -> 'Multivalue' @@ -502,6 +671,7 @@ def update( def find( self, + BfdSessionInfo=None, Count=None, DescriptiveName=None, Name=None, @@ -512,7 +682,7 @@ def find( SessionInfo=None, ValidateDestination=None, ): - # type: (int, str, str, int, int, int, str, List[str], bool) -> Srv6OamDestination + # type: (List[str], int, str, str, int, int, int, str, List[str], bool) -> Srv6OamDestination """Finds and retrieves srv6OamDestination resources from the server. All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve srv6OamDestination resources from the server. @@ -521,6 +691,7 @@ def find( Args ---- + - BfdSessionInfo (list(str[adminDown | down | errorDupDisc | up])): Current state of the BFD Session. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -585,6 +756,32 @@ def ClearAllLearnedInfo(self, *args, **kwargs): "clearAllLearnedInfo", payload=payload, response_object=None ) + def GetBfdSessionLearnedInfo(self, *args, **kwargs): + # type: (*Any, **Any) -> Union[List[str], None] + """Executes the getBfdSessionLearnedInfo operation on the server. + + Fetch BFD Session Learned Information. + + getBfdSessionLearnedInfo(Arg2=list, async_operation=bool)list + ------------------------------------------------------------- + - Arg2 (list(number)): List of indices into the learned information corresponding to trigger data. + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + - Returns list(str): ID to associate each async action invocation + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self.href} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute( + "getBfdSessionLearnedInfo", payload=payload, response_object=None + ) + def GetPeriodicOrContLearnedInfo(self, *args, **kwargs): # type: (*Any, **Any) -> Union[List[str], None] """Executes the getPeriodicOrContLearnedInfo operation on the server. @@ -687,6 +884,30 @@ def SendTraceRouteRequest(self, *args, **kwargs): "sendTraceRouteRequest", payload=payload, response_object=None ) + def StartBfd(self, *args, **kwargs): + # type: (*Any, **Any) -> Union[List[str], None] + """Executes the startBfd operation on the server. + + Trigger to start sending BFD packets. + + startBfd(Arg2=list, async_operation=bool)list + --------------------------------------------- + - Arg2 (list(number)): List of indices into the learned information corresponding to trigger data. + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + - Returns list(str): ID to associate each async action invocation + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self.href} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("startBfd", payload=payload, response_object=None) + def StartSbfd(self, *args, **kwargs): # type: (*Any, **Any) -> Union[List[str], None] """Executes the startSbfd operation on the server. @@ -711,6 +932,30 @@ def StartSbfd(self, *args, **kwargs): payload[item[0]] = item[1] return self._execute("startSbfd", payload=payload, response_object=None) + def StopBfd(self, *args, **kwargs): + # type: (*Any, **Any) -> Union[List[str], None] + """Executes the stopBfd operation on the server. + + Trigger to stop sending BFD packets. + + stopBfd(Arg2=list, async_operation=bool)list + -------------------------------------------- + - Arg2 (list(number)): List of indices into the learned information corresponding to trigger data. + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + - Returns list(str): ID to associate each async action invocation + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self.href} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("stopBfd", payload=payload, response_object=None) + def StopPing(self, *args, **kwargs): # type: (*Any, **Any) -> Union[List[str], None] """Executes the stopPing operation on the server. @@ -764,7 +1009,18 @@ def get_device_ids( PortNames=None, Active=None, AutoGenSegmentLeftValue=None, + BfdDiscriminator=None, + BfdEchoInterval=None, + BfdEnCtrlPlaneIndependent=None, + BfdEnPeerDiscriminatorLearned=None, + BfdHopLimit=None, + BfdMinRxInterval=None, + BfdMode=None, + BfdPeerDiscriminator=None, + BfdTimeoutMultiplier=None, + BfdTxInterval=None, EnReducedSRH=None, + EnableBfd=None, EnableSBfdInitiator=None, MaxTtlForTR=None, MyDiscriminator=None, @@ -792,7 +1048,18 @@ def get_device_ids( - PortNames (str): optional regex of port names - Active (str): optional regex of active - AutoGenSegmentLeftValue (str): optional regex of autoGenSegmentLeftValue + - BfdDiscriminator (str): optional regex of bfdDiscriminator + - BfdEchoInterval (str): optional regex of bfdEchoInterval + - BfdEnCtrlPlaneIndependent (str): optional regex of bfdEnCtrlPlaneIndependent + - BfdEnPeerDiscriminatorLearned (str): optional regex of bfdEnPeerDiscriminatorLearned + - BfdHopLimit (str): optional regex of bfdHopLimit + - BfdMinRxInterval (str): optional regex of bfdMinRxInterval + - BfdMode (str): optional regex of bfdMode + - BfdPeerDiscriminator (str): optional regex of bfdPeerDiscriminator + - BfdTimeoutMultiplier (str): optional regex of bfdTimeoutMultiplier + - BfdTxInterval (str): optional regex of bfdTxInterval - EnReducedSRH (str): optional regex of enReducedSRH + - EnableBfd (str): optional regex of enableBfd - EnableSBfdInitiator (str): optional regex of enableSBfdInitiator - MaxTtlForTR (str): optional regex of maxTtlForTR - MyDiscriminator (str): optional regex of myDiscriminator diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamreversebsid_32c773aa5ec81fe48c4dde8135918746.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamreversebsid_32c773aa5ec81fe48c4dde8135918746.py new file mode 100644 index 000000000..5c728e9fa --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamreversebsid_32c773aa5ec81fe48c4dde8135918746.py @@ -0,0 +1,359 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class Srv6OamReverseBsid(Base): + """SRv6 Reverse Binding SID Address + The Srv6OamReverseBsid class encapsulates a required srv6OamReverseBsid resource which will be retrieved from the server every time the property is accessed. + """ + + __slots__ = () + _SDM_NAME = "srv6OamReverseBsid" + _SDM_ATT_MAP = { + "Active": "active", + "AutoGenSegmentLeftValue": "autoGenSegmentLeftValue", + "Count": "count", + "DescriptiveName": "descriptiveName", + "HopLimit": "hopLimit", + "Name": "name", + "NumSegments": "numSegments", + "RemoveOuterHeader": "removeOuterHeader", + "SegmentLeftValue": "segmentLeftValue", + "SiIndex": "siIndex", + "SrcAddress": "srcAddress", + "SrcSameAsIncoming": "srcSameAsIncoming", + "Srv6ReverseBsid": "srv6ReverseBsid", + "UseGSRv6SI": "useGSRv6SI", + } + _SDM_ENUM_MAP = {} + + def __init__(self, parent, list_op=False): + super(Srv6OamReverseBsid, self).__init__(parent, list_op) + + @property + def Srv6oamSegmentNode(self): + """ + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oamsegmentnode_4504116c9d97fb3485d94c3ced1752bc.Srv6oamSegmentNode): An instance of the Srv6oamSegmentNode class + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.srv6oamsegmentnode_4504116c9d97fb3485d94c3ced1752bc import ( + Srv6oamSegmentNode, + ) + + if len(self._object_properties) > 0: + if self._properties.get("Srv6oamSegmentNode", None) is not None: + return self._properties.get("Srv6oamSegmentNode") + return Srv6oamSegmentNode(self)._select() + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def AutoGenSegmentLeftValue(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If enabled then Segment Left field value will be auto generated. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["AutoGenSegmentLeftValue"]) + ) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def HopLimit(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Hop Limit to be used in IPv6 Header of backhaul packet. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["HopLimit"])) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + @property + def NumSegments(self): + # type: () -> int + """ + Returns + ------- + - number: Total Number Segments/Trasit addresses present to reach destination. This count is excluding the actual Destination Address. + """ + return self._get_attribute(self._SDM_ATT_MAP["NumSegments"]) + + @NumSegments.setter + def NumSegments(self, value): + # type: (int) -> None + self._set_attribute(self._SDM_ATT_MAP["NumSegments"], value) + + @property + def RemoveOuterHeader(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If Enabled, Outer IPv6 header will be removed in backhaul packet. If Disabled, all incoming headers will be present in backhaul packet. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RemoveOuterHeader"]) + ) + + @property + def SegmentLeftValue(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Segment Left value to be used in SRH. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SegmentLeftValue"]) + ) + + @property + def SiIndex(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Segment Index to be filled in argument field of IPv6 Destination Address. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["SiIndex"])) + + @property + def SrcAddress(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): IPv6 Source address to be used in backhaul packet. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["SrcAddress"])) + + @property + def SrcSameAsIncoming(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): If enabled, Source Address will be copied from Source Address of incoming packet. If Disabled, Source Address of will be taken from input configuration. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SrcSameAsIncoming"]) + ) + + @property + def Srv6ReverseBsid(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Reverse Binding SID address to be used for backhaul detection. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Srv6ReverseBsid"]) + ) + + @property + def UseGSRv6SI(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Use G SRv6 SI in SRH. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["UseGSRv6SI"])) + + def update(self, Name=None, NumSegments=None): + # type: (str, int) -> Srv6OamReverseBsid + """Updates srv6OamReverseBsid resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + - NumSegments (number): Total Number Segments/Trasit addresses present to reach destination. This count is excluding the actual Destination Address. + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def find(self, Count=None, DescriptiveName=None, Name=None, NumSegments=None): + # type: (int, str, str, int) -> Srv6OamReverseBsid + """Finds and retrieves srv6OamReverseBsid resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve srv6OamReverseBsid resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all srv6OamReverseBsid resources from the server. + + Args + ---- + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + - NumSegments (number): Total Number Segments/Trasit addresses present to reach destination. This count is excluding the actual Destination Address. + + Returns + ------- + - self: This instance with matching srv6OamReverseBsid resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of srv6OamReverseBsid data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the srv6OamReverseBsid resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def get_device_ids( + self, + PortNames=None, + Active=None, + AutoGenSegmentLeftValue=None, + HopLimit=None, + RemoveOuterHeader=None, + SegmentLeftValue=None, + SiIndex=None, + SrcAddress=None, + SrcSameAsIncoming=None, + Srv6ReverseBsid=None, + UseGSRv6SI=None, + ): + """Base class infrastructure that gets a list of srv6OamReverseBsid device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + - AutoGenSegmentLeftValue (str): optional regex of autoGenSegmentLeftValue + - HopLimit (str): optional regex of hopLimit + - RemoveOuterHeader (str): optional regex of removeOuterHeader + - SegmentLeftValue (str): optional regex of segmentLeftValue + - SiIndex (str): optional regex of siIndex + - SrcAddress (str): optional regex of srcAddress + - SrcSameAsIncoming (str): optional regex of srcSameAsIncoming + - Srv6ReverseBsid (str): optional regex of srv6ReverseBsid + - UseGSRv6SI (str): optional regex of useGSRv6SI + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamsegmentnode_4504116c9d97fb3485d94c3ced1752bc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamsegmentnode_4504116c9d97fb3485d94c3ced1752bc.py new file mode 100644 index 000000000..ca73dd230 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/srv6oamsegmentnode_4504116c9d97fb3485d94c3ced1752bc.py @@ -0,0 +1,269 @@ +# MIT LICENSE +# +# Copyright 1997 - 2020 by IXIA Keysight +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +import sys +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + +if sys.version_info >= (3, 5): + from typing import List, Any, Union + + +class Srv6oamSegmentNode(Base): + """ + The Srv6oamSegmentNode class encapsulates a required srv6oamSegmentNode resource which will be retrieved from the server every time the property is accessed. + """ + + __slots__ = () + _SDM_NAME = "srv6oamSegmentNode" + _SDM_ATT_MAP = { + "Active": "active", + "Count": "count", + "DescriptiveName": "descriptiveName", + "FunctionLen": "functionLen", + "GSIDEnableFlag": "gSIDEnableFlag", + "LocatorBlkLen": "locatorBlkLen", + "LocatorNodeLen": "locatorNodeLen", + "Name": "name", + "SegmentAddress": "segmentAddress", + "Srv6ReverseBsid": "srv6ReverseBsid", + } + _SDM_ENUM_MAP = {} + + def __init__(self, parent, list_op=False): + super(Srv6oamSegmentNode, self).__init__(parent, list_op) + + @property + def Active(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Activate/Deactivate Configuration + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["Active"])) + + @property + def Count(self): + # type: () -> int + """ + Returns + ------- + - number: Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + """ + return self._get_attribute(self._SDM_ATT_MAP["Count"]) + + @property + def DescriptiveName(self): + # type: () -> str + """ + Returns + ------- + - str: Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + """ + return self._get_attribute(self._SDM_ATT_MAP["DescriptiveName"]) + + @property + def FunctionLen(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Function Length in bits for this Segment. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["FunctionLen"])) + + @property + def GSIDEnableFlag(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Generalised SRv6 SID (G-SID) : If Enabled, then Compressed SID will be considered in SRH header. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["GSIDEnableFlag"]) + ) + + @property + def LocatorBlkLen(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Locator Block Length in bits for this Segment. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["LocatorBlkLen"])) + + @property + def LocatorNodeLen(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Locator Node Length in bits for this Segment. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["LocatorNodeLen"]) + ) + + @property + def Name(self): + # type: () -> str + """ + Returns + ------- + - str: Name of NGPF element, guaranteed to be unique in Scenario + """ + return self._get_attribute(self._SDM_ATT_MAP["Name"]) + + @Name.setter + def Name(self, value): + # type: (str) -> None + self._set_attribute(self._SDM_ATT_MAP["Name"], value) + + @property + def SegmentAddress(self): + # type: () -> 'Multivalue' + """ + Returns + ------- + - obj(ixnetwork_restpy.multivalue.Multivalue): Segment Address to be used in SRH header. + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SegmentAddress"]) + ) + + @property + def Srv6ReverseBsid(self): + # type: () -> List[str] + """ + Returns + ------- + - list(str): Reverse BSID for reference. + """ + return self._get_attribute(self._SDM_ATT_MAP["Srv6ReverseBsid"]) + + def update(self, Name=None): + # type: (str) -> Srv6oamSegmentNode + """Updates srv6oamSegmentNode resource on the server. + + This method has some named parameters with a type: obj (Multivalue). + The Multivalue class has documentation that details the possible values for those named parameters. + + Args + ---- + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) + + def find(self, Count=None, DescriptiveName=None, Name=None, Srv6ReverseBsid=None): + # type: (int, str, str, List[str]) -> Srv6oamSegmentNode + """Finds and retrieves srv6oamSegmentNode resources from the server. + + All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve srv6oamSegmentNode resources from the server. + To retrieve an exact match ensure the parameter value starts with ^ and ends with $ + By default the find method takes no parameters and will retrieve all srv6oamSegmentNode resources from the server. + + Args + ---- + - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. + - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. + - Name (str): Name of NGPF element, guaranteed to be unique in Scenario + - Srv6ReverseBsid (list(str)): Reverse BSID for reference. + + Returns + ------- + - self: This instance with matching srv6oamSegmentNode resources retrieved from the server available through an iterator or index + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) + + def read(self, href): + """Retrieves a single instance of srv6oamSegmentNode data from the server. + + Args + ---- + - href (str): An href to the instance to be retrieved + + Returns + ------- + - self: This instance with the srv6oamSegmentNode resources from the server available through an iterator or index + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + return self._read(href) + + def get_device_ids( + self, + PortNames=None, + Active=None, + FunctionLen=None, + GSIDEnableFlag=None, + LocatorBlkLen=None, + LocatorNodeLen=None, + SegmentAddress=None, + ): + """Base class infrastructure that gets a list of srv6oamSegmentNode device ids encapsulated by this object. + + Use the optional regex parameters in the method to refine the list of device ids encapsulated by this object. + + Args + ---- + - PortNames (str): optional regex of port names + - Active (str): optional regex of active + - FunctionLen (str): optional regex of functionLen + - GSIDEnableFlag (str): optional regex of gSIDEnableFlag + - LocatorBlkLen (str): optional regex of locatorBlkLen + - LocatorNodeLen (str): optional regex of locatorNodeLen + - SegmentAddress (str): optional regex of segmentAddress + + Returns + ------- + - list(int): A list of device ids that meets the regex criteria provided in the method parameters + + Raises + ------ + - ServerError: The server has encountered an uncategorized error condition + """ + return self._get_ngpf_device_ids(locals()) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/staticlag_d16a8997708d466db9c9f007ce04724e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/staticlag_d16a8997708d466db9c9f007ce04724e.py index b383339f2..f9b983ad6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/staticlag_d16a8997708d466db9c9f007ce04724e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/staticlag_d16a8997708d466db9c9f007ce04724e.py @@ -83,7 +83,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -117,7 +117,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -179,7 +179,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -216,10 +216,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -233,10 +233,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -279,14 +279,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/staticmacsec_334bb16ed0f82339d219d0d5f058cee4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/staticmacsec_334bb16ed0f82339d219d0d5f058cee4.py index b940cfcf8..1674c4c82 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/staticmacsec_334bb16ed0f82339d219d0d5f058cee4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/staticmacsec_334bb16ed0f82339d219d0d5f058cee4.py @@ -168,13 +168,13 @@ def Ipv6(self): """ Returns ------- - - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390.Ipv6): An instance of the Ipv6 class + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc.Ipv6): An instance of the Ipv6 class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ - from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_0cf8a9d52fdc1a66c95779a358f9f390 import ( + from ixnetwork_restpy.testplatform.sessions.ixnetwork.topology.ipv6_b40789fa49420009901a46b8dc683afc import ( Ipv6, ) @@ -267,7 +267,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -463,7 +463,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -680,7 +680,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -858,7 +858,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableClearTextVlans (bool): Determines whether the VLANs configured on the parent Ethernet layer are sent as clear text VLANs (before secTAG) or as encrypted VLANs (after secTAG). By default this is disabled and the VLANs configured on the parent Ethernet layer are copied to MACsec layer and sent as encrypted VLANs. - EncryptedTrafficType (str(statefulL47 | statelessL23)): Determines the set of MACsec functionalities supported by a Device Group. Stateless L2-3 enables encryption of stateless L2-3 traffic at line rate, Stateful L4-7 enables encryption and live decryption of stateful L4-7 traffic at lower throughput. Separate Device Groups need to be configured to get both the options on the same port. - EncryptedVlanCount (number): Denotes the number of VLANs to be sent as encrypted VLANs. Maximum 6 VLANs can be configured as encrypted VLANs. @@ -872,7 +872,7 @@ def update( - RxSakPoolSize (number): Determines the number of SAKs configured for each device for the Rx secure channel. Multiple SAKs are needed if DUT is expected to trigger Rekey during the test. - SendGratArp (bool): Determines whether Grat ARP should be sent out by each device with the configured MAC-IP mapping if encryption engine is Hardware Based. If Grap ARP is disabled then static ARP entries need to be created at the DUT to avoid traffic loss. - SourceMac (list(str)): MAC address of the Ethernet devices configured in the Ethernet stack. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TxSakPoolSize (number): Determines the number of SAKs configured for each device for the Tx secure channel. Multiple SAKs are needed if Rekey scenario is to be simulated. Raises @@ -905,7 +905,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableClearTextVlans (bool): Determines whether the VLANs configured on the parent Ethernet layer are sent as clear text VLANs (before secTAG) or as encrypted VLANs (after secTAG). By default this is disabled and the VLANs configured on the parent Ethernet layer are copied to MACsec layer and sent as encrypted VLANs. - EncryptedTrafficType (str(statefulL47 | statelessL23)): Determines the set of MACsec functionalities supported by a Device Group. Stateless L2-3 enables encryption of stateless L2-3 traffic at line rate, Stateful L4-7 enables encryption and live decryption of stateful L4-7 traffic at lower throughput. Separate Device Groups need to be configured to get both the options on the same port. - EncryptedVlanCount (number): Denotes the number of VLANs to be sent as encrypted VLANs. Maximum 6 VLANs can be configured as encrypted VLANs. @@ -919,7 +919,7 @@ def add( - RxSakPoolSize (number): Determines the number of SAKs configured for each device for the Rx secure channel. Multiple SAKs are needed if DUT is expected to trigger Rekey during the test. - SendGratArp (bool): Determines whether Grat ARP should be sent out by each device with the configured MAC-IP mapping if encryption engine is Hardware Based. If Grap ARP is disabled then static ARP entries need to be created at the DUT to avoid traffic loss. - SourceMac (list(str)): MAC address of the Ethernet devices configured in the Ethernet stack. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - TxSakPoolSize (number): Determines the number of SAKs configured for each device for the Tx secure channel. Multiple SAKs are needed if Rekey scenario is to be simulated. Returns @@ -975,14 +975,14 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableClearTextVlans (bool): Determines whether the VLANs configured on the parent Ethernet layer are sent as clear text VLANs (before secTAG) or as encrypted VLANs (after secTAG). By default this is disabled and the VLANs configured on the parent Ethernet layer are copied to MACsec layer and sent as encrypted VLANs. - EncryptedTrafficType (str(statefulL47 | statelessL23)): Determines the set of MACsec functionalities supported by a Device Group. Stateless L2-3 enables encryption of stateless L2-3 traffic at line rate, Stateful L4-7 enables encryption and live decryption of stateful L4-7 traffic at lower throughput. Separate Device Groups need to be configured to get both the options on the same port. - EncryptedVlanCount (number): Denotes the number of VLANs to be sent as encrypted VLANs. Maximum 6 VLANs can be configured as encrypted VLANs. - EncryptionEngine (str(softwareBased | hardwareBased)): Obsolete field. Replaced by Encrypted Traffic Type. Value is always same as Encrypted Traffic Type. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - FixedPn (number): Packet Number with which all MACsec packets will be sent out by all the devices of the Device Group. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario @@ -993,7 +993,7 @@ def find( - SendGratArp (bool): Determines whether Grat ARP should be sent out by each device with the configured MAC-IP mapping if encryption engine is Hardware Based. If Grap ARP is disabled then static ARP entries need to be created at the DUT to avoid traffic loss. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - SourceMac (list(str)): MAC address of the Ethernet devices configured in the Ethernet stack. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - TxSakPoolSize (number): Determines the number of SAKs configured for each device for the Tx secure channel. Multiple SAKs are needed if Rekey scenario is to be simulated. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/streams_dcd5bdb9e0099c6354f7bed1be55d8f6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/streams_dcd5bdb9e0099c6354f7bed1be55d8f6.py index 5e83d06ee..c72f52fa7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/streams_dcd5bdb9e0099c6354f7bed1be55d8f6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/streams_dcd5bdb9e0099c6354f7bed1be55d8f6.py @@ -121,7 +121,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -183,7 +183,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -323,7 +323,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -408,10 +408,10 @@ def update(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=No Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Raises ------ @@ -425,10 +425,10 @@ def add(self, ConnectedVia=None, Multiplier=None, Name=None, StackedLayers=None) Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols Returns ------- @@ -473,14 +473,14 @@ def find( Args ---- - ActualBandwidth (list(str)): Bandwidth (Mbps) - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/tlvprofile/tlvprofile_69db000d3ef3b060f5edc387b878736c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/tlvprofile/tlvprofile_69db000d3ef3b060f5edc387b878736c.py index 0d5f0d1e3..7b8ca3e94 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/tlvprofile/tlvprofile_69db000d3ef3b060f5edc387b878736c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/tlvprofile/tlvprofile_69db000d3ef3b060f5edc387b878736c.py @@ -137,7 +137,7 @@ def CopyTlv(self, *args, **kwargs): copyTlv(Arg2=href, async_operation=bool)href -------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/globals/.../topology)): An object reference to a source template tlv + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/globals/topology/.../tlv)): An object reference to a source template tlv - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str(None): An object reference to the newly created topology tlv as a result of the copy operation diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/tlvprofile/value_ac1d7b13584a86b9cf1c28dca3390bca.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/tlvprofile/value_ac1d7b13584a86b9cf1c28dca3390bca.py index ff15d2201..aeffec2cf 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/tlvprofile/value_ac1d7b13584a86b9cf1c28dca3390bca.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/tlvprofile/value_ac1d7b13584a86b9cf1c28dca3390bca.py @@ -139,7 +139,7 @@ def GetMVPropertyCandidatesToSharePatternWith(self, *args, **kwargs): getMVPropertyCandidatesToSharePatternWith(async_operation=bool)list ------------------------------------------------------------------- - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns list(list[str[None | /api/v1/sessions/1/ixnetwork//.../*]]): list of MVProperties this pattern can be shared with + - Returns list(list[str[None | /api/v1/sessions/1/ixnetwork/]]): list of MVProperties this pattern can be shared with Raises ------ @@ -165,7 +165,7 @@ def GetSharedPatternCandidates(self, *args, **kwargs): getSharedPatternCandidates(async_operation=bool)list ---------------------------------------------------- - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns list(list[str[None | /api/v1/sessions/1/ixnetwork//.../*]]): list of patterns may be shared + - Returns list(list[str[None | /api/v1/sessions/1/ixnetwork/]]): list of patterns may be shared Raises ------ diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/topology_9d0fe0bb2c064aa7010adbdb6cf68958.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/topology_9d0fe0bb2c064aa7010adbdb6cf68958.py index c2f0b62c5..36f36d3f2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/topology_9d0fe0bb2c064aa7010adbdb6cf68958.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/topology_9d0fe0bb2c064aa7010adbdb6cf68958.py @@ -98,7 +98,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -271,7 +271,7 @@ def find( Args ---- - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - LagCount (number): Number of /lags assigned - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - Note (str): Any Note about the Topology diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/upgroupinfo_a6f4a99dcdd5ccbad002b6727b9165b1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/upgroupinfo_a6f4a99dcdd5ccbad002b6727b9165b1.py index 9c3f8fa5b..8ebe77fdb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/upgroupinfo_a6f4a99dcdd5ccbad002b6727b9165b1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/upgroupinfo_a6f4a99dcdd5ccbad002b6727b9165b1.py @@ -486,7 +486,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -574,7 +574,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -935,7 +935,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -1115,7 +1115,7 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfAccessInterfaceConfigs (number): Number of access interfaces to configure. @@ -1127,7 +1127,7 @@ def update( - NumberOfPppoeUsers (number): Number of PPPoE Subscriber Groups. - NumberOfStaticUsers (number): Number of Static Subscribers. - NumberOfWebPolicyConfig (number): Number of Web Policies to be configured. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - Upcapabilities (number): Up Capabilities Raises @@ -1158,7 +1158,7 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfAccessInterfaceConfigs (number): Number of access interfaces to configure. @@ -1170,7 +1170,7 @@ def add( - NumberOfPppoeUsers (number): Number of PPPoE Subscriber Groups. - NumberOfStaticUsers (number): Number of Static Subscribers. - NumberOfWebPolicyConfig (number): Number of Web Policies to be configured. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - Upcapabilities (number): Up Capabilities Returns @@ -1226,10 +1226,10 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - NumberOfAccessInterfaceConfigs (number): Number of access interfaces to configure. @@ -1244,7 +1244,7 @@ def find( - NumberOfWebPolicyConfig (number): Number of Web Policies to be configured. - SessionInfo (list(str[deadTimerExpiredErr | helloTlvLengthErr | helloVersionMismatchErrTx | kaTlvLengthErr | none])): Logs additional information about the session state. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. - Upcapabilities (number): Up Capabilities diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlan_ed3df6fe7146492fc5fe0f77f53f9473.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlan_ed3df6fe7146492fc5fe0f77f53f9473.py index 232102a73..5a56a5469 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlan_ed3df6fe7146492fc5fe0f77f53f9473.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlan_ed3df6fe7146492fc5fe0f77f53f9473.py @@ -297,7 +297,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -346,7 +346,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -455,7 +455,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -530,14 +530,14 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - ExternalLearning (bool): If true, VXLAN will use information received from another protocol which will handle the learning mechanism. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - OvsdbConnectorMultiplier (number): Ovsdb to Vxlan multiplier, when part of OVSDB Server stack. - RunningMode (str(none | ovsdbStack | ovsdbControllerBfdStack)): There will be different behaviours based on role (normal=0, ovsdb controller stack=1, bfd stack=2. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StaticInfoCount (number): Number of unicast VTEP Raises @@ -563,14 +563,14 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - ExternalLearning (bool): If true, VXLAN will use information received from another protocol which will handle the learning mechanism. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - OvsdbConnectorMultiplier (number): Ovsdb to Vxlan multiplier, when part of OVSDB Server stack. - RunningMode (str(none | ovsdbStack | ovsdbControllerBfdStack)): There will be different behaviours based on role (normal=0, ovsdb controller stack=1, bfd stack=2. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StaticInfoCount (number): Number of unicast VTEP Returns @@ -619,18 +619,18 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - ExternalLearning (bool): If true, VXLAN will use information received from another protocol which will handle the learning mechanism. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - OvsdbConnectorMultiplier (number): Ovsdb to Vxlan multiplier, when part of OVSDB Server stack. - RunningMode (str(none | ovsdbStack | ovsdbControllerBfdStack)): There will be different behaviours based on role (normal=0, ovsdb controller stack=1, bfd stack=2. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - StaticInfoCount (number): Number of unicast VTEP - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlangpe_e779e9783907b2c61304fff3bae70291.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlangpe_e779e9783907b2c61304fff3bae70291.py index 3a2f432de..929396958 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlangpe_e779e9783907b2c61304fff3bae70291.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlangpe_e779e9783907b2c61304fff3bae70291.py @@ -277,7 +277,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -326,7 +326,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -435,7 +435,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -510,14 +510,14 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - ExternalLearning (bool): If true, VXLAN will use information received from another protocol which will handle the learning mechanism. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - OvsdbConnectorMultiplier (number): Ovsdb to Vxlan multiplier, when part of OVSDB Server stack. - RunningMode (str(none | ovsdbStack | ovsdbControllerBfdStack)): There will be different behaviours based on role (normal=0, ovsdb controller stack=1, bfd stack=2. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StaticInfoCount (number): Number of unicast VTEP Raises @@ -543,14 +543,14 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - ExternalLearning (bool): If true, VXLAN will use information received from another protocol which will handle the learning mechanism. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - OvsdbConnectorMultiplier (number): Ovsdb to Vxlan multiplier, when part of OVSDB Server stack. - RunningMode (str(none | ovsdbStack | ovsdbControllerBfdStack)): There will be different behaviours based on role (normal=0, ovsdb controller stack=1, bfd stack=2. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StaticInfoCount (number): Number of unicast VTEP Returns @@ -599,18 +599,18 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - ExternalLearning (bool): If true, VXLAN will use information received from another protocol which will handle the learning mechanism. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - OvsdbConnectorMultiplier (number): Ovsdb to Vxlan multiplier, when part of OVSDB Server stack. - RunningMode (str(none | ovsdbStack | ovsdbControllerBfdStack)): There will be different behaviours based on role (normal=0, ovsdb controller stack=1, bfd stack=2. - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - StaticInfoCount (number): Number of unicast VTEP - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlanv6_c18187deccae3db44b9e9de30ad538ec.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlanv6_c18187deccae3db44b9e9de30ad538ec.py index cc9b74d0e..91779b209 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlanv6_c18187deccae3db44b9e9de30ad538ec.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlanv6_c18187deccae3db44b9e9de30ad538ec.py @@ -273,7 +273,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -322,7 +322,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -386,7 +386,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -458,11 +458,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StaticInfoCount (number): Number of unicast VTEP Raises @@ -485,11 +485,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StaticInfoCount (number): Number of unicast VTEP Returns @@ -535,15 +535,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - StaticInfoCount (number): Number of unicast VTEP - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlanv6gpe_c816572194cd020274b16a0978c849fa.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlanv6gpe_c816572194cd020274b16a0978c849fa.py index 9e1036633..45ded1ce3 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlanv6gpe_c816572194cd020274b16a0978c849fa.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/topology/vxlanv6gpe_c816572194cd020274b16a0978c849fa.py @@ -273,7 +273,7 @@ def ConnectedVia(self): """DEPRECATED Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of layers this layer is used to connect with to the wire. + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of layers this layer is used to connect with to the wire. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -322,7 +322,7 @@ def Errors(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str])): A list of errors that have occurred + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str])): A list of errors that have occurred """ return self._get_attribute(self._SDM_ATT_MAP["Errors"]) @@ -386,7 +386,7 @@ def StackedLayers(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*]): List of secondary (many to one) child layer protocols + - list(str[None | /api/v1/sessions/1/ixnetwork/topology]): List of secondary (many to one) child layer protocols """ return self._get_attribute(self._SDM_ATT_MAP["StackedLayers"]) @@ -458,11 +458,11 @@ def update( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StaticInfoCount (number): Number of unicast VTEP Raises @@ -485,11 +485,11 @@ def add( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StaticInfoCount (number): Number of unicast VTEP Returns @@ -535,15 +535,15 @@ def find( Args ---- - - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of layers this layer is used to connect with to the wire. + - ConnectedVia (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of layers this layer is used to connect with to the wire. - Count (number): Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. - DescriptiveName (str): Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offer more context. - EnableStaticInfo (bool): If true, VXLAN will use unicast entries for VTEP information instead of multicast learning. - - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork//.../*],arg2:list[str]))): A list of errors that have occurred + - Errors (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/],arg2:list[str]))): A list of errors that have occurred - Multiplier (number): Number of layer instances per parent instance (multiplier) - Name (str): Name of NGPF element, guaranteed to be unique in Scenario - SessionStatus (list(str[down | notStarted | up])): Current state of protocol session: Not Started - session negotiation not started, the session is not active yet. Down - actively trying to bring up a protocol session, but negotiation is didn't successfully complete (yet). Up - session came up successfully. - - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology/.../*])): List of secondary (many to one) child layer protocols + - StackedLayers (list(str[None | /api/v1/sessions/1/ixnetwork/topology])): List of secondary (many to one) child layer protocols - StateCounts (dict(total:number,notStarted:number,down:number,up:number)): A list of values that indicates the total number of sessions, the number of sessions not started, the number of sessions down and the number of sessions that are up - StaticInfoCount (number): Number of unicast VTEP - Status (str(configured | error | mixed | notStarted | started | starting | stopping)): Running status of associated network element. Once in Started state, protocol sessions will begin to negotiate. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/egressonlytracking/egressonlytracking.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/egressonlytracking/egressonlytracking.py index e47adf0fc..7a964aabb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/egressonlytracking/egressonlytracking.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/egressonlytracking/egressonlytracking.py @@ -298,3 +298,56 @@ def read(self, href): - ServerError: The server has encountered an uncategorized error condition """ return self._read(href) + + def UpdateEgressSettings(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the updateEgressSettings operation on the server. + + Update Egress settings + + updateEgressSettings(Arg2=number, Arg3=number, Arg4=string, async_operation=bool) + --------------------------------------------------------------------------------- + - Arg2 (number): Integer indicating egress number - 0/1/2 + - Arg3 (number): Integer indicating offset + - Arg4 (str): String indicating mask + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self.href} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute( + "updateEgressSettings", payload=payload, response_object=None + ) + + def UpdateQBVSettings(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the updateQBVSettings operation on the server. + + Update QBV settings + + updateQBVSettings(Arg2=number, Arg3=bool, Arg4=string, Arg5=bool, async_operation=bool) + --------------------------------------------------------------------------------------- + - Arg2 (number): Integer indicating gate number - 0-7 (valid values) + - Arg3 (bool): Bool indicating enabled/disabled + - Arg4 (str): String indicating PGID + - Arg5 (bool): Bool indicating track default is enabled + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self.href} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute("updateQBVSettings", payload=payload, response_object=None) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/traffic.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/traffic.py index 286e98fbb..eb4cf5146 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/traffic.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/traffic.py @@ -1347,7 +1347,7 @@ def GetFrameCountForDuration(self, *args, **kwargs): getFrameCountForDuration(Arg2=list, async_operation=bool)list ------------------------------------------------------------- - - Arg2 (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/traffic/.../highLevelStream],arg2:number))): An array of structures. Each structure is one valid highLevelStream object reference and the duration to get the frame count for. + - Arg2 (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream],arg2:number))): An array of structures. Each structure is one valid highLevelStream object reference and the duration to get the frame count for. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns list(number): An array of frame counts. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ecpriOranMsgs_template.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ecpriOranMsgs_template.py new file mode 100644 index 000000000..7bc6a89e9 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ecpriOranMsgs_template.py @@ -0,0 +1,85 @@ +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + + +class EcpriOranMsgs(Base): + __slots__ = () + _SDM_NAME = "ecpriOranMsgs" + _SDM_ATT_MAP = { + "CommonheaderProtocolRevision": "ecpriOranMsgs.commonheader.protocolRevision-1", + "CommonheaderReserved": "ecpriOranMsgs.commonheader.reserved-2", + "CommonheaderConcatenation": "ecpriOranMsgs.commonheader.concatenation-3", + "CommonheaderMessageType": "ecpriOranMsgs.commonheader.messageType-4", + "CommonheaderPayloadSize": "ecpriOranMsgs.commonheader.payloadSize-5", + } + + def __init__(self, parent, list_op=False): + super(EcpriOranMsgs, self).__init__(parent, list_op) + + @property + def CommonheaderProtocolRevision(self): + """ + Display Name: Protocol Revision + Default Value: 1 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CommonheaderProtocolRevision"]) + ) + + @property + def CommonheaderReserved(self): + """ + Display Name: Reserved + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CommonheaderReserved"]) + ) + + @property + def CommonheaderConcatenation(self): + """ + Display Name: Concatenation + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CommonheaderConcatenation"]) + ) + + @property + def CommonheaderMessageType(self): + """ + Display Name: Message Type + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CommonheaderMessageType"]) + ) + + @property + def CommonheaderPayloadSize(self): + """ + Display Name: Payload Size (octets) + Default Value: 4 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CommonheaderPayloadSize"]) + ) + + def add(self): + return self._create(self._map_locals(self._SDM_ATT_MAP, locals())) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ipAuthenticationHeader_template.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ipAuthenticationHeader_template.py new file mode 100644 index 000000000..0b87a26dd --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ipAuthenticationHeader_template.py @@ -0,0 +1,96 @@ +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + + +class IpAuthenticationHeader(Base): + __slots__ = () + _SDM_NAME = "ipAuthenticationHeader" + _SDM_ATT_MAP = { + "HeaderNextHeader": "ipAuthenticationHeader.header.nextHeader-1", + "HeaderPayloadLength": "ipAuthenticationHeader.header.payloadLength-2", + "HeaderReserved": "ipAuthenticationHeader.header.reserved-3", + "HeaderSpi": "ipAuthenticationHeader.header.spi-4", + "HeaderSequenceNumberField": "ipAuthenticationHeader.header.sequenceNumberField-5", + "HeaderIcv": "ipAuthenticationHeader.header.icv-6", + } + + def __init__(self, parent, list_op=False): + super(IpAuthenticationHeader, self).__init__(parent, list_op) + + @property + def HeaderNextHeader(self): + """ + Display Name: Next Header + Default Value: 59 + Value Format: decimal + Available enum values: HOPOPT, 0, ICMP, 1, IGMP, 2, GGP, 3, IP, 4, ST, 5, TCP, 6, CBT, 7, EGP, 8, IGP, 9, BBN-RCC-MON, 10, NVP-II, 11, PUP, 12, ARGUS, 13, EMCON, 14, XNET, 15, CHAOS, 16, UDP, 17, MUX, 18, DCN-MEAS, 19, HMP, 20, PRM, 21, XNS-IDP, 22, TRUNK-1, 23, TRUNK-2, 24, LEAF-1, 25, LEAF-2, 26, RDP, 27, IRTP, 28, ISO-TP4, 29, NETBLT, 30, MFE-NSP, 31, MERIT-INP, 32, SEP, 33, 3PC, 34, IDPR, 35, XTP, 36, DDP, 37, IDPR-CMTP, 38, TP++, 39, IL, 40, IPv6, 41, SDRP, 42, IPv6-Route, 43, IPv6-Frag, 44, IDRP, 45, RSVP, 46, GRE, 47, MHRP, 48, BNA, 49, ESP, 50, AH, 51, I-NLSP, 52, SWIPE, 53, NARP, 54, MOBILE, 55, TLSP, 56, SKIP, 57, IPv6-ICMP, 58, IPv6-NoNxt, 59, IPv6-Opts, 60, Any host internal protocol, 61, CFTP, 62, Any local network, 63, SAT-EXPAK, 64, KRYPTOLAN, 65, RVD, 66, IPPC, 67, Any distributed file system, 68, SAT-MON, 69, VISA, 70, IPCV, 71, CPNX, 72, CPHB, 73, WSN, 74, PVP, 75, BR-SAT-MON, 76, SUN-ND, 77, WB-MON, 78, WB-EXPAK, 79, ISO-IP, 80, VMTP, 81, SECURE-VMTP, 82, VINES, 83, TTP, 84, NSFNET-IGP, 85, DGP, 86, TCF, 87, EIGRP, 88, OSPFIGP, 89, Sprite-RPC, 90, LARP, 91, MTP, 92, AX.25, 93, IPIP, 94, MICP, 95, SCC-SP, 96, ETHERIP, 97, ENCAP, 98, Any private encryption, 99, GMTP, 100, IFMP, 101, PNNI, 102, PIM, 103, ARIS, 104, SCPS, 105, QNX, 106, A/N, 107, IPComp, 108, SNP, 109, Compaq-Peer, 110, IPX-in-IP, 111, VRRP, 112, PGM, 113, Any 0-hop protocol, 114, L2TP, 115, DDX, 116, IATP, 117, STP, 118, SRP, 119, UTI, 120, SMP, 121, SM, 122, PTP, 123, ISIS over IPv4, 124, FIRE, 125, CRTP, 126, CRUDP, 127, SSCOPMCE, 128, IPLT, 129, SPS, 130, PIPE, 131, SCTP, 132, FC, 133, RSVP-E2E-IGNORE, 134, Mobility Header, 135, UDPLite, 136, MPLS-in-IP, 137, Unassigned, 138, Unassigned, 139, Unassigned, 140, Unassigned, 141, Unassigned, 142, Unassigned, 143, Unassigned, 144, Unassigned, 145, Unassigned, 146, Unassigned, 147, Unassigned, 148, Unassigned, 149, Unassigned, 150, Unassigned, 151, Unassigned, 152, Unassigned, 153, Unassigned, 154, Unassigned, 155, Unassigned, 156, Unassigned, 157, Unassigned, 158, Unassigned, 159, Unassigned, 160, Unassigned, 161, Unassigned, 162, Unassigned, 163, Unassigned, 164, Unassigned, 165, Unassigned, 166, Unassigned, 167, Unassigned, 168, Unassigned, 169, Unassigned, 170, Unassigned, 171, Unassigned, 172, Unassigned, 173, Unassigned, 174, Unassigned, 175, Unassigned, 176, Unassigned, 177, Unassigned, 178, Unassigned, 179, Unassigned, 180, Unassigned, 181, Unassigned, 182, Unassigned, 183, Unassigned, 184, Unassigned, 185, Unassigned, 186, Unassigned, 187, Unassigned, 188, Unassigned, 189, Unassigned, 190, Unassigned, 191, Unassigned, 192, Unassigned, 193, Unassigned, 194, Unassigned, 195, Unassigned, 196, Unassigned, 197, Unassigned, 198, Unassigned, 199, Unassigned, 200, Unassigned, 201, Unassigned, 202, Unassigned, 203, Unassigned, 204, Unassigned, 205, Unassigned, 206, Unassigned, 207, Unassigned, 208, Unassigned, 209, Unassigned, 210, Unassigned, 211, Unassigned, 212, Unassigned, 213, Unassigned, 214, Unassigned, 215, Unassigned, 216, Unassigned, 217, Unassigned, 218, Unassigned, 219, Unassigned, 220, Unassigned, 221, Unassigned, 222, Unassigned, 223, Unassigned, 224, Unassigned, 225, Unassigned, 226, Unassigned, 227, Unassigned, 228, Unassigned, 229, Unassigned, 230, Unassigned, 231, Unassigned, 232, Unassigned, 233, Unassigned, 234, Unassigned, 235, Unassigned, 236, Unassigned, 237, Unassigned, 238, Unassigned, 239, Unassigned, 240, Unassigned, 241, Unassigned, 242, Unassigned, 243, Unassigned, 244, Unassigned, 245, Unassigned, 246, Unassigned, 247, Unassigned, 248, Unassigned, 249, Unassigned, 250, Unassigned, 251, Unassigned, 252, Unassigned, 253, Unassigned, 254, Reserved, 255 + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["HeaderNextHeader"]) + ) + + @property + def HeaderPayloadLength(self): + """ + Display Name: Payload Length (4 Octet) + Default Value: 6 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["HeaderPayloadLength"]) + ) + + @property + def HeaderReserved(self): + """ + Display Name: Reserved + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["HeaderReserved"]) + ) + + @property + def HeaderSpi(self): + """ + Display Name: Security Parameter Index + Default Value: 1 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["HeaderSpi"])) + + @property + def HeaderSequenceNumberField(self): + """ + Display Name: Sequence Number Field + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["HeaderSequenceNumberField"]) + ) + + @property + def HeaderIcv(self): + """ + Display Name: Integrity Check Value (ICV) + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["HeaderIcv"])) + + def add(self): + return self._create(self._map_locals(self._SDM_ATT_MAP, locals())) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ipEncapsulatingSecurityPayload_template.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ipEncapsulatingSecurityPayload_template.py new file mode 100644 index 000000000..966423256 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ipEncapsulatingSecurityPayload_template.py @@ -0,0 +1,39 @@ +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + + +class IpEncapsulatingSecurityPayload(Base): + __slots__ = () + _SDM_NAME = "ipEncapsulatingSecurityPayload" + _SDM_ATT_MAP = { + "HeaderSpi": "ipEncapsulatingSecurityPayload.header.spi-1", + "HeaderSn": "ipEncapsulatingSecurityPayload.header.sn-2", + } + + def __init__(self, parent, list_op=False): + super(IpEncapsulatingSecurityPayload, self).__init__(parent, list_op) + + @property + def HeaderSpi(self): + """ + Display Name: Security Paramaters Index + Default Value: 0x1ff + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["HeaderSpi"])) + + @property + def HeaderSn(self): + """ + Display Name: Sequence Number + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["HeaderSn"])) + + def add(self): + return self._create(self._map_locals(self._SDM_ATT_MAP, locals())) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ipEspOverMACsec_template.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ipEspOverMACsec_template.py new file mode 100644 index 000000000..654b3216c --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/ipEspOverMACsec_template.py @@ -0,0 +1,144 @@ +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + + +class IpEspOverMACsec(Base): + __slots__ = () + _SDM_NAME = "ipEspOverMACsec" + _SDM_ATT_MAP = { + "HeaderSpi": "ipEspOverMACsec.header.spi-1", + "HeaderSn": "ipEspOverMACsec.header.sn-2", + "EncryptedDataLength": "ipEspOverMACsec.header.encryptedData.length-3", + "EncryptedDataData": "ipEspOverMACsec.header.encryptedData.data-4", + "PaddingLength": "ipEspOverMACsec.header.padding.length-5", + "PaddingData": "ipEspOverMACsec.header.padding.data-6", + "HeaderPadLength": "ipEspOverMACsec.header.padLength-7", + "HeaderNextHeader": "ipEspOverMACsec.header.nextHeader-8", + "HeaderEsn": "ipEspOverMACsec.header.esn-9", + "HeaderIcv": "ipEspOverMACsec.header.icv-10", + } + + def __init__(self, parent, list_op=False): + super(IpEspOverMACsec, self).__init__(parent, list_op) + + @property + def HeaderSpi(self): + """ + Display Name: Security Paramaters Index + Default Value: 0x1ff + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["HeaderSpi"])) + + @property + def HeaderSn(self): + """ + Display Name: Sequence Number + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["HeaderSn"])) + + @property + def EncryptedDataLength(self): + """ + Display Name: Length (Bytes) + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EncryptedDataLength"]) + ) + + @property + def EncryptedDataData(self): + """ + Display Name: Data + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["EncryptedDataData"]) + ) + + @property + def PaddingLength(self): + """ + Display Name: Length + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["PaddingLength"])) + + @property + def PaddingData(self): + """ + Display Name: Data + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["PaddingData"])) + + @property + def HeaderPadLength(self): + """ + Display Name: PadLength + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["HeaderPadLength"]) + ) + + @property + def HeaderNextHeader(self): + """ + Display Name: Next Header + Default Value: 59 + Value Format: decimal + Available enum values: HOPOPT, 0, ICMP, 1, IGMP, 2, GGP, 3, IP, 4, ST, 5, TCP, 6, CBT, 7, EGP, 8, IGP, 9, BBN-RCC-MON, 10, NVP-II, 11, PUP, 12, ARGUS, 13, EMCON, 14, XNET, 15, CHAOS, 16, UDP, 17, MUX, 18, DCN-MEAS, 19, HMP, 20, PRM, 21, XNS-IDP, 22, TRUNK-1, 23, TRUNK-2, 24, LEAF-1, 25, LEAF-2, 26, RDP, 27, IRTP, 28, ISO-TP4, 29, NETBLT, 30, MFE-NSP, 31, MERIT-INP, 32, SEP, 33, 3PC, 34, IDPR, 35, XTP, 36, DDP, 37, IDPR-CMTP, 38, TP++, 39, IL, 40, IPv6, 41, SDRP, 42, IPv6-Route, 43, IPv6-Frag, 44, IDRP, 45, RSVP, 46, GRE, 47, MHRP, 48, BNA, 49, ESP, 50, AH, 51, I-NLSP, 52, SWIPE, 53, NARP, 54, MOBILE, 55, TLSP, 56, SKIP, 57, IPv6-ICMP, 58, IPv6-NoNxt, 59, IPv6-Opts, 60, Any host internal protocol, 61, CFTP, 62, Any local network, 63, SAT-EXPAK, 64, KRYPTOLAN, 65, RVD, 66, IPPC, 67, Any distributed file system, 68, SAT-MON, 69, VISA, 70, IPCV, 71, CPNX, 72, CPHB, 73, WSN, 74, PVP, 75, BR-SAT-MON, 76, SUN-ND, 77, WB-MON, 78, WB-EXPAK, 79, ISO-IP, 80, VMTP, 81, SECURE-VMTP, 82, VINES, 83, TTP, 84, NSFNET-IGP, 85, DGP, 86, TCF, 87, EIGRP, 88, OSPFIGP, 89, Sprite-RPC, 90, LARP, 91, MTP, 92, AX.25, 93, IPIP, 94, MICP, 95, SCC-SP, 96, ETHERIP, 97, ENCAP, 98, Any private encryption, 99, GMTP, 100, IFMP, 101, PNNI, 102, PIM, 103, ARIS, 104, SCPS, 105, QNX, 106, A/N, 107, IPComp, 108, SNP, 109, Compaq-Peer, 110, IPX-in-IP, 111, VRRP, 112, PGM, 113, Any 0-hop protocol, 114, L2TP, 115, DDX, 116, IATP, 117, STP, 118, SRP, 119, UTI, 120, SMP, 121, SM, 122, PTP, 123, ISIS over IPv4, 124, FIRE, 125, CRTP, 126, CRUDP, 127, SSCOPMCE, 128, IPLT, 129, SPS, 130, PIPE, 131, SCTP, 132, FC, 133, RSVP-E2E-IGNORE, 134, Mobility Header, 135, UDPLite, 136, MPLS-in-IP, 137, Unassigned, 138, Unassigned, 139, Unassigned, 140, Unassigned, 141, Unassigned, 142, Unassigned, 143, Unassigned, 144, Unassigned, 145, Unassigned, 146, Unassigned, 147, Unassigned, 148, Unassigned, 149, Unassigned, 150, Unassigned, 151, Unassigned, 152, Unassigned, 153, Unassigned, 154, Unassigned, 155, Unassigned, 156, Unassigned, 157, Unassigned, 158, Unassigned, 159, Unassigned, 160, Unassigned, 161, Unassigned, 162, Unassigned, 163, Unassigned, 164, Unassigned, 165, Unassigned, 166, Unassigned, 167, Unassigned, 168, Unassigned, 169, Unassigned, 170, Unassigned, 171, Unassigned, 172, Unassigned, 173, Unassigned, 174, Unassigned, 175, Unassigned, 176, Unassigned, 177, Unassigned, 178, Unassigned, 179, Unassigned, 180, Unassigned, 181, Unassigned, 182, Unassigned, 183, Unassigned, 184, Unassigned, 185, Unassigned, 186, Unassigned, 187, Unassigned, 188, Unassigned, 189, Unassigned, 190, Unassigned, 191, Unassigned, 192, Unassigned, 193, Unassigned, 194, Unassigned, 195, Unassigned, 196, Unassigned, 197, Unassigned, 198, Unassigned, 199, Unassigned, 200, Unassigned, 201, Unassigned, 202, Unassigned, 203, Unassigned, 204, Unassigned, 205, Unassigned, 206, Unassigned, 207, Unassigned, 208, Unassigned, 209, Unassigned, 210, Unassigned, 211, Unassigned, 212, Unassigned, 213, Unassigned, 214, Unassigned, 215, Unassigned, 216, Unassigned, 217, Unassigned, 218, Unassigned, 219, Unassigned, 220, Unassigned, 221, Unassigned, 222, Unassigned, 223, Unassigned, 224, Unassigned, 225, Unassigned, 226, Unassigned, 227, Unassigned, 228, Unassigned, 229, Unassigned, 230, Unassigned, 231, Unassigned, 232, Unassigned, 233, Unassigned, 234, Unassigned, 235, Unassigned, 236, Unassigned, 237, Unassigned, 238, Unassigned, 239, Unassigned, 240, Unassigned, 241, Unassigned, 242, Unassigned, 243, Unassigned, 244, Unassigned, 245, Unassigned, 246, Unassigned, 247, Unassigned, 248, Unassigned, 249, Unassigned, 250, Unassigned, 251, Unassigned, 252, Unassigned, 253, Unassigned, 254, Reserved, 255 + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["HeaderNextHeader"]) + ) + + @property + def HeaderEsn(self): + """ + Display Name: Extended Sequence Number (ESN) + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["HeaderEsn"])) + + @property + def HeaderIcv(self): + """ + Display Name: Integrity Check Value (ICV) + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["HeaderIcv"])) + + def add(self): + return self._create(self._map_locals(self._SDM_ATT_MAP, locals())) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/oranCtlrMsgs_template.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/oranCtlrMsgs_template.py new file mode 100644 index 000000000..447bbf945 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/oranCtlrMsgs_template.py @@ -0,0 +1,787 @@ +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + + +class OranCtlrMsgs(Base): + __slots__ = () + _SDM_NAME = "oranCtlrMsgs" + _SDM_ATT_MAP = { + "RtcIdDuPortId": "oranCtlrMsgs..iqDataHeader.rtcId.duPortId-1", + "RtcIdBandSectorId": "oranCtlrMsgs..iqDataHeader.rtcId.bandSectorId-2", + "RtcIdCcId": "oranCtlrMsgs..iqDataHeader.rtcId.ccId-3", + "RtcIdRuPortId": "oranCtlrMsgs..iqDataHeader.rtcId.ruPortId-4", + "SequenceidSeqId": "oranCtlrMsgs..iqDataHeader.sequenceid.seqId-5", + "SequenceidEBit": "oranCtlrMsgs..iqDataHeader.sequenceid.eBit-6", + "SequenceidSubSeqId": "oranCtlrMsgs..iqDataHeader.sequenceid.subSeqId-7", + "RadioCommonHeaderDataDirection": "oranCtlrMsgs..radioCommonHeader.dataDirection-8", + "RadioCommonHeaderPayloadVersion": "oranCtlrMsgs..radioCommonHeader.payloadVersion-9", + "RadioCommonHeaderFilterIndex": "oranCtlrMsgs..radioCommonHeader.filterIndex-10", + "RadioCommonHeaderFrameId": "oranCtlrMsgs..radioCommonHeader.frameId-11", + "RadioCommonHeaderSubframeId": "oranCtlrMsgs..radioCommonHeader.subframeId-12", + "RadioCommonHeaderSlotId": "oranCtlrMsgs..radioCommonHeader.slotId-13", + "RadioCommonHeaderStartSymbolId": "oranCtlrMsgs..radioCommonHeader.startSymbolId-14", + "RadioCommonHeaderNumberofSections": "oranCtlrMsgs..radioCommonHeader.numberofSections-15", + "Section0SectionType": "oranCtlrMsgs..sections.section.section0.sectionType-16", + "SectionSectionId": "oranCtlrMsgs..sections.section.section0.section.sectionId-17", + "SectionRb": "oranCtlrMsgs..sections.section.section0.section.rb-18", + "SectionSymInc": "oranCtlrMsgs..sections.section.section0.section.symInc-19", + "SectionStartPrbc": "oranCtlrMsgs..sections.section.section0.section.startPrbc-20", + "SectionNumPrbc": "oranCtlrMsgs..sections.section.section0.section.numPrbc-21", + "SectionReMask": "oranCtlrMsgs..sections.section.section0.section.reMask-22", + "SectionNumSymbol": "oranCtlrMsgs..sections.section.section0.section.numSymbol-23", + "SectionReserved": "oranCtlrMsgs..sections.section.section0.section.reserved-24", + "Section1SectionType": "oranCtlrMsgs..sections.section.section1.sectionType-25", + "CompHdrIqBitWidth": "oranCtlrMsgs..sections.section.section1.section1Header.compHdr.iqBitWidth-26", + "CompHdrUdCompMethod": "oranCtlrMsgs..sections.section.section1.section1Header.compHdr.udCompMethod-27", + "Section1HeaderReserved": "oranCtlrMsgs..sections.section.section1.section1Header.reserved-28", + "Section1SectionSectionId": "oranCtlrMsgs..sections.section.section1.section.sectionId-29", + "Section1SectionRb": "oranCtlrMsgs..sections.section.section1.section.rb-30", + "Section1SectionSymInc": "oranCtlrMsgs..sections.section.section1.section.symInc-31", + "Section1SectionStartPrbc": "oranCtlrMsgs..sections.section.section1.section.startPrbc-32", + "Section1SectionNumPrbc": "oranCtlrMsgs..sections.section.section1.section.numPrbc-33", + "Section1SectionReMask": "oranCtlrMsgs..sections.section.section1.section.reMask-34", + "Section1SectionNumSymbol": "oranCtlrMsgs..sections.section.section1.section.numSymbol-35", + "SectionEf": "oranCtlrMsgs..sections.section.section1.section.ef-36", + "SectionBeamId": "oranCtlrMsgs..sections.section.section1.section.beamId-37", + "Section3SectionType": "oranCtlrMsgs..sections.section.section3.sectionType-38", + "Section3HeaderTimeOffset": "oranCtlrMsgs..sections.section.section3.section3Header.timeOffset-39", + "Section3HeaderFrameStructure": "oranCtlrMsgs..sections.section.section3.section3Header.frameStructure-40", + "Section3HeaderCpLength": "oranCtlrMsgs..sections.section.section3.section3Header.cpLength-41", + "Section3headerCompHdrIqBitWidth": "oranCtlrMsgs..sections.section.section3.section3Header.compHdr.iqBitWidth-42", + "Section3headerCompHdrUdCompMethod": "oranCtlrMsgs..sections.section.section3.section3Header.compHdr.udCompMethod-43", + "Section3SectionSectionId": "oranCtlrMsgs..sections.section.section3.section.sectionId-44", + "Section3SectionRb": "oranCtlrMsgs..sections.section.section3.section.rb-45", + "Section3SectionSymInc": "oranCtlrMsgs..sections.section.section3.section.symInc-46", + "Section3SectionStartPrbc": "oranCtlrMsgs..sections.section.section3.section.startPrbc-47", + "Section3SectionNumPrbc": "oranCtlrMsgs..sections.section.section3.section.numPrbc-48", + "Section3SectionReMask": "oranCtlrMsgs..sections.section.section3.section.reMask-49", + "Section3SectionNumSymbol": "oranCtlrMsgs..sections.section.section3.section.numSymbol-50", + "Section3SectionEf": "oranCtlrMsgs..sections.section.section3.section.ef-51", + "Section3SectionBeamId": "oranCtlrMsgs..sections.section.section3.section.beamId-52", + "SectionFrequencyOffset": "oranCtlrMsgs..sections.section.section3.section.frequencyOffset-53", + "Section3SectionReserved": "oranCtlrMsgs..sections.section.section3.section.reserved-54", + "ExtensionLength": "oranCtlrMsgs..sections.section.section3.section.extensions.extension.length-55", + "ExtensionData": "oranCtlrMsgs..sections.section.section3.section.extensions.extension.data-56", + } + + def __init__(self, parent, list_op=False): + super(OranCtlrMsgs, self).__init__(parent, list_op) + + @property + def RtcIdDuPortId(self): + """ + Display Name: DU Port ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RtcIdDuPortId"])) + + @property + def RtcIdBandSectorId(self): + """ + Display Name: Band Sector ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RtcIdBandSectorId"]) + ) + + @property + def RtcIdCcId(self): + """ + Display Name: CC ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RtcIdCcId"])) + + @property + def RtcIdRuPortId(self): + """ + Display Name: RU Port ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["RtcIdRuPortId"])) + + @property + def SequenceidSeqId(self): + """ + Display Name: Seq ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SequenceidSeqId"]) + ) + + @property + def SequenceidEBit(self): + """ + Display Name: E bit(last fragement) + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SequenceidEBit"]) + ) + + @property + def SequenceidSubSeqId(self): + """ + Display Name: Subsequence ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SequenceidSubSeqId"]) + ) + + @property + def RadioCommonHeaderDataDirection(self): + """ + Display Name: Data Direction + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderDataDirection"]), + ) + + @property + def RadioCommonHeaderPayloadVersion(self): + """ + Display Name: Payload Version + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderPayloadVersion"]), + ) + + @property + def RadioCommonHeaderFilterIndex(self): + """ + Display Name: Filter Index + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderFilterIndex"]) + ) + + @property + def RadioCommonHeaderFrameId(self): + """ + Display Name: Frame Id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderFrameId"]) + ) + + @property + def RadioCommonHeaderSubframeId(self): + """ + Display Name: Subframe Id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderSubframeId"]) + ) + + @property + def RadioCommonHeaderSlotId(self): + """ + Display Name: Slot Id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderSlotId"]) + ) + + @property + def RadioCommonHeaderStartSymbolId(self): + """ + Display Name: Start SymbolId + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderStartSymbolId"]), + ) + + @property + def RadioCommonHeaderNumberofSections(self): + """ + Display Name: Number of Sections + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderNumberofSections"]), + ) + + @property + def Section0SectionType(self): + """ + Display Name: Section Type + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section0SectionType"]) + ) + + @property + def SectionSectionId(self): + """ + Display Name: Section Id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SectionSectionId"]) + ) + + @property + def SectionRb(self): + """ + Display Name: rb + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["SectionRb"])) + + @property + def SectionSymInc(self): + """ + Display Name: symInc + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["SectionSymInc"])) + + @property + def SectionStartPrbc(self): + """ + Display Name: Start Prbc + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SectionStartPrbc"]) + ) + + @property + def SectionNumPrbc(self): + """ + Display Name: Num Prbc + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SectionNumPrbc"]) + ) + + @property + def SectionReMask(self): + """ + Display Name: ReMask + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["SectionReMask"])) + + @property + def SectionNumSymbol(self): + """ + Display Name: Num Symbol + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SectionNumSymbol"]) + ) + + @property + def SectionReserved(self): + """ + Display Name: Reserved + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SectionReserved"]) + ) + + @property + def Section1SectionType(self): + """ + Display Name: Section Type + Default Value: 1 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section1SectionType"]) + ) + + @property + def CompHdrIqBitWidth(self): + """ + Display Name: Bit width of IQ Data + Default Value: 15 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CompHdrIqBitWidth"]) + ) + + @property + def CompHdrUdCompMethod(self): + """ + Display Name: Compression Method + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CompHdrUdCompMethod"]) + ) + + @property + def Section1HeaderReserved(self): + """ + Display Name: Reserved + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section1HeaderReserved"]) + ) + + @property + def Section1SectionSectionId(self): + """ + Display Name: Section Id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section1SectionSectionId"]) + ) + + @property + def Section1SectionRb(self): + """ + Display Name: rb + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section1SectionRb"]) + ) + + @property + def Section1SectionSymInc(self): + """ + Display Name: symInc + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section1SectionSymInc"]) + ) + + @property + def Section1SectionStartPrbc(self): + """ + Display Name: Start Prbc + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section1SectionStartPrbc"]) + ) + + @property + def Section1SectionNumPrbc(self): + """ + Display Name: Num Prbc + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section1SectionNumPrbc"]) + ) + + @property + def Section1SectionReMask(self): + """ + Display Name: ReMask + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section1SectionReMask"]) + ) + + @property + def Section1SectionNumSymbol(self): + """ + Display Name: Num Symbol + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section1SectionNumSymbol"]) + ) + + @property + def SectionEf(self): + """ + Display Name: ef + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["SectionEf"])) + + @property + def SectionBeamId(self): + """ + Display Name: Beam id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["SectionBeamId"])) + + @property + def Section3SectionType(self): + """ + Display Name: Section Type + Default Value: 3 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionType"]) + ) + + @property + def Section3HeaderTimeOffset(self): + """ + Display Name: Time Offset + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3HeaderTimeOffset"]) + ) + + @property + def Section3HeaderFrameStructure(self): + """ + Display Name: Frame Structure + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3HeaderFrameStructure"]) + ) + + @property + def Section3HeaderCpLength(self): + """ + Display Name: cpLength + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3HeaderCpLength"]) + ) + + @property + def Section3headerCompHdrIqBitWidth(self): + """ + Display Name: Bit width of IQ Data + Default Value: 15 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["Section3headerCompHdrIqBitWidth"]), + ) + + @property + def Section3headerCompHdrUdCompMethod(self): + """ + Display Name: Compression Method + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["Section3headerCompHdrUdCompMethod"]), + ) + + @property + def Section3SectionSectionId(self): + """ + Display Name: Section Id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionSectionId"]) + ) + + @property + def Section3SectionRb(self): + """ + Display Name: rb + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionRb"]) + ) + + @property + def Section3SectionSymInc(self): + """ + Display Name: symInc + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionSymInc"]) + ) + + @property + def Section3SectionStartPrbc(self): + """ + Display Name: Start Prbc + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionStartPrbc"]) + ) + + @property + def Section3SectionNumPrbc(self): + """ + Display Name: Num Prbc + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionNumPrbc"]) + ) + + @property + def Section3SectionReMask(self): + """ + Display Name: ReMask + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionReMask"]) + ) + + @property + def Section3SectionNumSymbol(self): + """ + Display Name: Num Symbol + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionNumSymbol"]) + ) + + @property + def Section3SectionEf(self): + """ + Display Name: ef + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionEf"]) + ) + + @property + def Section3SectionBeamId(self): + """ + Display Name: Beam id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionBeamId"]) + ) + + @property + def SectionFrequencyOffset(self): + """ + Display Name: Frequency Offset + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SectionFrequencyOffset"]) + ) + + @property + def Section3SectionReserved(self): + """ + Display Name: Reserved + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["Section3SectionReserved"]) + ) + + @property + def ExtensionLength(self): + """ + Display Name: Length + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["ExtensionLength"]) + ) + + @property + def ExtensionData(self): + """ + Display Name: Data + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["ExtensionData"])) + + def add(self): + return self._create(self._map_locals(self._SDM_ATT_MAP, locals())) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/oranDataMsgs_template.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/oranDataMsgs_template.py new file mode 100644 index 000000000..2a2301237 --- /dev/null +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/oranDataMsgs_template.py @@ -0,0 +1,356 @@ +from ixnetwork_restpy.base import Base +from ixnetwork_restpy.files import Files + + +class OranDataMsgs(Base): + __slots__ = () + _SDM_NAME = "oranDataMsgs" + _SDM_ATT_MAP = { + "PcidDuPortId": "oranDataMsgs..iqDataHeader.pcid.duPortId-1", + "PcidBandSectorId": "oranDataMsgs..iqDataHeader.pcid.bandSectorId-2", + "PcidCcId": "oranDataMsgs..iqDataHeader.pcid.ccId-3", + "PcidRuPortId": "oranDataMsgs..iqDataHeader.pcid.ruPortId-4", + "SequenceidSeqId": "oranDataMsgs..iqDataHeader.sequenceid.seqId-5", + "SequenceidEBit": "oranDataMsgs..iqDataHeader.sequenceid.eBit-6", + "SequenceidSubSeqId": "oranDataMsgs..iqDataHeader.sequenceid.subSeqId-7", + "RadioCommonHeaderDataDirection": "oranDataMsgs..radioCommonHeader.dataDirection-8", + "RadioCommonHeaderPayloadVersion": "oranDataMsgs..radioCommonHeader.payloadVersion-9", + "RadioCommonHeaderFilterIndex": "oranDataMsgs..radioCommonHeader.filterIndex-10", + "RadioCommonHeaderFrameId": "oranDataMsgs..radioCommonHeader.frameId-11", + "RadioCommonHeaderSubframeId": "oranDataMsgs..radioCommonHeader.subframeId-12", + "RadioCommonHeaderSlotId": "oranDataMsgs..radioCommonHeader.slotId-13", + "RadioCommonHeaderStartSymbolId": "oranDataMsgs..radioCommonHeader.startSymbolId-14", + "DataHeaderSectionId": "oranDataMsgs..section.dataHeader.sectionId-15", + "DataHeaderRb": "oranDataMsgs..section.dataHeader.rb-16", + "DataHeaderSymInc": "oranDataMsgs..section.dataHeader.symInc-17", + "DataHeaderStartPrbu": "oranDataMsgs..section.dataHeader.startPrbu-18", + "DataHeaderNumPrbu": "oranDataMsgs..section.dataHeader.numPrbu-19", + "CompHdrIqBitWidth": "oranDataMsgs..section.dataHeader.compHdr.iqBitWidth-20", + "CompHdrUdCompMethod": "oranDataMsgs..section.dataHeader.compHdr.udCompMethod-21", + "DataHeaderReserved": "oranDataMsgs..section.dataHeader.reserved-22", + "DataPayloadUdCompParam": "oranDataMsgs..section.dataPayload.udCompParam-23", + "IqDataLength": "oranDataMsgs..section.dataPayload.iqData.length-24", + "IqDataData": "oranDataMsgs..section.dataPayload.iqData.data-25", + } + + def __init__(self, parent, list_op=False): + super(OranDataMsgs, self).__init__(parent, list_op) + + @property + def PcidDuPortId(self): + """ + Display Name: DU Port ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["PcidDuPortId"])) + + @property + def PcidBandSectorId(self): + """ + Display Name: Band Sector ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["PcidBandSectorId"]) + ) + + @property + def PcidCcId(self): + """ + Display Name: CC ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["PcidCcId"])) + + @property + def PcidRuPortId(self): + """ + Display Name: RU Port ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["PcidRuPortId"])) + + @property + def SequenceidSeqId(self): + """ + Display Name: Seq ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SequenceidSeqId"]) + ) + + @property + def SequenceidEBit(self): + """ + Display Name: E bit(last fragement) + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SequenceidEBit"]) + ) + + @property + def SequenceidSubSeqId(self): + """ + Display Name: Subsequence ID + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["SequenceidSubSeqId"]) + ) + + @property + def RadioCommonHeaderDataDirection(self): + """ + Display Name: Data Direction + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderDataDirection"]), + ) + + @property + def RadioCommonHeaderPayloadVersion(self): + """ + Display Name: Payload Version + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderPayloadVersion"]), + ) + + @property + def RadioCommonHeaderFilterIndex(self): + """ + Display Name: Filter Index + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderFilterIndex"]) + ) + + @property + def RadioCommonHeaderFrameId(self): + """ + Display Name: Frame Id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderFrameId"]) + ) + + @property + def RadioCommonHeaderSubframeId(self): + """ + Display Name: Subframe Id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderSubframeId"]) + ) + + @property + def RadioCommonHeaderSlotId(self): + """ + Display Name: Slot Id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderSlotId"]) + ) + + @property + def RadioCommonHeaderStartSymbolId(self): + """ + Display Name: SymbolId + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, + self._get_attribute(self._SDM_ATT_MAP["RadioCommonHeaderStartSymbolId"]), + ) + + @property + def DataHeaderSectionId(self): + """ + Display Name: Section Id + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["DataHeaderSectionId"]) + ) + + @property + def DataHeaderRb(self): + """ + Display Name: rb + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["DataHeaderRb"])) + + @property + def DataHeaderSymInc(self): + """ + Display Name: symInc + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["DataHeaderSymInc"]) + ) + + @property + def DataHeaderStartPrbu(self): + """ + Display Name: Start Prbu + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["DataHeaderStartPrbu"]) + ) + + @property + def DataHeaderNumPrbu(self): + """ + Display Name: Num Prbu + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["DataHeaderNumPrbu"]) + ) + + @property + def CompHdrIqBitWidth(self): + """ + Display Name: Bit width of IQ Data + Default Value: 15 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CompHdrIqBitWidth"]) + ) + + @property + def CompHdrUdCompMethod(self): + """ + Display Name: Compression Method + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["CompHdrUdCompMethod"]) + ) + + @property + def DataHeaderReserved(self): + """ + Display Name: Reserved + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["DataHeaderReserved"]) + ) + + @property + def DataPayloadUdCompParam(self): + """ + Display Name: Compression Param + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue( + self, self._get_attribute(self._SDM_ATT_MAP["DataPayloadUdCompParam"]) + ) + + @property + def IqDataLength(self): + """ + Display Name: Length + Default Value: 0 + Value Format: decimal + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IqDataLength"])) + + @property + def IqDataData(self): + """ + Display Name: Data + Default Value: 0 + Value Format: hex + """ + from ixnetwork_restpy.multivalue import Multivalue + + return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP["IqDataData"])) + + def add(self): + return self._create(self._map_locals(self._SDM_ATT_MAP, locals())) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/stack.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/stack.py index af6ba071f..f3cec5670 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/stack.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stack/stack.py @@ -5722,6 +5722,90 @@ def ECpriUserData(self): return ECpriUserData(self) + @property + def EcpriOranMsgs(self): + """ + valid only with Batch Add + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.ecpriOranMsgs_template.EcpriOranMsgs): An instance of the EcpriOranMsgs traffic stack + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.ecpriOranMsgs_template import ( + EcpriOranMsgs, + ) + + return EcpriOranMsgs(self) + + @property + def OranCtlrMsgs(self): + """ + valid only with Batch Add + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.oranCtlrMsgs_template.OranCtlrMsgs): An instance of the OranCtlrMsgs traffic stack + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.oranCtlrMsgs_template import ( + OranCtlrMsgs, + ) + + return OranCtlrMsgs(self) + + @property + def OranDataMsgs(self): + """ + valid only with Batch Add + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.oranDataMsgs_template.OranDataMsgs): An instance of the OranDataMsgs traffic stack + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.oranDataMsgs_template import ( + OranDataMsgs, + ) + + return OranDataMsgs(self) + + @property + def IpEncapsulatingSecurityPayload(self): + """ + valid only with Batch Add + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.ipEncapsulatingSecurityPayload_template.IpEncapsulatingSecurityPayload): An instance of the IpEncapsulatingSecurityPayload traffic stack + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.ipEncapsulatingSecurityPayload_template import ( + IpEncapsulatingSecurityPayload, + ) + + return IpEncapsulatingSecurityPayload(self) + + @property + def IpAuthenticationHeader(self): + """ + valid only with Batch Add + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.ipAuthenticationHeader_template.IpAuthenticationHeader): An instance of the IpAuthenticationHeader traffic stack + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.ipAuthenticationHeader_template import ( + IpAuthenticationHeader, + ) + + return IpAuthenticationHeader(self) + + @property + def IpEspOverMACsec(self): + """ + valid only with Batch Add + Returns + ------- + - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.ipEspOverMACsec_template.IpEspOverMACsec): An instance of the IpEspOverMACsec traffic stack + """ + from ixnetwork_restpy.testplatform.sessions.ixnetwork.traffic.trafficitem.configelement.stack.ipEspOverMACsec_template import ( + IpEspOverMACsec, + ) + + return IpEspOverMACsec(self) + @property def Tcp(self): """ @@ -6599,7 +6683,7 @@ def Append(self, *args, **kwargs): DEPRECATED append(Arg2=href, async_operation=bool)string -------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference. + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: This exec returns an object reference to the newly appended stack item. @@ -6623,9 +6707,9 @@ def AppendProtocol(self, *args, **kwargs): appendProtocol(Arg2=href, async_operation=bool)href --------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference. + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stack): This exec returns an object reference to the newly appended stack item. + - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/configElement/stack): This exec returns an object reference to the newly appended stack item. Raises ------ @@ -6670,7 +6754,7 @@ def Insert(self, *args, **kwargs): DEPRECATED insert(Arg2=href, async_operation=bool)string -------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: This exec returns an object reference to the newly inserted stack item. @@ -6694,9 +6778,9 @@ def InsertProtocol(self, *args, **kwargs): insertProtocol(Arg2=href, async_operation=bool)href --------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stack): This exec returns an object reference to the newly inserted stack item. + - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/configElement/stack): This exec returns an object reference to the newly inserted stack item. Raises ------ diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stacklink/stacklink.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stacklink/stacklink.py index 688eea0f3..7cb96987a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stacklink/stacklink.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/configelement/stacklink/stacklink.py @@ -49,7 +49,7 @@ def LinkedTo(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stackLink): Indicates which stack item this is linked to. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/configElement/stackLink): Indicates which stack item this is linked to. """ return self._get_attribute(self._SDM_ATT_MAP["LinkedTo"]) @@ -64,7 +64,7 @@ def update(self, LinkedTo=None): Args ---- - - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stackLink)): Indicates which stack item this is linked to. + - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/configElement/stackLink)): Indicates which stack item this is linked to. Raises ------ @@ -78,7 +78,7 @@ def add(self, LinkedTo=None): Args ---- - - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stackLink)): Indicates which stack item this is linked to. + - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/configElement/stackLink)): Indicates which stack item this is linked to. Returns ------- @@ -100,7 +100,7 @@ def find(self, LinkedTo=None): Args ---- - - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stackLink)): Indicates which stack item this is linked to. + - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/configElement/stackLink)): Indicates which stack item this is linked to. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/egresstracking/fieldoffset/stack/stack.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/egresstracking/fieldoffset/stack/stack.py index 6fe54dd5e..9128c6e71 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/egresstracking/fieldoffset/stack/stack.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/egresstracking/fieldoffset/stack/stack.py @@ -158,7 +158,7 @@ def Append(self, *args, **kwargs): DEPRECATED append(Arg2=href, async_operation=bool)string -------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference. + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: This exec returns an object reference to the newly appended stack item. @@ -182,9 +182,9 @@ def AppendProtocol(self, *args, **kwargs): appendProtocol(Arg2=href, async_operation=bool)href --------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference. + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stack): This exec returns an object reference to the newly appended stack item. + - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/egressTracking/fieldOffset/stack): This exec returns an object reference to the newly appended stack item. Raises ------ @@ -229,7 +229,7 @@ def Insert(self, *args, **kwargs): DEPRECATED insert(Arg2=href, async_operation=bool)string -------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: This exec returns an object reference to the newly inserted stack item. @@ -253,9 +253,9 @@ def InsertProtocol(self, *args, **kwargs): insertProtocol(Arg2=href, async_operation=bool)href --------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stack): This exec returns an object reference to the newly inserted stack item. + - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/egressTracking/fieldOffset/stack): This exec returns an object reference to the newly inserted stack item. Raises ------ diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/endpointset/endpointset.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/endpointset/endpointset.py index 94076e973..cf6fe1a3d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/endpointset/endpointset.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/endpointset/endpointset.py @@ -97,7 +97,7 @@ def Destinations(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*]): Indicates the number of destination endpoints configured. + - list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport]): Indicates the number of destination endpoints configured. """ return self._get_attribute(self._SDM_ATT_MAP["Destinations"]) @@ -142,7 +142,7 @@ def FullyMeshedEndpoints(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*]): + - list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport]): """ return self._get_attribute(self._SDM_ATT_MAP["FullyMeshedEndpoints"]) @@ -179,7 +179,7 @@ def MulticastReceivers(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number)): A list of virtual multicast receivers. Each list item consists of a multicast receiver object reference, port index, host index and group or join/prune index depending on the type of object reference. + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number)): A list of virtual multicast receivers. Each list item consists of a multicast receiver object reference, port index, host index and group or join/prune index depending on the type of object reference. """ return self._get_attribute(self._SDM_ATT_MAP["MulticastReceivers"]) @@ -220,7 +220,7 @@ def ScalableDestinations(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number,arg5:number)): A list of scalable destination structures + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number,arg5:number)): A list of scalable destination structures """ return self._get_attribute(self._SDM_ATT_MAP["ScalableDestinations"]) @@ -233,7 +233,7 @@ def ScalableSources(self): """ Returns ------- - - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number,arg5:number)): A list of scalable source structures. + - list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number,arg5:number)): A list of scalable source structures. """ return self._get_attribute(self._SDM_ATT_MAP["ScalableSources"]) @@ -262,7 +262,7 @@ def Sources(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*]): Indicates the number of source endpoints configured. + - list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport]): Indicates the number of source endpoints configured. """ return self._get_attribute(self._SDM_ATT_MAP["Sources"]) @@ -287,7 +287,7 @@ def TrafficGroups(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/traffic/.../*]): Indicates the traffic groups selected in the source/destination endpoint set. + - list(str[None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup]): Indicates the traffic groups selected in the source/destination endpoint set. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroups"]) @@ -318,17 +318,17 @@ def update( ---- - AllowEmptyTopologySets (bool): Enable this to allow the setting of sources and destinations without throwing an error even if the combination produces an empty topology set. - DestinationFilter (str): The list of conditions used for filtering destinations endpoints. - - Destinations (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*])): Indicates the number of destination endpoints configured. - - FullyMeshedEndpoints (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*])): + - Destinations (list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport])): Indicates the number of destination endpoints configured. + - FullyMeshedEndpoints (list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport])): - MulticastDestinations (list(dict(arg1:bool,arg2:str[igmp | mld | none],arg3:str,arg4:str,arg5:number))): A compact representation of many virtual multicast destinations. Each list item consists of 5 values where the first two, a bool value and enum value, can be defaulted to false and none. The next two values are a starting address and step address which can be either an ipv4, ipv6 or streamId and the last value is a count of addresses. - - MulticastReceivers (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number))): A list of virtual multicast receivers. Each list item consists of a multicast receiver object reference, port index, host index and group or join/prune index depending on the type of object reference. + - MulticastReceivers (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number))): A list of virtual multicast receivers. Each list item consists of a multicast receiver object reference, port index, host index and group or join/prune index depending on the type of object reference. - Name (str): The name of the endpoint set. - NgpfFilters (list(dict(arg1:str,arg2:list[number]))): The list of next generation structures used to filter endpoints. The structure consists of a string tag and list of integer indexes. - - ScalableDestinations (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable destination structures - - ScalableSources (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable source structures. + - ScalableDestinations (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable destination structures + - ScalableSources (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable source structures. - SourceFilter (str): The list of conditions used for filtering source endpoints. - - Sources (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*])): Indicates the number of source endpoints configured. - - TrafficGroups (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/.../*])): Indicates the traffic groups selected in the source/destination endpoint set. + - Sources (list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport])): Indicates the number of source endpoints configured. + - TrafficGroups (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup])): Indicates the traffic groups selected in the source/destination endpoint set. Raises ------ @@ -358,17 +358,17 @@ def add( ---- - AllowEmptyTopologySets (bool): Enable this to allow the setting of sources and destinations without throwing an error even if the combination produces an empty topology set. - DestinationFilter (str): The list of conditions used for filtering destinations endpoints. - - Destinations (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*])): Indicates the number of destination endpoints configured. - - FullyMeshedEndpoints (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*])): + - Destinations (list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport])): Indicates the number of destination endpoints configured. + - FullyMeshedEndpoints (list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport])): - MulticastDestinations (list(dict(arg1:bool,arg2:str[igmp | mld | none],arg3:str,arg4:str,arg5:number))): A compact representation of many virtual multicast destinations. Each list item consists of 5 values where the first two, a bool value and enum value, can be defaulted to false and none. The next two values are a starting address and step address which can be either an ipv4, ipv6 or streamId and the last value is a count of addresses. - - MulticastReceivers (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number))): A list of virtual multicast receivers. Each list item consists of a multicast receiver object reference, port index, host index and group or join/prune index depending on the type of object reference. + - MulticastReceivers (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number))): A list of virtual multicast receivers. Each list item consists of a multicast receiver object reference, port index, host index and group or join/prune index depending on the type of object reference. - Name (str): The name of the endpoint set. - NgpfFilters (list(dict(arg1:str,arg2:list[number]))): The list of next generation structures used to filter endpoints. The structure consists of a string tag and list of integer indexes. - - ScalableDestinations (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable destination structures - - ScalableSources (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable source structures. + - ScalableDestinations (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable destination structures + - ScalableSources (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable source structures. - SourceFilter (str): The list of conditions used for filtering source endpoints. - - Sources (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*])): Indicates the number of source endpoints configured. - - TrafficGroups (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/.../*])): Indicates the traffic groups selected in the source/destination endpoint set. + - Sources (list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport])): Indicates the number of source endpoints configured. + - TrafficGroups (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup])): Indicates the traffic groups selected in the source/destination endpoint set. Returns ------- @@ -421,22 +421,22 @@ def find( ---- - AllowEmptyTopologySets (bool): Enable this to allow the setting of sources and destinations without throwing an error even if the combination produces an empty topology set. - DestinationFilter (str): The list of conditions used for filtering destinations endpoints. - - Destinations (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*])): Indicates the number of destination endpoints configured. + - Destinations (list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport])): Indicates the number of destination endpoints configured. - DestinationsDescription (str): Summary description of destination endpoints. - Error (bool): - ErrorString (str): - - FullyMeshedEndpoints (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*])): + - FullyMeshedEndpoints (list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport])): - FullyMeshedEndpointsDescription (str): Summary description of fully meshed endpoints. - MulticastDestinations (list(dict(arg1:bool,arg2:str[igmp | mld | none],arg3:str,arg4:str,arg5:number))): A compact representation of many virtual multicast destinations. Each list item consists of 5 values where the first two, a bool value and enum value, can be defaulted to false and none. The next two values are a starting address and step address which can be either an ipv4, ipv6 or streamId and the last value is a count of addresses. - - MulticastReceivers (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number))): A list of virtual multicast receivers. Each list item consists of a multicast receiver object reference, port index, host index and group or join/prune index depending on the type of object reference. + - MulticastReceivers (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number))): A list of virtual multicast receivers. Each list item consists of a multicast receiver object reference, port index, host index and group or join/prune index depending on the type of object reference. - Name (str): The name of the endpoint set. - NgpfFilters (list(dict(arg1:str,arg2:list[number]))): The list of next generation structures used to filter endpoints. The structure consists of a string tag and list of integer indexes. - - ScalableDestinations (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable destination structures - - ScalableSources (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology/.../*],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable source structures. + - ScalableDestinations (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable destination structures + - ScalableSources (list(dict(arg1:str[None | /api/v1/sessions/1/ixnetwork/topology],arg2:number,arg3:number,arg4:number,arg5:number))): A list of scalable source structures. - SourceFilter (str): The list of conditions used for filtering source endpoints. - - Sources (list(str[None | /api/v1/sessions/1/ixnetwork/lag/.../* | /api/v1/sessions/1/ixnetwork/topology/.../* | /api/v1/sessions/1/ixnetwork/traffic/.../* | /api/v1/sessions/1/ixnetwork/vport/.../*])): Indicates the number of source endpoints configured. + - Sources (list(str[None | /api/v1/sessions/1/ixnetwork/lag | /api/v1/sessions/1/ixnetwork/topology | /api/v1/sessions/1/ixnetwork/traffic/wizard | /api/v1/sessions/1/ixnetwork/vport])): Indicates the number of source endpoints configured. - SourcesDescription (str): Summary description of source endpoints. - - TrafficGroups (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/.../*])): Indicates the traffic groups selected in the source/destination endpoint set. + - TrafficGroups (list(str[None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup])): Indicates the traffic groups selected in the source/destination endpoint set. Returns ------- @@ -476,7 +476,7 @@ def FindMulticastReceiverGroupIndex(self, *args, **kwargs): findMulticastReceiverGroupIndex(Arg2=href, Arg3=string, Arg4=string, Arg5=number, async_operation=bool)number ------------------------------------------------------------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/topology/.../*)): A valid object reference + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/topology)): A valid object reference - Arg3 (str): The multicast group id start value - Arg4 (str): The multicast group id step value - Arg5 (number): The multicast group id count value @@ -485,7 +485,7 @@ def FindMulticastReceiverGroupIndex(self, *args, **kwargs): findMulticastReceiverGroupIndex(Arg2=href, Arg3=string, async_operation=bool)number ----------------------------------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/topology)): A valid object reference + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/topology/.../subscribedStreams)): A valid object reference - Arg3 (str): The multicast group id which must be an eight digit hex value separated by colons i.e., 00:00:01:01:00:01:01:00. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns number: The index of the multicast group id. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/highlevelstream.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/highlevelstream.py index 54325e989..1de372016 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/highlevelstream.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/highlevelstream.py @@ -721,7 +721,7 @@ def GetPacketViewInHex(self, *args, **kwargs): ----------------------------------------------------------- - Arg2 (number): Packet Index (0 based) - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str: Packet in Hex format + - Returns str: Encrypted Packet in Hex format Raises ------ diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/stack/stack.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/stack/stack.py index 19ce87d5d..4f6537e27 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/stack/stack.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/stack/stack.py @@ -158,7 +158,7 @@ def Append(self, *args, **kwargs): DEPRECATED append(Arg2=href, async_operation=bool)string -------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference. + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: This exec returns an object reference to the newly appended stack item. @@ -182,9 +182,9 @@ def AppendProtocol(self, *args, **kwargs): appendProtocol(Arg2=href, async_operation=bool)href --------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference. + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stack): This exec returns an object reference to the newly appended stack item. + - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream/stack): This exec returns an object reference to the newly appended stack item. Raises ------ @@ -229,7 +229,7 @@ def Insert(self, *args, **kwargs): DEPRECATED insert(Arg2=href, async_operation=bool)string -------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: This exec returns an object reference to the newly inserted stack item. @@ -253,9 +253,9 @@ def InsertProtocol(self, *args, **kwargs): insertProtocol(Arg2=href, async_operation=bool)href --------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stack): This exec returns an object reference to the newly inserted stack item. + - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream/stack): This exec returns an object reference to the newly inserted stack item. Raises ------ diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/stacklink/stacklink.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/stacklink/stacklink.py index 688eea0f3..b5fefd5d0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/stacklink/stacklink.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/highlevelstream/stacklink/stacklink.py @@ -49,7 +49,7 @@ def LinkedTo(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stackLink): Indicates which stack item this is linked to. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream/stackLink): Indicates which stack item this is linked to. """ return self._get_attribute(self._SDM_ATT_MAP["LinkedTo"]) @@ -64,7 +64,7 @@ def update(self, LinkedTo=None): Args ---- - - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stackLink)): Indicates which stack item this is linked to. + - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream/stackLink)): Indicates which stack item this is linked to. Raises ------ @@ -78,7 +78,7 @@ def add(self, LinkedTo=None): Args ---- - - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stackLink)): Indicates which stack item this is linked to. + - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream/stackLink)): Indicates which stack item this is linked to. Returns ------- @@ -100,7 +100,7 @@ def find(self, LinkedTo=None): Args ---- - - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stackLink)): Indicates which stack item this is linked to. + - LinkedTo (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/highLevelStream/stackLink)): Indicates which stack item this is linked to. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/tracking/egress/fieldoffset/stack/stack.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/tracking/egress/fieldoffset/stack/stack.py index af8f7a1ef..e50af3563 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/tracking/egress/fieldoffset/stack/stack.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/tracking/egress/fieldoffset/stack/stack.py @@ -158,7 +158,7 @@ def Append(self, *args, **kwargs): DEPRECATED append(Arg2=href, async_operation=bool)string -------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference. + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: This exec returns an object reference to the newly appended stack item. @@ -182,9 +182,9 @@ def AppendProtocol(self, *args, **kwargs): appendProtocol(Arg2=href, async_operation=bool)href --------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference. + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stack): This exec returns an object reference to the newly appended stack item. + - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/tracking/egress/fieldOffset/stack): This exec returns an object reference to the newly appended stack item. Raises ------ @@ -229,7 +229,7 @@ def Insert(self, *args, **kwargs): DEPRECATED insert(Arg2=href, async_operation=bool)string -------------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: This exec returns an object reference to the newly inserted stack item. @@ -253,9 +253,9 @@ def InsertProtocol(self, *args, **kwargs): insertProtocol(Arg2=href, async_operation=bool)href --------------------------------------------------- - - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../protocolTemplate)): A valid /traffic/protocolTemplate object reference + - Arg2 (str(None | /api/v1/sessions/1/ixnetwork/traffic/protocolTemplate)): A valid /traffic/protocolTemplate object reference - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/.../stack): This exec returns an object reference to the newly inserted stack item. + - Returns str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficItem/tracking/egress/fieldOffset/stack): This exec returns an object reference to the newly inserted stack item. Raises ------ diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/trafficitem.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/trafficitem.py index 70c3bd820..17d78946d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/trafficitem.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/traffic/trafficitem/trafficitem.py @@ -44,6 +44,7 @@ class TrafficItem(Base): "EgressEnabled": "egressEnabled", "EnableDynamicMplsLabelValues": "enableDynamicMplsLabelValues", "EnableMacsecEgressOnlyAutoConfig": "enableMacsecEgressOnlyAutoConfig", + "EnableMacsecSwChecksumCalc": "enableMacsecSwChecksumCalc", "Enabled": "enabled", "Errors": "errors", "EvpnNextHopOrdinalValue": "evpnNextHopOrdinalValue", @@ -100,6 +101,7 @@ class TrafficItem(Base): "ipv4ApplicationTraffic", "ipv6", "ipv6ApplicationTraffic", + "oran", "ppp", "raw", ], @@ -380,6 +382,21 @@ def EnableMacsecEgressOnlyAutoConfig(self, value): self._SDM_ATT_MAP["EnableMacsecEgressOnlyAutoConfig"], value ) + @property + def EnableMacsecSwChecksumCalc(self): + # type: () -> bool + """ + Returns + ------- + - bool: + """ + return self._get_attribute(self._SDM_ATT_MAP["EnableMacsecSwChecksumCalc"]) + + @EnableMacsecSwChecksumCalc.setter + def EnableMacsecSwChecksumCalc(self, value): + # type: (bool) -> None + self._set_attribute(self._SDM_ATT_MAP["EnableMacsecSwChecksumCalc"], value) + @property def Enabled(self): # type: () -> bool @@ -739,7 +756,7 @@ def TrafficType(self): """ Returns ------- - - str(atm | avb1722 | avbRaw | ethernetVlan | fc | fcoe | frameRelay | hdlc | ipv4 | ipv4ApplicationTraffic | ipv6 | ipv6ApplicationTraffic | ppp | raw): Helps to select the type of traffic endpoint to be configured. + - str(atm | avb1722 | avbRaw | ethernetVlan | fc | fcoe | frameRelay | hdlc | ipv4 | ipv4ApplicationTraffic | ipv6 | ipv6ApplicationTraffic | oran | ppp | raw): Helps to select the type of traffic endpoint to be configured. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficType"]) @@ -842,6 +859,7 @@ def update( EgressEnabled=None, EnableDynamicMplsLabelValues=None, EnableMacsecEgressOnlyAutoConfig=None, + EnableMacsecSwChecksumCalc=None, Enabled=None, EvpnNextHopOrdinalValue=None, FrerDuplicateElimination=None, @@ -881,6 +899,7 @@ def update( - EgressEnabled (bool): Enables the egress. - EnableDynamicMplsLabelValues (bool): Enables the dynamic MPLS label values. - EnableMacsecEgressOnlyAutoConfig (bool): + - EnableMacsecSwChecksumCalc (bool): - Enabled (bool): If true, this enables the selected traffic item. - EvpnNextHopOrdinalValue (number): - FrerDuplicateElimination (bool): @@ -902,7 +921,7 @@ def update( - SrcDestMesh (str(fullMesh | manyToMany | none | oneToOne)): Select the options to set the traffic mesh type between the Source Endpoint and Destination endpoint. - Suspend (bool): uspends all traffic on this stream.< - TrafficItemType (str(application | applicationLibrary | l2L3 | quick)): Helps to configure and edit a traffic item that is sent across Ixia ports. - - TrafficType (str(atm | avb1722 | avbRaw | ethernetVlan | fc | fcoe | frameRelay | hdlc | ipv4 | ipv4ApplicationTraffic | ipv6 | ipv6ApplicationTraffic | ppp | raw)): Helps to select the type of traffic endpoint to be configured. + - TrafficType (str(atm | avb1722 | avbRaw | ethernetVlan | fc | fcoe | frameRelay | hdlc | ipv4 | ipv4ApplicationTraffic | ipv6 | ipv6ApplicationTraffic | oran | ppp | raw)): Helps to select the type of traffic endpoint to be configured. - TransmitMode (str(interleaved | sequential)): The transmit mode for this traffic item - TransportLdpPreference (str(one | two)): This attribute is deprecated. Use labelPreferences attribute instead. - TransportRsvpTePreference (str(one | two)): This attribute is deprecated. Use labelPreferences attribute instead. @@ -924,6 +943,7 @@ def add( EgressEnabled=None, EnableDynamicMplsLabelValues=None, EnableMacsecEgressOnlyAutoConfig=None, + EnableMacsecSwChecksumCalc=None, Enabled=None, EvpnNextHopOrdinalValue=None, FrerDuplicateElimination=None, @@ -963,6 +983,7 @@ def add( - EgressEnabled (bool): Enables the egress. - EnableDynamicMplsLabelValues (bool): Enables the dynamic MPLS label values. - EnableMacsecEgressOnlyAutoConfig (bool): + - EnableMacsecSwChecksumCalc (bool): - Enabled (bool): If true, this enables the selected traffic item. - EvpnNextHopOrdinalValue (number): - FrerDuplicateElimination (bool): @@ -984,7 +1005,7 @@ def add( - SrcDestMesh (str(fullMesh | manyToMany | none | oneToOne)): Select the options to set the traffic mesh type between the Source Endpoint and Destination endpoint. - Suspend (bool): uspends all traffic on this stream.< - TrafficItemType (str(application | applicationLibrary | l2L3 | quick)): Helps to configure and edit a traffic item that is sent across Ixia ports. - - TrafficType (str(atm | avb1722 | avbRaw | ethernetVlan | fc | fcoe | frameRelay | hdlc | ipv4 | ipv4ApplicationTraffic | ipv6 | ipv6ApplicationTraffic | ppp | raw)): Helps to select the type of traffic endpoint to be configured. + - TrafficType (str(atm | avb1722 | avbRaw | ethernetVlan | fc | fcoe | frameRelay | hdlc | ipv4 | ipv4ApplicationTraffic | ipv6 | ipv6ApplicationTraffic | oran | ppp | raw)): Helps to select the type of traffic endpoint to be configured. - TransmitMode (str(interleaved | sequential)): The transmit mode for this traffic item - TransportLdpPreference (str(one | two)): This attribute is deprecated. Use labelPreferences attribute instead. - TransportRsvpTePreference (str(one | two)): This attribute is deprecated. Use labelPreferences attribute instead. @@ -1020,6 +1041,7 @@ def find( EgressEnabled=None, EnableDynamicMplsLabelValues=None, EnableMacsecEgressOnlyAutoConfig=None, + EnableMacsecSwChecksumCalc=None, Enabled=None, Errors=None, EvpnNextHopOrdinalValue=None, @@ -1068,6 +1090,7 @@ def find( - EgressEnabled (bool): Enables the egress. - EnableDynamicMplsLabelValues (bool): Enables the dynamic MPLS label values. - EnableMacsecEgressOnlyAutoConfig (bool): + - EnableMacsecSwChecksumCalc (bool): - Enabled (bool): If true, this enables the selected traffic item. - Errors (list(str)): Displays the errors. - EvpnNextHopOrdinalValue (number): @@ -1093,7 +1116,7 @@ def find( - State (str): (Read only) A read-only field which indicates the current state of the traffic item. - Suspend (bool): uspends all traffic on this stream.< - TrafficItemType (str(application | applicationLibrary | l2L3 | quick)): Helps to configure and edit a traffic item that is sent across Ixia ports. - - TrafficType (str(atm | avb1722 | avbRaw | ethernetVlan | fc | fcoe | frameRelay | hdlc | ipv4 | ipv4ApplicationTraffic | ipv6 | ipv6ApplicationTraffic | ppp | raw)): Helps to select the type of traffic endpoint to be configured. + - TrafficType (str(atm | avb1722 | avbRaw | ethernetVlan | fc | fcoe | frameRelay | hdlc | ipv4 | ipv4ApplicationTraffic | ipv6 | ipv6ApplicationTraffic | oran | ppp | raw)): Helps to select the type of traffic endpoint to be configured. - TransmitMode (str(interleaved | sequential)): The transmit mode for this traffic item - TransportLdpPreference (str(one | two)): This attribute is deprecated. Use labelPreferences attribute instead. - TransportRsvpTePreference (str(one | two)): This attribute is deprecated. Use labelPreferences attribute instead. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/capture/capture.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/capture/capture.py index 6dbd3603c..9bfcb07e0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/capture/capture.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/capture/capture.py @@ -860,7 +860,7 @@ def MergeCapture(self, *args, **kwargs): mergeCapture(Arg2=enum, Arg3=href, Arg4=enum, Arg5=string, async_operation=bool) -------------------------------------------------------------------------------- - Arg2 (str(control | data)): The type of the capture, either data or control. - - Arg3 (str(None | /api/v1/sessions/1/ixnetwork/vport/.../capture)): The capture object of a port. + - Arg3 (str(None | /api/v1/sessions/1/ixnetwork/vport/capture)): The capture object of a port. - Arg4 (str(control | data)): The type of the capture, either data or control. - Arg5 (str): The full path where the resulted merged capture will be saved, the result capture name needs to contain extension also. - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/dhcpv4discoveredinfo/dhcpv4discoveredinfo.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/dhcpv4discoveredinfo/dhcpv4discoveredinfo.py index 2b4464835..6aa3f0ce0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/dhcpv4discoveredinfo/dhcpv4discoveredinfo.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/dhcpv4discoveredinfo/dhcpv4discoveredinfo.py @@ -104,7 +104,7 @@ def ProtocolInterface(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): (Read only) An Ixia protocol interface that is negotiating with the DHCP Server. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): (Read only) An Ixia protocol interface that is negotiating with the DHCP Server. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -140,7 +140,7 @@ def find( - Ipv4Mask (number): (Read only) A 32-bit address mask used in IP to indicate the bits of an IP address that are being used for the subnet address. - IsDhcpV4LearnedInfoRefreshed (bool): (Read Only) When true, the DHCPv4 discovered information is refreshed automatically. - LeaseDuration (number): (Read Only) The user-specified value and the lease timer (from the DHCP Server) are compared. The lowest value is used as the release/renew timer. After this time period has elapsed, the address will be renewed. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): (Read only) An Ixia protocol interface that is negotiating with the DHCP Server. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): (Read only) An Ixia protocol interface that is negotiating with the DHCP Server. - Tlv (list(dict(arg1:number,arg2:str))): (Read only) Type Length Value for DHCPv4. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/dhcpv6discoveredinfo/dhcpv6discoveredinfo.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/dhcpv6discoveredinfo/dhcpv6discoveredinfo.py index 307f136b3..7b15fcfe5 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/dhcpv6discoveredinfo/dhcpv6discoveredinfo.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/dhcpv6discoveredinfo/dhcpv6discoveredinfo.py @@ -93,7 +93,7 @@ def ProtocolInterface(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): (Read Only) An Ixia protocol interface that is negotiating with the DHCPv6 Server. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): (Read Only) An Ixia protocol interface that is negotiating with the DHCPv6 Server. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -127,7 +127,7 @@ def find( - IaRenewTime (number): (Read Only) The renew timer value (in seconds) specified by the DHCPv6 Server. - Ipv6Address (list(str)): (Read Only) A learned/allocated IPv6 address for this interface. - IsDhcpV6LearnedInfoRefreshed (bool): (Read Only) When true, the DHCPv6 discovered information is refreshed automatically. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): (Read Only) An Ixia protocol interface that is negotiating with the DHCPv6 Server. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): (Read Only) An Ixia protocol interface that is negotiating with the DHCPv6 Server. - Tlvs (list(dict(arg1:number,arg2:str))): (Read Only) The identifier or 'tag' for this DHCPv6 option. The DHCPv6 option value field may contain data for configuration parameter information. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/gre/gre.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/gre/gre.py index 0a11b03d4..cb07c96c5 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/gre/gre.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/gre/gre.py @@ -99,7 +99,7 @@ def Source(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../ipv4 | /api/v1/sessions/1/ixnetwork/vport/.../ipv6): Part of the GRE Delivery Header: The IP address of the connected interface associated with the source of this GRE tunnel. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface/ipv4 | /api/v1/sessions/1/ixnetwork/vport/interface/ipv6): Part of the GRE Delivery Header: The IP address of the connected interface associated with the source of this GRE tunnel. """ return self._get_attribute(self._SDM_ATT_MAP["Source"]) @@ -171,7 +171,7 @@ def update( - Dest (str): Part of the GRE Delivery Header: The IP address of the Destination router at the remote end of the GRE tunnel. - InKey (number): This is the user-assigned GRE header authentication key value that the receiving router will check for to validate GRE packets being sent via the tunnel. All packets sent via a specific tunnel should contain the same key value (one key per GRE tunnel). - OutKey (number): This is the user-assigned GRE header authentication key value that will be included in the GRE packets being sent via the tunnel. All packets sent via a specific tunnel should contain the same key value (one key per GRE tunnel). In most cases, the In Key and Out Key will be the same. - - Source (str(None | /api/v1/sessions/1/ixnetwork/vport/.../ipv4 | /api/v1/sessions/1/ixnetwork/vport/.../ipv6)): Part of the GRE Delivery Header: The IP address of the connected interface associated with the source of this GRE tunnel. + - Source (str(None | /api/v1/sessions/1/ixnetwork/vport/interface/ipv4 | /api/v1/sessions/1/ixnetwork/vport/interface/ipv6)): Part of the GRE Delivery Header: The IP address of the connected interface associated with the source of this GRE tunnel. - UseChecksum (bool): Enables the use of the optional GRE checksum. - UseKey (bool): Enables the use of the optional GRE header key field. - UseSequence (bool): If more than one GRE tunnel will be used, this is the amount that will be added to create each additional authentication key value to be sent in the GRE packets (one key per GRE tunnel). @@ -204,7 +204,7 @@ def find( - Dest (str): Part of the GRE Delivery Header: The IP address of the Destination router at the remote end of the GRE tunnel. - InKey (number): This is the user-assigned GRE header authentication key value that the receiving router will check for to validate GRE packets being sent via the tunnel. All packets sent via a specific tunnel should contain the same key value (one key per GRE tunnel). - OutKey (number): This is the user-assigned GRE header authentication key value that will be included in the GRE packets being sent via the tunnel. All packets sent via a specific tunnel should contain the same key value (one key per GRE tunnel). In most cases, the In Key and Out Key will be the same. - - Source (str(None | /api/v1/sessions/1/ixnetwork/vport/.../ipv4 | /api/v1/sessions/1/ixnetwork/vport/.../ipv6)): Part of the GRE Delivery Header: The IP address of the connected interface associated with the source of this GRE tunnel. + - Source (str(None | /api/v1/sessions/1/ixnetwork/vport/interface/ipv4 | /api/v1/sessions/1/ixnetwork/vport/interface/ipv6)): Part of the GRE Delivery Header: The IP address of the connected interface associated with the source of this GRE tunnel. - UseChecksum (bool): Enables the use of the optional GRE checksum. - UseKey (bool): Enables the use of the optional GRE header key field. - UseSequence (bool): If more than one GRE tunnel will be used, this is the amount that will be added to create each additional authentication key value to be sent in the GRE packets (one key per GRE tunnel). diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/unconnected/unconnected.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/unconnected/unconnected.py index 2b15bdeef..61de88909 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/unconnected/unconnected.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/interface/unconnected/unconnected.py @@ -48,7 +48,7 @@ def ConnectedVia(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The name of a specified connected protocol interface on the link that is directly connected to the DUT. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The name of a specified connected protocol interface on the link that is directly connected to the DUT. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedVia"]) @@ -63,7 +63,7 @@ def update(self, ConnectedVia=None): Args ---- - - ConnectedVia (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The name of a specified connected protocol interface on the link that is directly connected to the DUT. + - ConnectedVia (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The name of a specified connected protocol interface on the link that is directly connected to the DUT. Raises ------ @@ -81,7 +81,7 @@ def find(self, ConnectedVia=None): Args ---- - - ConnectedVia (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The name of a specified connected protocol interface on the link that is directly connected to the DUT. + - ConnectedVia (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The name of a specified connected protocol interface on the link that is directly connected to the DUT. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/atm_9bbaac5d21c0632b71ee4c92d14864c3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/atm_9bbaac5d21c0632b71ee4c92d14864c3.py index 4dcdb6411..68540c9df 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/atm_9bbaac5d21c0632b71ee4c92d14864c3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/atm_9bbaac5d21c0632b71ee4c92d14864c3.py @@ -159,7 +159,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -221,7 +221,7 @@ def update( - IncrementVci (number): Creates multiple VCIs. Each additional VCI will be incremented by 1. - IncrementVpi (number): Creates multiple VPIs. Each additional VPI will be incremented by 1. - Name (str): The identifier associated with this ATM VPI/VCI entry. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - Vci (number): The value for the first ATM Virtual Circuit Identifier (VCI). The VCI value is used with a VPI value - a VPI/VCI pair - to identify a specific ATM link. - Vpi (number): The value for the first ATM Virtual Port Identifier (VPI). The VPI value is used with a VCI value - a VPI/VCI pair - to identify a specific ATM virtual link. @@ -254,7 +254,7 @@ def add( - IncrementVci (number): Creates multiple VCIs. Each additional VCI will be incremented by 1. - IncrementVpi (number): Creates multiple VPIs. Each additional VPI will be incremented by 1. - Name (str): The identifier associated with this ATM VPI/VCI entry. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - Vci (number): The value for the first ATM Virtual Circuit Identifier (VCI). The VCI value is used with a VPI value - a VPI/VCI pair - to identify a specific ATM link. - Vpi (number): The value for the first ATM Virtual Port Identifier (VPI). The VPI value is used with a VCI value - a VPI/VCI pair - to identify a specific ATM virtual link. @@ -305,7 +305,7 @@ def find( - IncrementVci (number): Creates multiple VCIs. Each additional VCI will be incremented by 1. - IncrementVpi (number): Creates multiple VPIs. Each additional VPI will be incremented by 1. - Name (str): The identifier associated with this ATM VPI/VCI entry. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - Vci (number): The value for the first ATM Virtual Circuit Identifier (VCI). The VCI value is used with a VPI value - a VPI/VCI pair - to identify a specific ATM link. - Vpi (number): The value for the first ATM Virtual Port Identifier (VPI). The VPI value is used with a VCI value - a VPI/VCI pair - to identify a specific ATM virtual link. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ethernettrafficendpoint_399c5a8996b8d783c5205ec4f1afc1a9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ethernettrafficendpoint_399c5a8996b8d783c5205ec4f1afc1a9.py index f34b38633..5b8d57f9d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ethernettrafficendpoint_399c5a8996b8d783c5205ec4f1afc1a9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ethernettrafficendpoint_399c5a8996b8d783c5205ec4f1afc1a9.py @@ -302,7 +302,7 @@ def ProtocolInterface(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): NOT DEFINED + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -414,7 +414,7 @@ def update( - PbbSourceMac (str): NOT DEFINED - PbbVlanId (str): NOT DEFINED - PbbVlanPcp (str): NOT DEFINED - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the Range. - VlanCount (number): Specify the VLAN count. The default value is 1. - VlanId (str): Specify the VLAN ID (Outer and Inner). @@ -469,7 +469,7 @@ def add( - PbbSourceMac (str): NOT DEFINED - PbbVlanId (str): NOT DEFINED - PbbVlanPcp (str): NOT DEFINED - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the Range. - VlanCount (number): Specify the VLAN count. The default value is 1. - VlanId (str): Specify the VLAN ID (Outer and Inner). @@ -542,7 +542,7 @@ def find( - PbbSourceMac (str): NOT DEFINED - PbbVlanId (str): NOT DEFINED - PbbVlanPcp (str): NOT DEFINED - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the Range. - VlanCount (number): Specify the VLAN count. The default value is 1. - VlanId (str): Specify the VLAN ID (Outer and Inner). diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/fr_ebc5d45018c74d53700c88afea530ca2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/fr_ebc5d45018c74d53700c88afea530ca2.py index 5fcf0a137..b51a5fa2f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/fr_ebc5d45018c74d53700c88afea530ca2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/fr_ebc5d45018c74d53700c88afea530ca2.py @@ -114,7 +114,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -140,7 +140,7 @@ def update( - Dlci (number): The Data Link Connection Identifier (DLCI) value. - EnableIncrement (bool): Creates a range of DLCIs for this entry. Each additional DLCI value will be incremented by 1. - Enabled (bool): Check this box to enable this Frame Relay (FR) DLCI entry. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Raises ------ @@ -165,7 +165,7 @@ def add( - Dlci (number): The Data Link Connection Identifier (DLCI) value. - EnableIncrement (bool): Creates a range of DLCIs for this entry. Each additional DLCI value will be incremented by 1. - Enabled (bool): Check this box to enable this Frame Relay (FR) DLCI entry. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- @@ -208,7 +208,7 @@ def find( - Dlci (number): The Data Link Connection Identifier (DLCI) value. - EnableIncrement (bool): Creates a range of DLCIs for this entry. Each additional DLCI value will be incremented by 1. - Enabled (bool): Check this box to enable this Frame Relay (FR) DLCI entry. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/host_0710de542a7934016dc82d18924d1082.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/host_0710de542a7934016dc82d18924d1082.py index b9a94f0b9..ac1bcf1ab 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/host_0710de542a7934016dc82d18924d1082.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/host_0710de542a7934016dc82d18924d1082.py @@ -116,7 +116,7 @@ def InterfaceId(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): This is a local ID and is unique per router. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): This is a local ID and is unique per router. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -161,7 +161,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range): The interfaces that are associated with the selected interface type. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range): The interfaces that are associated with the selected interface type. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -266,7 +266,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): This object contains the traffic group information configured in the trafficGroup object. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): This object contains the traffic group information configured in the trafficGroup object. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -330,17 +330,17 @@ def update( ---- - Enabled (bool): Enables the use of the host in the IGMP simulation. - GqResponseMode (bool): If enabled, responds to General Query messages (where the Group Address field and Number of Sources Field = 0). This query message is sent by a multicast router so it can learn about the complete multicast reception state for each of the neighboring interfaces. interfaces. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This is a local ID and is unique per router. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This is a local ID and is unique per router. - InterfaceIndex (number): The assigned protocol interface ID for this IGMP interface. - InterfaceType (str): The type of interface to be selected for this IGMP interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - ReportFreq (number): When the mode is report to all unsolicited, this is the frequency in seconds with unsolicited messages are generated. - RespToQueryImmediately (bool): If enabled, the state machine will ignore the value specified in the maximum response delay in the membership query message, assume that the delay is always 0 seconds, and immediately responds to the query by sending a report. - RobustnessVariable (number): NOT DEFINED - RouterAlert (bool): Sets the IP header Send Router Alert bit. - SqResponseMode (bool): If enabled, responds to Group-Specific Query messages. This query message is sent by a multicast router so it can learn about the multicast reception state, concerning one multicast address, for each of the neighboring interfaces; for example, when member leaves a group. - SuppressReports (bool): Suppress generation of V3 reports on receipt of v1/v2 reports having common groups. If enabled, it indicates that a host/group member will allow its IGMPv3 Membership Record to be suppressed by a membership report for Version 1 or 2. The suppression will only be for group reports received from another port. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): This object contains the traffic group information configured in the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): This object contains the traffic group information configured in the trafficGroup object. - UpResponseMode (bool): Report to all unsolicited-causes each simulated host to automatically send full memberships messages at regular intervals. - Version (str(igmpv1 | igmpv2 | igmpv3)): Sets the IGMP version number that is to be simulated on the host: 1, 2, or 3. @@ -375,17 +375,17 @@ def add( ---- - Enabled (bool): Enables the use of the host in the IGMP simulation. - GqResponseMode (bool): If enabled, responds to General Query messages (where the Group Address field and Number of Sources Field = 0). This query message is sent by a multicast router so it can learn about the complete multicast reception state for each of the neighboring interfaces. interfaces. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This is a local ID and is unique per router. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This is a local ID and is unique per router. - InterfaceIndex (number): The assigned protocol interface ID for this IGMP interface. - InterfaceType (str): The type of interface to be selected for this IGMP interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - ReportFreq (number): When the mode is report to all unsolicited, this is the frequency in seconds with unsolicited messages are generated. - RespToQueryImmediately (bool): If enabled, the state machine will ignore the value specified in the maximum response delay in the membership query message, assume that the delay is always 0 seconds, and immediately responds to the query by sending a report. - RobustnessVariable (number): NOT DEFINED - RouterAlert (bool): Sets the IP header Send Router Alert bit. - SqResponseMode (bool): If enabled, responds to Group-Specific Query messages. This query message is sent by a multicast router so it can learn about the multicast reception state, concerning one multicast address, for each of the neighboring interfaces; for example, when member leaves a group. - SuppressReports (bool): Suppress generation of V3 reports on receipt of v1/v2 reports having common groups. If enabled, it indicates that a host/group member will allow its IGMPv3 Membership Record to be suppressed by a membership report for Version 1 or 2. The suppression will only be for group reports received from another port. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): This object contains the traffic group information configured in the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): This object contains the traffic group information configured in the trafficGroup object. - UpResponseMode (bool): Report to all unsolicited-causes each simulated host to automatically send full memberships messages at regular intervals. - Version (str(igmpv1 | igmpv2 | igmpv3)): Sets the IGMP version number that is to be simulated on the host: 1, 2, or 3. @@ -438,17 +438,17 @@ def find( ---- - Enabled (bool): Enables the use of the host in the IGMP simulation. - GqResponseMode (bool): If enabled, responds to General Query messages (where the Group Address field and Number of Sources Field = 0). This query message is sent by a multicast router so it can learn about the complete multicast reception state for each of the neighboring interfaces. interfaces. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This is a local ID and is unique per router. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This is a local ID and is unique per router. - InterfaceIndex (number): The assigned protocol interface ID for this IGMP interface. - InterfaceType (str): The type of interface to be selected for this IGMP interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - ReportFreq (number): When the mode is report to all unsolicited, this is the frequency in seconds with unsolicited messages are generated. - RespToQueryImmediately (bool): If enabled, the state machine will ignore the value specified in the maximum response delay in the membership query message, assume that the delay is always 0 seconds, and immediately responds to the query by sending a report. - RobustnessVariable (number): NOT DEFINED - RouterAlert (bool): Sets the IP header Send Router Alert bit. - SqResponseMode (bool): If enabled, responds to Group-Specific Query messages. This query message is sent by a multicast router so it can learn about the multicast reception state, concerning one multicast address, for each of the neighboring interfaces; for example, when member leaves a group. - SuppressReports (bool): Suppress generation of V3 reports on receipt of v1/v2 reports having common groups. If enabled, it indicates that a host/group member will allow its IGMPv3 Membership Record to be suppressed by a membership report for Version 1 or 2. The suppression will only be for group reports received from another port. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): This object contains the traffic group information configured in the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): This object contains the traffic group information configured in the trafficGroup object. - UpResponseMode (bool): Report to all unsolicited-causes each simulated host to automatically send full memberships messages at regular intervals. - Version (str(igmpv1 | igmpv2 | igmpv3)): Sets the IGMP version number that is to be simulated on the host: 1, 2, or 3. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/host_fa1da007d58124057dd278c45c2d38ab.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/host_fa1da007d58124057dd278c45c2d38ab.py index 5d30e9b0d..4c3c9a355 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/host_fa1da007d58124057dd278c45c2d38ab.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/host_fa1da007d58124057dd278c45c2d38ab.py @@ -221,7 +221,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range): The interfaces that are associated with the selected interface type. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range): The interfaces that are associated with the selected interface type. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -236,7 +236,7 @@ def ProtocolInterface(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The name of the protocol interface being used for this emulated MLD Host. There may be multiple IPv6 protocol interfaces to select from.NOTE: Only enabled protocol interfaces configured with IPv6 addresses will be listed here. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The name of the protocol interface being used for this emulated MLD Host. There may be multiple IPv6 protocol interfaces to select from.NOTE: Only enabled protocol interfaces configured with IPv6 addresses will be listed here. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -281,7 +281,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -337,11 +337,11 @@ def update( - Enabled (bool): Enables the use of the host in the MLD simulation. - InterfaceIndex (number): The assigned protocol interface ID for this MLD interface. - InterfaceType (str): The type of interface to be selected for this MLD interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The name of the protocol interface being used for this emulated MLD Host. There may be multiple IPv6 protocol interfaces to select from.NOTE: Only enabled protocol interfaces configured with IPv6 addresses will be listed here. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The name of the protocol interface being used for this emulated MLD Host. There may be multiple IPv6 protocol interfaces to select from.NOTE: Only enabled protocol interfaces configured with IPv6 addresses will be listed here. - ReportFreq (number): Can be configured only when the Unsolicited Response Mode option is enabled. Otherwise, it is read-only. When Unsolicited Response Mode is enabled, specifies the frequency, in seconds, with which unsolicited messages are generated. - RobustnessVariable (number): NOT DEFINED - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - Version (str(version1 | version2)): Sets the MLD version number that is to be simulated on the host: 1 or 2. Raises @@ -382,11 +382,11 @@ def add( - Enabled (bool): Enables the use of the host in the MLD simulation. - InterfaceIndex (number): The assigned protocol interface ID for this MLD interface. - InterfaceType (str): The type of interface to be selected for this MLD interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The name of the protocol interface being used for this emulated MLD Host. There may be multiple IPv6 protocol interfaces to select from.NOTE: Only enabled protocol interfaces configured with IPv6 addresses will be listed here. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The name of the protocol interface being used for this emulated MLD Host. There may be multiple IPv6 protocol interfaces to select from.NOTE: Only enabled protocol interfaces configured with IPv6 addresses will be listed here. - ReportFreq (number): Can be configured only when the Unsolicited Response Mode option is enabled. Otherwise, it is read-only. When Unsolicited Response Mode is enabled, specifies the frequency, in seconds, with which unsolicited messages are generated. - RobustnessVariable (number): NOT DEFINED - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - Version (str(version1 | version2)): Sets the MLD version number that is to be simulated on the host: 1 or 2. Returns @@ -445,11 +445,11 @@ def find( - Enabled (bool): Enables the use of the host in the MLD simulation. - InterfaceIndex (number): The assigned protocol interface ID for this MLD interface. - InterfaceType (str): The type of interface to be selected for this MLD interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The name of the protocol interface being used for this emulated MLD Host. There may be multiple IPv6 protocol interfaces to select from.NOTE: Only enabled protocol interfaces configured with IPv6 addresses will be listed here. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The name of the protocol interface being used for this emulated MLD Host. There may be multiple IPv6 protocol interfaces to select from.NOTE: Only enabled protocol interfaces configured with IPv6 addresses will be listed here. - ReportFreq (number): Can be configured only when the Unsolicited Response Mode option is enabled. Otherwise, it is read-only. When Unsolicited Response Mode is enabled, specifies the frequency, in seconds, with which unsolicited messages are generated. - RobustnessVariable (number): NOT DEFINED - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - Version (str(version1 | version2)): Sets the MLD version number that is to be simulated on the host: 1 or 2. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_05b544e75dae141da1eeb5726765435f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_05b544e75dae141da1eeb5726765435f.py index 1c3002167..14e2f7485 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_05b544e75dae141da1eeb5726765435f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_05b544e75dae141da1eeb5726765435f.py @@ -248,7 +248,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range): The interfaces that are associated with the selected interface type. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range): The interfaces that are associated with the selected interface type. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -293,7 +293,7 @@ def ProtocolInterface(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): This is the name of this emulated OSPFv3 interface on this emulated router. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): This is the name of this emulated OSPFv3 interface on this emulated router. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -354,10 +354,10 @@ def update( - InterfaceIndex (number): The assigned protocol interface ID for this OSPFv3 interface. - InterfaceType (str(pointToPoint | broadcast)): Indicates the type of network for the interface. - InterfaceTypes (str): The type of interface to be selected for this OSPFv3 interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - LinkMetric (number): The metric for the link connecting the grid with the emulated OSPFv3 router. - Priority (number): Indicates the OSPF interface priority - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This is the name of this emulated OSPFv3 interface on this emulated router. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This is the name of this emulated OSPFv3 interface on this emulated router. - RouterOptions (number): Options related to the interface. Multiple options may be or'd together. (default = 0x13). Raises @@ -403,10 +403,10 @@ def add( - InterfaceIndex (number): The assigned protocol interface ID for this OSPFv3 interface. - InterfaceType (str(pointToPoint | broadcast)): Indicates the type of network for the interface. - InterfaceTypes (str): The type of interface to be selected for this OSPFv3 interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - LinkMetric (number): The metric for the link connecting the grid with the emulated OSPFv3 router. - Priority (number): Indicates the OSPF interface priority - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This is the name of this emulated OSPFv3 interface on this emulated router. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This is the name of this emulated OSPFv3 interface on this emulated router. - RouterOptions (number): Options related to the interface. Multiple options may be or'd together. (default = 0x13). Returns @@ -470,10 +470,10 @@ def find( - InterfaceIndex (number): The assigned protocol interface ID for this OSPFv3 interface. - InterfaceType (str(pointToPoint | broadcast)): Indicates the type of network for the interface. - InterfaceTypes (str): The type of interface to be selected for this OSPFv3 interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - LinkMetric (number): The metric for the link connecting the grid with the emulated OSPFv3 router. - Priority (number): Indicates the OSPF interface priority - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This is the name of this emulated OSPFv3 interface on this emulated router. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This is the name of this emulated OSPFv3 interface on this emulated router. - RouterOptions (number): Options related to the interface. Multiple options may be or'd together. (default = 0x13). Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_11193719861cedc70e27ad6eab53c08a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_11193719861cedc70e27ad6eab53c08a.py index 2f34bf654..892325e03 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_11193719861cedc70e27ad6eab53c08a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_11193719861cedc70e27ad6eab53c08a.py @@ -142,7 +142,7 @@ def InterfaceId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The unique identifier for this interface. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The unique identifier for this interface. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -202,7 +202,7 @@ def MstiOrVlanId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../all | /api/v1/sessions/1/ixnetwork/vport/.../msti | /api/v1/sessions/1/ixnetwork/vport/.../vlan): The identifier for this MSTI or the identifier for the first VLAN in the range. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/all | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/msti | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/vlan): The identifier for this MSTI or the identifier for the first VLAN in the range. """ return self._get_attribute(self._SDM_ATT_MAP["MstiOrVlanId"]) @@ -264,11 +264,11 @@ def update( - BdpuGap (number): The length of time between transmissions of BPDUs, in milliseconds. The valid range is 0 msec to 60,000 msec. (default = 0) - Cost (number): The administrative path cost assigned to this interface. The valid range is 0 to 4294967295. (default = 1) - Enabled (bool): Enables or disables the use of the interface. (default = disabled) - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The unique identifier for this interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The unique identifier for this interface. - JitterEnabled (bool): Staggered transmit (jitter) for Hello messages. If set, then the jitter feature is enabled. (default = enabled) - JitterPercentage (number): The maximum percentage of +/- variation (jitter) from the Hello message transmission interval. - LinkType (str(pointToPoint | shared)): The type of link attached to this interface. - - MstiOrVlanId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../all | /api/v1/sessions/1/ixnetwork/vport/.../msti | /api/v1/sessions/1/ixnetwork/vport/.../vlan)): The identifier for this MSTI or the identifier for the first VLAN in the range. + - MstiOrVlanId (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/all | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/msti | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/vlan)): The identifier for this MSTI or the identifier for the first VLAN in the range. - PortNo (number): The port number associated with this STP interface. If enableAutoPickPortNum is set, the port number will be automatically assigned (not editable by the user). If enableAutoPickPortNum is not set, the port number can be configured by the user. The valid range is 1 to 4,095. (default = 1) - Pvid (number): The Port VLAN ID. This value must be the same for all ports participating in the PVST+/RPVST+ protocol. The valid range is 1 to 4,094. (default = 1) @@ -301,11 +301,11 @@ def add( - BdpuGap (number): The length of time between transmissions of BPDUs, in milliseconds. The valid range is 0 msec to 60,000 msec. (default = 0) - Cost (number): The administrative path cost assigned to this interface. The valid range is 0 to 4294967295. (default = 1) - Enabled (bool): Enables or disables the use of the interface. (default = disabled) - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The unique identifier for this interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The unique identifier for this interface. - JitterEnabled (bool): Staggered transmit (jitter) for Hello messages. If set, then the jitter feature is enabled. (default = enabled) - JitterPercentage (number): The maximum percentage of +/- variation (jitter) from the Hello message transmission interval. - LinkType (str(pointToPoint | shared)): The type of link attached to this interface. - - MstiOrVlanId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../all | /api/v1/sessions/1/ixnetwork/vport/.../msti | /api/v1/sessions/1/ixnetwork/vport/.../vlan)): The identifier for this MSTI or the identifier for the first VLAN in the range. + - MstiOrVlanId (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/all | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/msti | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/vlan)): The identifier for this MSTI or the identifier for the first VLAN in the range. - PortNo (number): The port number associated with this STP interface. If enableAutoPickPortNum is set, the port number will be automatically assigned (not editable by the user). If enableAutoPickPortNum is not set, the port number can be configured by the user. The valid range is 1 to 4,095. (default = 1) - Pvid (number): The Port VLAN ID. This value must be the same for all ports participating in the PVST+/RPVST+ protocol. The valid range is 1 to 4,094. (default = 1) @@ -356,11 +356,11 @@ def find( - BdpuGap (number): The length of time between transmissions of BPDUs, in milliseconds. The valid range is 0 msec to 60,000 msec. (default = 0) - Cost (number): The administrative path cost assigned to this interface. The valid range is 0 to 4294967295. (default = 1) - Enabled (bool): Enables or disables the use of the interface. (default = disabled) - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The unique identifier for this interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The unique identifier for this interface. - JitterEnabled (bool): Staggered transmit (jitter) for Hello messages. If set, then the jitter feature is enabled. (default = enabled) - JitterPercentage (number): The maximum percentage of +/- variation (jitter) from the Hello message transmission interval. - LinkType (str(pointToPoint | shared)): The type of link attached to this interface. - - MstiOrVlanId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../all | /api/v1/sessions/1/ixnetwork/vport/.../msti | /api/v1/sessions/1/ixnetwork/vport/.../vlan)): The identifier for this MSTI or the identifier for the first VLAN in the range. + - MstiOrVlanId (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/all | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/msti | /api/v1/sessions/1/ixnetwork/vport/protocols/stp/bridge/vlan)): The identifier for this MSTI or the identifier for the first VLAN in the range. - PortNo (number): The port number associated with this STP interface. If enableAutoPickPortNum is set, the port number will be automatically assigned (not editable by the user). If enableAutoPickPortNum is not set, the port number can be configured by the user. The valid range is 1 to 4,095. (default = 1) - Pvid (number): The Port VLAN ID. This value must be the same for all ports participating in the PVST+/RPVST+ protocol. The valid range is 1 to 4,094. (default = 1) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_37df5f42aa73fde04b7d1b8fd94eb580.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_37df5f42aa73fde04b7d1b8fd94eb580.py index 957c4d80a..dafd78998 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_37df5f42aa73fde04b7d1b8fd94eb580.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_37df5f42aa73fde04b7d1b8fd94eb580.py @@ -66,7 +66,7 @@ def ProtocolInterface(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -82,7 +82,7 @@ def update(self, Enabled=None, ProtocolInterface=None): Args ---- - Enabled (bool): - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Raises ------ @@ -97,7 +97,7 @@ def add(self, Enabled=None, ProtocolInterface=None): Args ---- - Enabled (bool): - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Returns ------- @@ -130,7 +130,7 @@ def find(self, Enabled=None, ProtocolInterface=None): Args ---- - Enabled (bool): - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_54e892c04a4d57ef720d90ef82e8d6e6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_54e892c04a4d57ef720d90ef82e8d6e6.py index 19ac787cc..d2ce8739a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_54e892c04a4d57ef720d90ef82e8d6e6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_54e892c04a4d57ef720d90ef82e8d6e6.py @@ -283,7 +283,7 @@ def InterfaceId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The OSI interface ID for this interface. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The OSI interface ID for this interface. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -599,7 +599,7 @@ def update( - EnableConnectedToDut (bool): If enabled, this ISIS interface is directly connected to the DUT. - Enabled (bool): Enables the use of this interface for the simulated router. - ExtendedCircuitId (number): The integer value of the local circuit ID. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The OSI interface ID for this interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The OSI interface ID for this interface. - InterfaceIp (str): The IP address for this interface. - InterfaceIpMask (str): Available only when Interface Connected to DUT is disabled. The mask used with the IPv4 address for this virtual interface on the emulated ISIS router. This interface address is used to connect to virtual ISIS Network Ranges behind the Ixia-emulated ISIS router. - Ipv6MtMetric (number): This metric is same as the Interface Metric. If true, it allows you to enter data. @@ -676,7 +676,7 @@ def add( - EnableConnectedToDut (bool): If enabled, this ISIS interface is directly connected to the DUT. - Enabled (bool): Enables the use of this interface for the simulated router. - ExtendedCircuitId (number): The integer value of the local circuit ID. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The OSI interface ID for this interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The OSI interface ID for this interface. - InterfaceIp (str): The IP address for this interface. - InterfaceIpMask (str): Available only when Interface Connected to DUT is disabled. The mask used with the IPv4 address for this virtual interface on the emulated ISIS router. This interface address is used to connect to virtual ISIS Network Ranges behind the Ixia-emulated ISIS router. - Ipv6MtMetric (number): This metric is same as the Interface Metric. If true, it allows you to enter data. @@ -771,7 +771,7 @@ def find( - EnableConnectedToDut (bool): If enabled, this ISIS interface is directly connected to the DUT. - Enabled (bool): Enables the use of this interface for the simulated router. - ExtendedCircuitId (number): The integer value of the local circuit ID. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The OSI interface ID for this interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The OSI interface ID for this interface. - InterfaceIp (str): The IP address for this interface. - InterfaceIpMask (str): Available only when Interface Connected to DUT is disabled. The mask used with the IPv4 address for this virtual interface on the emulated ISIS router. This interface address is used to connect to virtual ISIS Network Ranges behind the Ixia-emulated ISIS router. - Ipv6MtMetric (number): This metric is same as the Interface Metric. If true, it allows you to enter data. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_6b96df240e5af86cd1a96c65039c8c84.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_6b96df240e5af86cd1a96c65039c8c84.py index 734d5c19b..41c9f2073 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_6b96df240e5af86cd1a96c65039c8c84.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_6b96df240e5af86cd1a96c65039c8c84.py @@ -381,7 +381,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): This signifies the interfaces that are associated with the selected interface type.Object references are: + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): This signifies the interfaces that are associated with the selected interface type.Object references are: """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -549,7 +549,7 @@ def update( - FlapTxIntervals (number): This signifies the number of seconds between route flaps for BFD. A value of zero means no flapping. - IncludePadTlv (bool): If true, includes Pad TLV in triggered ping. - IncludeVendorEnterpriseNumberTlv (bool): If true, includes the TLV number of the vendor, in triggered ping. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This signifies the interfaces that are associated with the selected interface type.Object references are: + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This signifies the interfaces that are associated with the selected interface type.Object references are: - MinRxInterval (number): This signifies the minimum interval, in milliseconds, between received BFD Control packets that this interface is capable of supporting. - Multiplier (number): This signifies the negotiated transmit interval, multiplied by this value, provides the detection time for the interface. - PadTlvFirstOctet (str(dropPadTlvFromReply | copyPadTlvToReply)): This signifies the selection of the first octate of the Pad TLV. Possible values include: @@ -618,7 +618,7 @@ def add( - FlapTxIntervals (number): This signifies the number of seconds between route flaps for BFD. A value of zero means no flapping. - IncludePadTlv (bool): If true, includes Pad TLV in triggered ping. - IncludeVendorEnterpriseNumberTlv (bool): If true, includes the TLV number of the vendor, in triggered ping. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This signifies the interfaces that are associated with the selected interface type.Object references are: + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This signifies the interfaces that are associated with the selected interface type.Object references are: - MinRxInterval (number): This signifies the minimum interval, in milliseconds, between received BFD Control packets that this interface is capable of supporting. - Multiplier (number): This signifies the negotiated transmit interval, multiplied by this value, provides the detection time for the interface. - PadTlvFirstOctet (str(dropPadTlvFromReply | copyPadTlvToReply)): This signifies the selection of the first octate of the Pad TLV. Possible values include: @@ -705,7 +705,7 @@ def find( - FlapTxIntervals (number): This signifies the number of seconds between route flaps for BFD. A value of zero means no flapping. - IncludePadTlv (bool): If true, includes Pad TLV in triggered ping. - IncludeVendorEnterpriseNumberTlv (bool): If true, includes the TLV number of the vendor, in triggered ping. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This signifies the interfaces that are associated with the selected interface type.Object references are: + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This signifies the interfaces that are associated with the selected interface type.Object references are: - MinRxInterval (number): This signifies the minimum interval, in milliseconds, between received BFD Control packets that this interface is capable of supporting. - Multiplier (number): This signifies the negotiated transmit interval, multiplied by this value, provides the detection time for the interface. - PadTlvFirstOctet (str(dropPadTlvFromReply | copyPadTlvToReply)): This signifies the selection of the first octate of the Pad TLV. Possible values include: diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_8401addef6ad210808a84a79291dafa1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_8401addef6ad210808a84a79291dafa1.py index 70a55d294..4523071e3 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_8401addef6ad210808a84a79291dafa1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_8401addef6ad210808a84a79291dafa1.py @@ -82,7 +82,7 @@ def ProtocolInterfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): It gives the protocol interfaces + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): It gives the protocol interfaces """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterfaces"]) @@ -104,7 +104,7 @@ def update( ---- - Enabled (bool): If True, it gives details about the interface - MapRegisterOrRequestTxInterface (bool): If true, it maps register or requests Tx interface - - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): It gives the protocol interfaces + - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): It gives the protocol interfaces Raises ------ @@ -125,7 +125,7 @@ def add( ---- - Enabled (bool): If True, it gives details about the interface - MapRegisterOrRequestTxInterface (bool): If true, it maps register or requests Tx interface - - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): It gives the protocol interfaces + - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): It gives the protocol interfaces Returns ------- @@ -164,7 +164,7 @@ def find( ---- - Enabled (bool): If True, it gives details about the interface - MapRegisterOrRequestTxInterface (bool): If true, it maps register or requests Tx interface - - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): It gives the protocol interfaces + - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): It gives the protocol interfaces Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_a520e7d2a02fa7a6c1ebd87fc660ec37.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_a520e7d2a02fa7a6c1ebd87fc660ec37.py index 07d8be37b..04d1a2868 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_a520e7d2a02fa7a6c1ebd87fc660ec37.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_a520e7d2a02fa7a6c1ebd87fc660ec37.py @@ -102,7 +102,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): This signifies the Interface that has been assigned for this range. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): This signifies the Interface that has been assigned for this range. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -119,7 +119,7 @@ def update(self, DutMacAddress=None, Enabled=None, Interfaces=None): ---- - DutMacAddress (str): This signifies the MAC address of the DUT. - Enabled (bool): This signifies the enablement of the use of this interface for the simulated router. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This signifies the Interface that has been assigned for this range. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This signifies the Interface that has been assigned for this range. Raises ------ @@ -135,7 +135,7 @@ def add(self, DutMacAddress=None, Enabled=None, Interfaces=None): ---- - DutMacAddress (str): This signifies the MAC address of the DUT. - Enabled (bool): This signifies the enablement of the use of this interface for the simulated router. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This signifies the Interface that has been assigned for this range. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This signifies the Interface that has been assigned for this range. Returns ------- @@ -169,7 +169,7 @@ def find(self, DutMacAddress=None, Enabled=None, Interfaces=None): ---- - DutMacAddress (str): This signifies the MAC address of the DUT. - Enabled (bool): This signifies the enablement of the use of this interface for the simulated router. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This signifies the Interface that has been assigned for this range. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This signifies the Interface that has been assigned for this range. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_ae15d2fc221167d74bd1e54f2452375b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_ae15d2fc221167d74bd1e54f2452375b.py index 6a920b83d..7860a58e1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_ae15d2fc221167d74bd1e54f2452375b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_ae15d2fc221167d74bd1e54f2452375b.py @@ -70,7 +70,7 @@ def InterfaceId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The assigned interface ID. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The assigned interface ID. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -118,7 +118,7 @@ def update( Args ---- - Enabled (bool): Enables this particular RIPng interface. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The assigned interface ID. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The assigned interface ID. - InterfaceMetric (number): The value of the metric assigned to this particular interface. This value is added to the RIPng routing metric before transmission on this interface. It allows metrics for routes with the same standard RIPng routing metric to be identified by the particular interface.The default value is'0. Care should be taken so the combined metric value for a route does not exceed 15. A combined metric of 16 or above indicates that the route is unreachable. - ResponseMode (str(splitHorizon | noSplitHorizon | poisonReverse)): The response mode of the RIPng interface. @@ -137,7 +137,7 @@ def add( Args ---- - Enabled (bool): Enables this particular RIPng interface. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The assigned interface ID. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The assigned interface ID. - InterfaceMetric (number): The value of the metric assigned to this particular interface. This value is added to the RIPng routing metric before transmission on this interface. It allows metrics for routes with the same standard RIPng routing metric to be identified by the particular interface.The default value is'0. Care should be taken so the combined metric value for a route does not exceed 15. A combined metric of 16 or above indicates that the route is unreachable. - ResponseMode (str(splitHorizon | noSplitHorizon | poisonReverse)): The response mode of the RIPng interface. @@ -174,7 +174,7 @@ def find( Args ---- - Enabled (bool): Enables this particular RIPng interface. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The assigned interface ID. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The assigned interface ID. - InterfaceMetric (number): The value of the metric assigned to this particular interface. This value is added to the RIPng routing metric before transmission on this interface. It allows metrics for routes with the same standard RIPng routing metric to be identified by the particular interface.The default value is'0. Care should be taken so the combined metric value for a route does not exceed 15. A combined metric of 16 or above indicates that the route is unreachable. - ResponseMode (str(splitHorizon | noSplitHorizon | poisonReverse)): The response mode of the RIPng interface. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_b3ccde9a43957c4e73c3cf0310a7cf18.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_b3ccde9a43957c4e73c3cf0310a7cf18.py index cdc30eb1e..ba69c763d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_b3ccde9a43957c4e73c3cf0310a7cf18.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_b3ccde9a43957c4e73c3cf0310a7cf18.py @@ -481,7 +481,7 @@ def InterfaceId(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The identifier for this PIM-SM Interface. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The identifier for this PIM-SM Interface. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -526,7 +526,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range): The interfaces that are associated with the selected interface type. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range): The interfaces that are associated with the selected interface type. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -686,7 +686,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -783,10 +783,10 @@ def update( - GenerationIdMode (str(incremental | random | constant)): The mode used for creating the 32-bit value for the Generation ID. This can either be incrementing, random or constant. (default = constant) - HelloHoldTime (number): The amount of time that neighbor routers should hold the interface as reachable. - HelloInterval (number): The interval between transmitted hello messages. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The identifier for this PIM-SM Interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The identifier for this PIM-SM Interface. - InterfaceIndex (number): The assigned protocol interface ID for this PIM-SM interface. - InterfaceType (str): The type of interface to be selected for this PIM-SM interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - LanPruneDelay (number): The value of the LAN Prune (propagation) Delay for this PIM-SM interface. The expected delay for messages propagated on the link. It indicates to an upstream router how long to wait for a Join override message before it prunes an interface.The default value is 500 msec. The valid range is 100 to 0x7FFF msec. (LAN Prune Delay is an Option included in Hello messages.) - LanPruneDelayTBit (bool): If enabled, the T flag bit in the LAN Prune Delay option of the Hello message is set (= 1). Setting this bit specifies that the sending PIM-SM router has the ability to disable Join message suppression. - LearnSelectedRpSet (bool): If enabled, this displays only the best RP per group (member of selected RP set). @@ -796,7 +796,7 @@ def update( - SendHelloLanPruneDelayOption (bool): If set, the LAN Prune propagation delay is enabled for this interface, as indicated in the pruneDelay option. The option is indicated in Hello messages from the interface. (default = true) - ShowSelectedRpSetOnly (bool): If enabled, this displays only the best RP per group (member of selected RP set). - SupportUnicastBootstrap (bool): If enabled, this supports the sending and processing of Unicast bootstrap messages. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. - TriggeredHelloDelay (number): The time (in seconds) after which the router senses a delay in sending or receiving PIM-SM hello message. - UpstreamNeighbor (str): The IP address of the upstream neighbor. @@ -864,10 +864,10 @@ def add( - GenerationIdMode (str(incremental | random | constant)): The mode used for creating the 32-bit value for the Generation ID. This can either be incrementing, random or constant. (default = constant) - HelloHoldTime (number): The amount of time that neighbor routers should hold the interface as reachable. - HelloInterval (number): The interval between transmitted hello messages. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The identifier for this PIM-SM Interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The identifier for this PIM-SM Interface. - InterfaceIndex (number): The assigned protocol interface ID for this PIM-SM interface. - InterfaceType (str): The type of interface to be selected for this PIM-SM interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - LanPruneDelay (number): The value of the LAN Prune (propagation) Delay for this PIM-SM interface. The expected delay for messages propagated on the link. It indicates to an upstream router how long to wait for a Join override message before it prunes an interface.The default value is 500 msec. The valid range is 100 to 0x7FFF msec. (LAN Prune Delay is an Option included in Hello messages.) - LanPruneDelayTBit (bool): If enabled, the T flag bit in the LAN Prune Delay option of the Hello message is set (= 1). Setting this bit specifies that the sending PIM-SM router has the ability to disable Join message suppression. - LearnSelectedRpSet (bool): If enabled, this displays only the best RP per group (member of selected RP set). @@ -877,7 +877,7 @@ def add( - SendHelloLanPruneDelayOption (bool): If set, the LAN Prune propagation delay is enabled for this interface, as indicated in the pruneDelay option. The option is indicated in Hello messages from the interface. (default = true) - ShowSelectedRpSetOnly (bool): If enabled, this displays only the best RP per group (member of selected RP set). - SupportUnicastBootstrap (bool): If enabled, this supports the sending and processing of Unicast bootstrap messages. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. - TriggeredHelloDelay (number): The time (in seconds) after which the router senses a delay in sending or receiving PIM-SM hello message. - UpstreamNeighbor (str): The IP address of the upstream neighbor. @@ -964,10 +964,10 @@ def find( - GenerationIdMode (str(incremental | random | constant)): The mode used for creating the 32-bit value for the Generation ID. This can either be incrementing, random or constant. (default = constant) - HelloHoldTime (number): The amount of time that neighbor routers should hold the interface as reachable. - HelloInterval (number): The interval between transmitted hello messages. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The identifier for this PIM-SM Interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The identifier for this PIM-SM Interface. - InterfaceIndex (number): The assigned protocol interface ID for this PIM-SM interface. - InterfaceType (str): The type of interface to be selected for this PIM-SM interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - IsRefreshRpSetComplete (bool): If enabled, shows the desired set of RPs. - LanPruneDelay (number): The value of the LAN Prune (propagation) Delay for this PIM-SM interface. The expected delay for messages propagated on the link. It indicates to an upstream router how long to wait for a Join override message before it prunes an interface.The default value is 500 msec. The valid range is 100 to 0x7FFF msec. (LAN Prune Delay is an Option included in Hello messages.) - LanPruneDelayTBit (bool): If enabled, the T flag bit in the LAN Prune Delay option of the Hello message is set (= 1). Setting this bit specifies that the sending PIM-SM router has the ability to disable Join message suppression. @@ -978,7 +978,7 @@ def find( - SendHelloLanPruneDelayOption (bool): If set, the LAN Prune propagation delay is enabled for this interface, as indicated in the pruneDelay option. The option is indicated in Hello messages from the interface. (default = true) - ShowSelectedRpSetOnly (bool): If enabled, this displays only the best RP per group (member of selected RP set). - SupportUnicastBootstrap (bool): If enabled, this supports the sending and processing of Unicast bootstrap messages. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. - TriggeredHelloDelay (number): The time (in seconds) after which the router senses a delay in sending or receiving PIM-SM hello message. - UpstreamNeighbor (str): The IP address of the upstream neighbor. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_c3c911144789a78964958c3c7bd601dc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_c3c911144789a78964958c3c7bd601dc.py index c2661fca5..37b409aa5 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_c3c911144789a78964958c3c7bd601dc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_c3c911144789a78964958c3c7bd601dc.py @@ -154,7 +154,7 @@ def InterfaceId(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The local ID associated with the interface, which is unique per router. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The local ID associated with the interface, which is unique per router. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -199,7 +199,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range): The interfaces that are associated with the selected interface type. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range): The interfaces that are associated with the selected interface type. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -312,10 +312,10 @@ def update( - Enabled (bool): Enables the EIGRP interface. (default = disabled) - HelloInterval (number): The time interval between Hello packets sent over the interface, in seconds. (default = 5 seconds) - HoldTime (number): The amount of time starting from the reception of a HELLO from a neighbor until the moment when the neighbor is to be dropped if no further HELLO is received from it, in seconds. (default = 15 seconds) - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The local ID associated with the interface, which is unique per router. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The local ID associated with the interface, which is unique per router. - InterfaceIndex (number): The assigned protocol interface ID for this EIGRP interface. - InterfaceType (str): The type of interface to be selected for this EIGRP interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - Load (number): The amount of load on the link. The valid range is 0 to 255. (default = 0) - MaxTlvPerPacket (number): The maximum number of TLVs that will be packed into a single Update packet, taking MTU into consideration. The valid range is 0-255. A value of 0 means that maximum possible packing will be used, which depends on the MTU of the link. (default = 30) - Mtu (number): The Maximum Transmission Unit (MTU) allowed on this link, in bytes. The valid range is 0 to 16777215. (default = 1,500 bytes) @@ -357,10 +357,10 @@ def add( - Enabled (bool): Enables the EIGRP interface. (default = disabled) - HelloInterval (number): The time interval between Hello packets sent over the interface, in seconds. (default = 5 seconds) - HoldTime (number): The amount of time starting from the reception of a HELLO from a neighbor until the moment when the neighbor is to be dropped if no further HELLO is received from it, in seconds. (default = 15 seconds) - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The local ID associated with the interface, which is unique per router. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The local ID associated with the interface, which is unique per router. - InterfaceIndex (number): The assigned protocol interface ID for this EIGRP interface. - InterfaceType (str): The type of interface to be selected for this EIGRP interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - Load (number): The amount of load on the link. The valid range is 0 to 255. (default = 0) - MaxTlvPerPacket (number): The maximum number of TLVs that will be packed into a single Update packet, taking MTU into consideration. The valid range is 0-255. A value of 0 means that maximum possible packing will be used, which depends on the MTU of the link. (default = 30) - Mtu (number): The Maximum Transmission Unit (MTU) allowed on this link, in bytes. The valid range is 0 to 16777215. (default = 1,500 bytes) @@ -420,10 +420,10 @@ def find( - Enabled (bool): Enables the EIGRP interface. (default = disabled) - HelloInterval (number): The time interval between Hello packets sent over the interface, in seconds. (default = 5 seconds) - HoldTime (number): The amount of time starting from the reception of a HELLO from a neighbor until the moment when the neighbor is to be dropped if no further HELLO is received from it, in seconds. (default = 15 seconds) - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The local ID associated with the interface, which is unique per router. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The local ID associated with the interface, which is unique per router. - InterfaceIndex (number): The assigned protocol interface ID for this EIGRP interface. - InterfaceType (str): The type of interface to be selected for this EIGRP interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - Load (number): The amount of load on the link. The valid range is 0 to 255. (default = 0) - MaxTlvPerPacket (number): The maximum number of TLVs that will be packed into a single Update packet, taking MTU into consideration. The valid range is 0-255. A value of 0 means that maximum possible packing will be used, which depends on the MTU of the link. (default = 30) - Mtu (number): The Maximum Transmission Unit (MTU) allowed on this link, in bytes. The valid range is 0 to 16777215. (default = 1,500 bytes) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_cc9587abf10a77d16f418600bffb7a30.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_cc9587abf10a77d16f418600bffb7a30.py index cebfc4abb..efd4a11d0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_cc9587abf10a77d16f418600bffb7a30.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_cc9587abf10a77d16f418600bffb7a30.py @@ -238,7 +238,7 @@ def InterfaceId(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): This is a local ID and is unique per router. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): This is a local ID and is unique per router. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -283,7 +283,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range): The interfaces that are associated with the selected interface type. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range): The interfaces that are associated with the selected interface type. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -404,10 +404,10 @@ def update( - EnableDemandMode (bool): Enables demand mode. 1 indicates demand mode enabled, and 0 indicates demand mode disabled. - Enabled (bool): Enables the use of the simulated interface. - FlapTxInterval (number): BFD sessions will flap every flapTxIntvs. (default = 0) - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This is a local ID and is unique per router. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This is a local ID and is unique per router. - InterfaceIndex (number): The assigned protocol interface ID for this BFD interface. - InterfaceType (str): The type of interface to be selected for this BFD interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - IpDifferentiatedServiceField (number): Sets the TOS byte for IP Differentiated Service Field - MinRxInterval (number): This option indicates the desired minimum interval between received BFD control packets. - Multiplier (number): Multiplier * intv defines the timeout period. (default = 3) @@ -457,10 +457,10 @@ def add( - EnableDemandMode (bool): Enables demand mode. 1 indicates demand mode enabled, and 0 indicates demand mode disabled. - Enabled (bool): Enables the use of the simulated interface. - FlapTxInterval (number): BFD sessions will flap every flapTxIntvs. (default = 0) - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This is a local ID and is unique per router. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This is a local ID and is unique per router. - InterfaceIndex (number): The assigned protocol interface ID for this BFD interface. - InterfaceType (str): The type of interface to be selected for this BFD interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - IpDifferentiatedServiceField (number): Sets the TOS byte for IP Differentiated Service Field - MinRxInterval (number): This option indicates the desired minimum interval between received BFD control packets. - Multiplier (number): Multiplier * intv defines the timeout period. (default = 3) @@ -528,10 +528,10 @@ def find( - EnableDemandMode (bool): Enables demand mode. 1 indicates demand mode enabled, and 0 indicates demand mode disabled. - Enabled (bool): Enables the use of the simulated interface. - FlapTxInterval (number): BFD sessions will flap every flapTxIntvs. (default = 0) - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): This is a local ID and is unique per router. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): This is a local ID and is unique per router. - InterfaceIndex (number): The assigned protocol interface ID for this BFD interface. - InterfaceType (str): The type of interface to be selected for this BFD interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - IpDifferentiatedServiceField (number): Sets the TOS byte for IP Differentiated Service Field - MinRxInterval (number): This option indicates the desired minimum interval between received BFD control packets. - Multiplier (number): Multiplier * intv defines the timeout period. (default = 3) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_dfb69d588f2b15dfce9b51a039348724.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_dfb69d588f2b15dfce9b51a039348724.py index bfafbf989..2ae7f4171 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_dfb69d588f2b15dfce9b51a039348724.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_dfb69d588f2b15dfce9b51a039348724.py @@ -408,7 +408,7 @@ def ProtocolInterfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): Indicates the name of the protocol interface being used for this OpenFlow configuration. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): Indicates the name of the protocol interface being used for this OpenFlow configuration. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterfaces"]) @@ -528,7 +528,7 @@ def update( - ModeOfConnection (str(passive | active | mixed)): Indicates the mode of connection used for the Interface. - NonHelloMessageStartupAction (str(auxAcceptConnection | auxSendError)): Defines what action to take in case an auxiliary connection receives a non-hello message at startup. - PeriodicLldpInterval (number): Indicates the Periodic LLDP Packet Out Interval. - - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): Indicates the name of the protocol interface being used for this OpenFlow configuration. + - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Indicates the name of the protocol interface being used for this OpenFlow configuration. - SendPortFeatureAtStartup (bool): If true , Port feature request is sent , once OF session is established. - TcpPort (number): Specify the TCP port for this interface. - TimeOutOption (str(multiplier | timeOutValue)): Indicates the types of timeout options supported. @@ -591,7 +591,7 @@ def add( - ModeOfConnection (str(passive | active | mixed)): Indicates the mode of connection used for the Interface. - NonHelloMessageStartupAction (str(auxAcceptConnection | auxSendError)): Defines what action to take in case an auxiliary connection receives a non-hello message at startup. - PeriodicLldpInterval (number): Indicates the Periodic LLDP Packet Out Interval. - - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): Indicates the name of the protocol interface being used for this OpenFlow configuration. + - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Indicates the name of the protocol interface being used for this OpenFlow configuration. - SendPortFeatureAtStartup (bool): If true , Port feature request is sent , once OF session is established. - TcpPort (number): Specify the TCP port for this interface. - TimeOutOption (str(multiplier | timeOutValue)): Indicates the types of timeout options supported. @@ -672,7 +672,7 @@ def find( - ModeOfConnection (str(passive | active | mixed)): Indicates the mode of connection used for the Interface. - NonHelloMessageStartupAction (str(auxAcceptConnection | auxSendError)): Defines what action to take in case an auxiliary connection receives a non-hello message at startup. - PeriodicLldpInterval (number): Indicates the Periodic LLDP Packet Out Interval. - - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): Indicates the name of the protocol interface being used for this OpenFlow configuration. + - ProtocolInterfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Indicates the name of the protocol interface being used for this OpenFlow configuration. - SendPortFeatureAtStartup (bool): If true , Port feature request is sent , once OF session is established. - TcpPort (number): Specify the TCP port for this interface. - TimeOutOption (str(multiplier | timeOutValue)): Indicates the types of timeout options supported. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_f2537c41770d7cd7efb0c68f74fd5c11.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_f2537c41770d7cd7efb0c68f74fd5c11.py index f1ccd0826..e16e16649 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_f2537c41770d7cd7efb0c68f74fd5c11.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_f2537c41770d7cd7efb0c68f74fd5c11.py @@ -454,7 +454,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range): The interfaces that are associated with the selected interface type. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range): The interfaces that are associated with the selected interface type. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -841,7 +841,7 @@ def ProtocolInterface(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The name of the defined interface entry from which IP address and mask are extracted for this interface. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The name of the defined interface entry from which IP address and mask are extracted for this interface. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -1065,7 +1065,7 @@ def update( - InterfaceIpAddress (str): The IP address for this OSPF interface. - InterfaceIpMaskAddress (str): The IP mask associated with the IP address for this interface. Only used if protocolInterfaceDescription is empty. (default = 255.255.255.0) - InterfaceType (str): The type of interface to be selected for this OSPF interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - LinkTypes (str(pointToPoint | transit | stub | virtual)): Indicates the type of network link for the interface. - Md5AuthenticationKey (str): If authenticationMethod is set to ospfInterfaceAuthenticationMD5, then this is MD5 key ID used for authentication. (default = 1) - Md5AuthenticationKeyId (number): A value to be used as a key ID associated with the MD5 key. @@ -1090,7 +1090,7 @@ def update( - NoOfRows (number): The number or rows in a grid. - Options (number): Options related to the interface. Multiple options may be or'd together. - Priority (number): The priority of the interface, for use in election of the designated or backup master. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The name of the defined interface entry from which IP address and mask are extracted for this interface. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The name of the defined interface entry from which IP address and mask are extracted for this interface. - ShowExternal (bool): Enables the use of External routes on this interface. - ShowNssa (bool): Enables the use of Not So Stubby Area routes on this interface. - TeAdminGroup (str): Assignment of traffic engineering administrative group numbers to the interface. @@ -1189,7 +1189,7 @@ def add( - InterfaceIpAddress (str): The IP address for this OSPF interface. - InterfaceIpMaskAddress (str): The IP mask associated with the IP address for this interface. Only used if protocolInterfaceDescription is empty. (default = 255.255.255.0) - InterfaceType (str): The type of interface to be selected for this OSPF interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - LinkTypes (str(pointToPoint | transit | stub | virtual)): Indicates the type of network link for the interface. - Md5AuthenticationKey (str): If authenticationMethod is set to ospfInterfaceAuthenticationMD5, then this is MD5 key ID used for authentication. (default = 1) - Md5AuthenticationKeyId (number): A value to be used as a key ID associated with the MD5 key. @@ -1214,7 +1214,7 @@ def add( - NoOfRows (number): The number or rows in a grid. - Options (number): Options related to the interface. Multiple options may be or'd together. - Priority (number): The priority of the interface, for use in election of the designated or backup master. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The name of the defined interface entry from which IP address and mask are extracted for this interface. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The name of the defined interface entry from which IP address and mask are extracted for this interface. - ShowExternal (bool): Enables the use of External routes on this interface. - ShowNssa (bool): Enables the use of Not So Stubby Area routes on this interface. - TeAdminGroup (str): Assignment of traffic engineering administrative group numbers to the interface. @@ -1332,7 +1332,7 @@ def find( - InterfaceIpAddress (str): The IP address for this OSPF interface. - InterfaceIpMaskAddress (str): The IP mask associated with the IP address for this interface. Only used if protocolInterfaceDescription is empty. (default = 255.255.255.0) - InterfaceType (str): The type of interface to be selected for this OSPF interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - IsLearnedInfoRefreshed (bool): If true, refreshes learned information automatically. - LinkTypes (str(pointToPoint | transit | stub | virtual)): Indicates the type of network link for the interface. - Md5AuthenticationKey (str): If authenticationMethod is set to ospfInterfaceAuthenticationMD5, then this is MD5 key ID used for authentication. (default = 1) @@ -1358,7 +1358,7 @@ def find( - NoOfRows (number): The number or rows in a grid. - Options (number): Options related to the interface. Multiple options may be or'd together. - Priority (number): The priority of the interface, for use in election of the designated or backup master. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The name of the defined interface entry from which IP address and mask are extracted for this interface. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The name of the defined interface entry from which IP address and mask are extracted for this interface. - ShowExternal (bool): Enables the use of External routes on this interface. - ShowNssa (bool): Enables the use of Not So Stubby Area routes on this interface. - TeAdminGroup (str): Assignment of traffic engineering administrative group numbers to the interface. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_f5817c97c964b787c8c564bdf17f05ce.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_f5817c97c964b787c8c564bdf17f05ce.py index 5ce7b58d2..cbc7a267b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_f5817c97c964b787c8c564bdf17f05ce.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_f5817c97c964b787c8c564bdf17f05ce.py @@ -66,7 +66,7 @@ def InterfaceId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The interface identifier for the interface. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The interface identifier for the interface. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -82,7 +82,7 @@ def update(self, Enabled=None, InterfaceId=None): Args ---- - Enabled (bool): If true, the interface is enabled. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The interface identifier for the interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The interface identifier for the interface. Raises ------ @@ -97,7 +97,7 @@ def add(self, Enabled=None, InterfaceId=None): Args ---- - Enabled (bool): If true, the interface is enabled. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The interface identifier for the interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The interface identifier for the interface. Returns ------- @@ -130,7 +130,7 @@ def find(self, Enabled=None, InterfaceId=None): Args ---- - Enabled (bool): If true, the interface is enabled. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The interface identifier for the interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The interface identifier for the interface. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_fb4befd0e6a80f240fc4262878630bef.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_fb4befd0e6a80f240fc4262878630bef.py index a762d187e..fab8a8291 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_fb4befd0e6a80f240fc4262878630bef.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_fb4befd0e6a80f240fc4262878630bef.py @@ -66,7 +66,7 @@ def InterfaceId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -82,7 +82,7 @@ def update(self, Enabled=None, InterfaceId=None): Args ---- - Enabled (bool): - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Raises ------ @@ -97,7 +97,7 @@ def add(self, Enabled=None, InterfaceId=None): Args ---- - Enabled (bool): - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Returns ------- @@ -130,7 +130,7 @@ def find(self, Enabled=None, InterfaceId=None): Args ---- - Enabled (bool): - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_fe0b08fd21beb5f4d59f82e4c9b072a9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_fe0b08fd21beb5f4d59f82e4c9b072a9.py index 86d96c878..e521bbc5c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_fe0b08fd21beb5f4d59f82e4c9b072a9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interface_fe0b08fd21beb5f4d59f82e4c9b072a9.py @@ -347,7 +347,7 @@ def ProtocolInterface(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The protocol interface associated with this LDP interface. There may be more than one protocol interface. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The protocol interface associated with this LDP interface. There may be more than one protocol interface. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -385,7 +385,7 @@ def update( - Enabled (bool): Enables the use of this interface for the simulated router. - LabelSpaceId (number): The LDP label space used by this interface. - Md5Key (str): Used with MD5 authentication. A user-defined string; maximum = 255 characters. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The protocol interface associated with this LDP interface. There may be more than one protocol interface. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The protocol interface associated with this LDP interface. There may be more than one protocol interface. Raises ------ @@ -422,7 +422,7 @@ def add( - Enabled (bool): Enables the use of this interface for the simulated router. - LabelSpaceId (number): The LDP label space used by this interface. - Md5Key (str): Used with MD5 authentication. A user-defined string; maximum = 255 characters. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The protocol interface associated with this LDP interface. There may be more than one protocol interface. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The protocol interface associated with this LDP interface. There may be more than one protocol interface. Returns ------- @@ -479,7 +479,7 @@ def find( - IsLdpLearnedInfoRefreshed (bool): When enabled, automatically refreshes the LDP learned info (from the DUT). - LabelSpaceId (number): The LDP label space used by this interface. - Md5Key (str): Used with MD5 authentication. A user-defined string; maximum = 255 characters. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The protocol interface associated with this LDP interface. There may be more than one protocol interface. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The protocol interface associated with this LDP interface. There may be more than one protocol interface. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interfacegroup_c2c90e7b7cf8bf4a351e197fc18ccb92.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interfacegroup_c2c90e7b7cf8bf4a351e197fc18ccb92.py index ef2d42ba2..7af3de6f5 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interfacegroup_c2c90e7b7cf8bf4a351e197fc18ccb92.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/interfacegroup_c2c90e7b7cf8bf4a351e197fc18ccb92.py @@ -161,7 +161,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -189,7 +189,7 @@ def update( - EnableVlan (bool): Enables the use of VLANs. - Enabled (bool): Enables this Interface Group. - Ip (str(ipv4 | ipv6)): The IP version being used for the Protocol Interfaces in this Group. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Raises ------ @@ -216,7 +216,7 @@ def add( - EnableVlan (bool): Enables the use of VLANs. - Enabled (bool): Enables this Interface Group. - Ip (str(ipv4 | ipv6)): The IP version being used for the Protocol Interfaces in this Group. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- @@ -261,7 +261,7 @@ def find( - EnableVlan (bool): Enables the use of VLANs. - Enabled (bool): Enables this Interface Group. - Ip (str(ipv4 | ipv6)): The IP version being used for the Protocol Interfaces in this Group. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ip_205717d3d79aa12a8dcea858982c666e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ip_205717d3d79aa12a8dcea858982c666e.py index 8a945440a..6802b64a4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ip_205717d3d79aa12a8dcea858982c666e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ip_205717d3d79aa12a8dcea858982c666e.py @@ -134,7 +134,7 @@ def ProtocolInterface(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): There may be multiple interfaces listed. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): There may be multiple interfaces listed. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -164,7 +164,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -194,9 +194,9 @@ def update( - IpStart (str): The first IP address in the range. - IpType (str(ipv4 | ipv6)): The Internet Protocol (IP version). - Mask (number): The number of bits in the network mask to be used to extract network and subnetwork information from the IP address. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): There may be multiple interfaces listed. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): There may be multiple interfaces listed. - Step (number): The increment value to be used for each additional address, to create a range of IP addresses. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Raises ------ @@ -225,9 +225,9 @@ def add( - IpStart (str): The first IP address in the range. - IpType (str(ipv4 | ipv6)): The Internet Protocol (IP version). - Mask (number): The number of bits in the network mask to be used to extract network and subnetwork information from the IP address. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): There may be multiple interfaces listed. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): There may be multiple interfaces listed. - Step (number): The increment value to be used for each additional address, to create a range of IP addresses. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- @@ -274,9 +274,9 @@ def find( - IpStart (str): The first IP address in the range. - IpType (str(ipv4 | ipv6)): The Internet Protocol (IP version). - Mask (number): The number of bits in the network mask to be used to extract network and subnetwork information from the IP address. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): There may be multiple interfaces listed. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): There may be multiple interfaces listed. - Step (number): The increment value to be used for each additional address, to create a range of IP addresses. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ipv4trafficendpoint_ccf0ac687ab3e96bf323237e4242c33d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ipv4trafficendpoint_ccf0ac687ab3e96bf323237e4242c33d.py index e9db0c367..8e6d3c576 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ipv4trafficendpoint_ccf0ac687ab3e96bf323237e4242c33d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ipv4trafficendpoint_ccf0ac687ab3e96bf323237e4242c33d.py @@ -283,7 +283,7 @@ def ProtocolInterface(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): NOT DEFINED + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -441,7 +441,7 @@ def update( - Ipv4Ecn (str): The ECN value specified for the IP address. - MacAddress (str): The MAC Address of the source traffic endpoint. The default value is 00 00 00 00 00 00. - Name (str): The name of the Traffic endpoint. It is an auto-populated field but can be customized for convenience. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the traffic range. - SourcePort (str): NOT DEFINED - UdpDestination (str): Specify the UDP Destination. The default value is 1. @@ -500,7 +500,7 @@ def add( - Ipv4Ecn (str): The ECN value specified for the IP address. - MacAddress (str): The MAC Address of the source traffic endpoint. The default value is 00 00 00 00 00 00. - Name (str): The name of the Traffic endpoint. It is an auto-populated field but can be customized for convenience. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the traffic range. - SourcePort (str): NOT DEFINED - UdpDestination (str): Specify the UDP Destination. The default value is 1. @@ -577,7 +577,7 @@ def find( - Ipv4Ecn (str): The ECN value specified for the IP address. - MacAddress (str): The MAC Address of the source traffic endpoint. The default value is 00 00 00 00 00 00. - Name (str): The name of the Traffic endpoint. It is an auto-populated field but can be customized for convenience. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the traffic range. - SourcePort (str): NOT DEFINED - UdpDestination (str): Specify the UDP Destination. The default value is 1. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ipv6trafficendpoint_5ba047ad864d88c7c789f996fb9125d8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ipv6trafficendpoint_5ba047ad864d88c7c789f996fb9125d8.py index 9533f20ac..dc4f56046 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ipv6trafficendpoint_5ba047ad864d88c7c789f996fb9125d8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ipv6trafficendpoint_5ba047ad864d88c7c789f996fb9125d8.py @@ -299,7 +299,7 @@ def ProtocolInterface(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): NOT DEFINED + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -459,7 +459,7 @@ def update( - Ipv6NextHeader (str(custom | tcp | udp)): The IPv6 Next Header value. - MacAddress (str): The MAC Address of the source traffic endpoint. The default value is 00 00 00 00 00 00. - Name (str): The name of the Traffic endpoint. It is an auto-populated field but can be customized for convenience. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the traffic range. - SourcePort (str): NOT DEFINED - UdpDestination (str): Specify the UDP Destination. The default value is 1. @@ -520,7 +520,7 @@ def add( - Ipv6NextHeader (str(custom | tcp | udp)): The IPv6 Next Header value. - MacAddress (str): The MAC Address of the source traffic endpoint. The default value is 00 00 00 00 00 00. - Name (str): The name of the Traffic endpoint. It is an auto-populated field but can be customized for convenience. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the traffic range. - SourcePort (str): NOT DEFINED - UdpDestination (str): Specify the UDP Destination. The default value is 1. @@ -599,7 +599,7 @@ def find( - Ipv6NextHeader (str(custom | tcp | udp)): The IPv6 Next Header value. - MacAddress (str): The MAC Address of the source traffic endpoint. The default value is 00 00 00 00 00 00. - Name (str): The name of the Traffic endpoint. It is an auto-populated field but can be customized for convenience. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the traffic range. - SourcePort (str): NOT DEFINED - UdpDestination (str): Specify the UDP Destination. The default value is 1. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l2interface_3d1eb8aa91ce49d1264d0d3e9350426f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l2interface_3d1eb8aa91ce49d1264d0d3e9350426f.py index 788e022a5..89c0510b0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l2interface_3d1eb8aa91ce49d1264d0d3e9350426f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l2interface_3d1eb8aa91ce49d1264d0d3e9350426f.py @@ -140,7 +140,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -175,7 +175,7 @@ def update( - Count (number): The number of contiguous values of groupId that will be used in generating FECs. - Enabled (bool): Enables the use of this interface for the simulated router. - GroupId (number): The group ID associated with all VC FEC elements of this interface. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. - Type (str(frameRelay | atmaal5 | atmxCell | vlan | ethernet | hdlc | ppp | cem | atmvcc | atmvpc | ip | satopE1 | satopT1 | satopE3 | satopT3 | cesoPsnBasic | cesoPsnCas | frameRelayRfc4619)): The type of virtual circuit. Raises @@ -195,7 +195,7 @@ def add( - Count (number): The number of contiguous values of groupId that will be used in generating FECs. - Enabled (bool): Enables the use of this interface for the simulated router. - GroupId (number): The group ID associated with all VC FEC elements of this interface. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. - Type (str(frameRelay | atmaal5 | atmxCell | vlan | ethernet | hdlc | ppp | cem | atmvcc | atmvpc | ip | satopE1 | satopT1 | satopE3 | satopT3 | cesoPsnBasic | cesoPsnCas | frameRelayRfc4619)): The type of virtual circuit. Returns @@ -233,7 +233,7 @@ def find( - Count (number): The number of contiguous values of groupId that will be used in generating FECs. - Enabled (bool): Enables the use of this interface for the simulated router. - GroupId (number): The group ID associated with all VC FEC elements of this interface. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. - Type (str(frameRelay | atmaal5 | atmxCell | vlan | ethernet | hdlc | ppp | cem | atmvcc | atmvpc | ip | satopE1 | satopT1 | satopE3 | satopT3 | cesoPsnBasic | cesoPsnCas | frameRelayRfc4619)): The type of virtual circuit. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l2site_261b4b7984b4a56f96a23ca529af873f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l2site_261b4b7984b4a56f96a23ca529af873f.py index 019d711c7..17bba868a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l2site_261b4b7984b4a56f96a23ca529af873f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l2site_261b4b7984b4a56f96a23ca529af873f.py @@ -544,7 +544,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -612,7 +612,7 @@ def update( - TargetAssignedNumberIncrement (number): Signifies increment of the target assigned number - TargetIncrementAs (number): Signifies increment as target - TargetIpIncrement (str): Signifies the increment of IP as target - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. Raises ------ @@ -679,7 +679,7 @@ def add( - TargetAssignedNumberIncrement (number): Signifies increment of the target assigned number - TargetIncrementAs (number): Signifies increment as target - TargetIpIncrement (str): Signifies the increment of IP as target - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. Returns ------- @@ -766,7 +766,7 @@ def find( - TargetAssignedNumberIncrement (number): Signifies increment of the target assigned number - TargetIncrementAs (number): Signifies increment as target - TargetIpIncrement (str): Signifies the increment of IP as target - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l3site_1184c1264fe43eeeb88002bee9622490.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l3site_1184c1264fe43eeeb88002bee9622490.py index 86bf36c3c..d5ceb96ae 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l3site_1184c1264fe43eeeb88002bee9622490.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/l3site_1184c1264fe43eeeb88002bee9622490.py @@ -458,7 +458,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -542,7 +542,7 @@ def update( - RsvpTunnelId (number): This allows to select the P2MP LSP that can be used for this particular mVPN. An LSP is uniquely identified by P2MP-Id, Tunnel Id and Extended Tunnel ID (Tunnel Head Address - SameRtAsL3SiteRt (bool): If enabled, this allows UMH VRF to use same RT as configured in l3 site - SameTargetListAsL3SiteTargetList (bool): If enabled, this allows UMH VRF to use same target list as configured in l3 site - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. - TunnelType (str(tunnelTypePimGreRosenDraft | tunnelTypeRsvpP2mp | tunnelTypeMldpP2mp)): The tunnel type. - UseUpstreamAssignedLabel (bool): This field indicates whether the configured upstream label AS needs to be used. If false, the Upstream Assigned Label field is disabled. - VrfCount (number): Number of VRFs within the VRF Range. @@ -583,7 +583,7 @@ def add( - RsvpTunnelId (number): This allows to select the P2MP LSP that can be used for this particular mVPN. An LSP is uniquely identified by P2MP-Id, Tunnel Id and Extended Tunnel ID (Tunnel Head Address - SameRtAsL3SiteRt (bool): If enabled, this allows UMH VRF to use same RT as configured in l3 site - SameTargetListAsL3SiteTargetList (bool): If enabled, this allows UMH VRF to use same target list as configured in l3 site - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. - TunnelType (str(tunnelTypePimGreRosenDraft | tunnelTypeRsvpP2mp | tunnelTypeMldpP2mp)): The tunnel type. - UseUpstreamAssignedLabel (bool): This field indicates whether the configured upstream label AS needs to be used. If false, the Upstream Assigned Label field is disabled. - VrfCount (number): Number of VRFs within the VRF Range. @@ -644,7 +644,7 @@ def find( - RsvpTunnelId (number): This allows to select the P2MP LSP that can be used for this particular mVPN. An LSP is uniquely identified by P2MP-Id, Tunnel Id and Extended Tunnel ID (Tunnel Head Address - SameRtAsL3SiteRt (bool): If enabled, this allows UMH VRF to use same RT as configured in l3 site - SameTargetListAsL3SiteTargetList (bool): If enabled, this allows UMH VRF to use same target list as configured in l3 site - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. - TunnelType (str(tunnelTypePimGreRosenDraft | tunnelTypeRsvpP2mp | tunnelTypeMldpP2mp)): The tunnel type. - UseUpstreamAssignedLabel (bool): This field indicates whether the configured upstream label AS needs to be used. If false, the Upstream Assigned Label field is disabled. - VrfCount (number): Number of VRFs within the VRF Range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lan_7e56cbddd866444e811691cca31f325e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lan_7e56cbddd866444e811691cca31f325e.py index ab534f259..96121e382 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lan_7e56cbddd866444e811691cca31f325e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lan_7e56cbddd866444e811691cca31f325e.py @@ -117,7 +117,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): References a traffic group identifier as configured by the trafficGroup object. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): References a traffic group identifier as configured by the trafficGroup object. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -191,7 +191,7 @@ def update( - MacAddress (str): The first 6-byte MAC Address in the range. (default = 00:00:00:00:00:00) - MacCount (number): The number of MAC addresses in the LAN range. The valid range is 1 to 500. (default = 1) - MacIncrement (bool): If enabled, a 6-byte increment value will be added for each additional MAC address to create a range of MAC addresses. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): References a traffic group identifier as configured by the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): References a traffic group identifier as configured by the trafficGroup object. - VlanEnabled (bool): Enables the use of this STP LAN. (default = disabled) - VlanId (number): The identifier for the first VLAN in the range. Valid range: 1 to 4094. - VlanIncrement (bool): If enabled, an increment value will be added for each additional VLAN to create a range of MAC addresses. @@ -222,7 +222,7 @@ def add( - MacAddress (str): The first 6-byte MAC Address in the range. (default = 00:00:00:00:00:00) - MacCount (number): The number of MAC addresses in the LAN range. The valid range is 1 to 500. (default = 1) - MacIncrement (bool): If enabled, a 6-byte increment value will be added for each additional MAC address to create a range of MAC addresses. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): References a traffic group identifier as configured by the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): References a traffic group identifier as configured by the trafficGroup object. - VlanEnabled (bool): Enables the use of this STP LAN. (default = disabled) - VlanId (number): The identifier for the first VLAN in the range. Valid range: 1 to 4094. - VlanIncrement (bool): If enabled, an increment value will be added for each additional VLAN to create a range of MAC addresses. @@ -271,7 +271,7 @@ def find( - MacAddress (str): The first 6-byte MAC Address in the range. (default = 00:00:00:00:00:00) - MacCount (number): The number of MAC addresses in the LAN range. The valid range is 1 to 500. (default = 1) - MacIncrement (bool): If enabled, a 6-byte increment value will be added for each additional MAC address to create a range of MAC addresses. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): References a traffic group identifier as configured by the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): References a traffic group identifier as configured by the trafficGroup object. - VlanEnabled (bool): Enables the use of this STP LAN. (default = disabled) - VlanId (number): The identifier for the first VLAN in the range. Valid range: 1 to 4094. - VlanIncrement (bool): If enabled, an increment value will be added for each additional VLAN to create a range of MAC addresses. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lan_a0c3771a1420d267c519e60205c6a8e6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lan_a0c3771a1420d267c519e60205c6a8e6.py index 0c97be32e..38ec9a395 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lan_a0c3771a1420d267c519e60205c6a8e6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lan_a0c3771a1420d267c519e60205c6a8e6.py @@ -93,7 +93,7 @@ def AtmEncapsulation(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../atm): Select the ATM VPI/VCI Name from the list configured in the atm object. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/static/atm): Select the ATM VPI/VCI Name from the list configured in the atm object. """ return self._get_attribute(self._SDM_ATT_MAP["AtmEncapsulation"]) @@ -243,7 +243,7 @@ def FrEncapsulation(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../fr): Selects the Frame Relay encapsulation for the LAN based on the configuration of the fr object. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/static/fr): Selects the Frame Relay encapsulation for the LAN based on the configuration of the fr object. """ return self._get_attribute(self._SDM_ATT_MAP["FrEncapsulation"]) @@ -393,7 +393,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -479,7 +479,7 @@ def update( Args ---- - - AtmEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/.../atm)): Select the ATM VPI/VCI Name from the list configured in the atm object. + - AtmEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/static/atm)): Select the ATM VPI/VCI Name from the list configured in the atm object. - Bmac (str): - Count (number): If the VLAN is enabled, then this is the number of MAC address/VLAN combinations that will be created. - CountPerVc (number): The total count per VC in this bundled mode. @@ -489,7 +489,7 @@ def update( - EnableSiteId (bool): Enables this site identifier (ID). - EnableVlan (bool): Enables the use of VLANs. - Enabled (bool): Enables this LAN entry. - - FrEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/.../fr)): Selects the Frame Relay encapsulation for the LAN based on the configuration of the fr object. + - FrEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/static/fr)): Selects the Frame Relay encapsulation for the LAN based on the configuration of the fr object. - IncrementPerVcVlanMode (str(noIncrement | parallelIncrement | innerFirst | outerFirst)): If true, enables the use of multiple VLANs, which are incremented for each additional VLAN per VC. The default increment is 1. - IncrementVlanMode (str(noIncrement | parallelIncrement | innerFirst | outerFirst)): If true, enables the use of multiple VLANs, which are incremented for each additional VLAN per VC. The default increment is 1. - IncremetVlanMode (str(noIncrement | parallelIncrement | innerFirst | outerFirst)): If true, enables the use of multiple VLANs, which are incremented for each additional VLAN per VC. The default increment is 1. @@ -499,7 +499,7 @@ def update( - SiteId (number): The value of the site identifier (ID). The valid range is 0 to 4,294,967,295. The default is 0. - SkipVlanIdZero (bool): Skip the value of vlad id, if the vlan id value is equal to zero. - Tpid (str): Tag Protocol Identifier / TPID (hex). The EtherType that identifies the protocol header that follows the VLAN header (tag).The dropdown list contains the available TPIDs. Choose one of: 0x8100 (the default), 0x88a8, 0x9100, 0x9200. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - VlanCount (number): The number of VLANs created. - VlanId (str): The identifier for the first VLAN in the range. - VlanPriority (str): The User Priority for this VLAN. A value from 0 through 7. The use and interpretation of this field is defined in ISO/IEC 15802-3. @@ -542,7 +542,7 @@ def add( Args ---- - - AtmEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/.../atm)): Select the ATM VPI/VCI Name from the list configured in the atm object. + - AtmEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/static/atm)): Select the ATM VPI/VCI Name from the list configured in the atm object. - Bmac (str): - Count (number): If the VLAN is enabled, then this is the number of MAC address/VLAN combinations that will be created. - CountPerVc (number): The total count per VC in this bundled mode. @@ -552,7 +552,7 @@ def add( - EnableSiteId (bool): Enables this site identifier (ID). - EnableVlan (bool): Enables the use of VLANs. - Enabled (bool): Enables this LAN entry. - - FrEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/.../fr)): Selects the Frame Relay encapsulation for the LAN based on the configuration of the fr object. + - FrEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/static/fr)): Selects the Frame Relay encapsulation for the LAN based on the configuration of the fr object. - IncrementPerVcVlanMode (str(noIncrement | parallelIncrement | innerFirst | outerFirst)): If true, enables the use of multiple VLANs, which are incremented for each additional VLAN per VC. The default increment is 1. - IncrementVlanMode (str(noIncrement | parallelIncrement | innerFirst | outerFirst)): If true, enables the use of multiple VLANs, which are incremented for each additional VLAN per VC. The default increment is 1. - IncremetVlanMode (str(noIncrement | parallelIncrement | innerFirst | outerFirst)): If true, enables the use of multiple VLANs, which are incremented for each additional VLAN per VC. The default increment is 1. @@ -562,7 +562,7 @@ def add( - SiteId (number): The value of the site identifier (ID). The valid range is 0 to 4,294,967,295. The default is 0. - SkipVlanIdZero (bool): Skip the value of vlad id, if the vlan id value is equal to zero. - Tpid (str): Tag Protocol Identifier / TPID (hex). The EtherType that identifies the protocol header that follows the VLAN header (tag).The dropdown list contains the available TPIDs. Choose one of: 0x8100 (the default), 0x88a8, 0x9100, 0x9200. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - VlanCount (number): The number of VLANs created. - VlanId (str): The identifier for the first VLAN in the range. - VlanPriority (str): The User Priority for this VLAN. A value from 0 through 7. The use and interpretation of this field is defined in ISO/IEC 15802-3. @@ -623,7 +623,7 @@ def find( Args ---- - - AtmEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/.../atm)): Select the ATM VPI/VCI Name from the list configured in the atm object. + - AtmEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/static/atm)): Select the ATM VPI/VCI Name from the list configured in the atm object. - Bmac (str): - Count (number): If the VLAN is enabled, then this is the number of MAC address/VLAN combinations that will be created. - CountPerVc (number): The total count per VC in this bundled mode. @@ -633,7 +633,7 @@ def find( - EnableSiteId (bool): Enables this site identifier (ID). - EnableVlan (bool): Enables the use of VLANs. - Enabled (bool): Enables this LAN entry. - - FrEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/.../fr)): Selects the Frame Relay encapsulation for the LAN based on the configuration of the fr object. + - FrEncapsulation (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/static/fr)): Selects the Frame Relay encapsulation for the LAN based on the configuration of the fr object. - IncrementPerVcVlanMode (str(noIncrement | parallelIncrement | innerFirst | outerFirst)): If true, enables the use of multiple VLANs, which are incremented for each additional VLAN per VC. The default increment is 1. - IncrementVlanMode (str(noIncrement | parallelIncrement | innerFirst | outerFirst)): If true, enables the use of multiple VLANs, which are incremented for each additional VLAN per VC. The default increment is 1. - IncremetVlanMode (str(noIncrement | parallelIncrement | innerFirst | outerFirst)): If true, enables the use of multiple VLANs, which are incremented for each additional VLAN per VC. The default increment is 1. @@ -643,7 +643,7 @@ def find( - SiteId (number): The value of the site identifier (ID). The valid range is 0 to 4,294,967,295. The default is 0. - SkipVlanIdZero (bool): Skip the value of vlad id, if the vlan id value is equal to zero. - Tpid (str): Tag Protocol Identifier / TPID (hex). The EtherType that identifies the protocol header that follows the VLAN header (tag).The dropdown list contains the available TPIDs. Choose one of: 0x8100 (the default), 0x88a8, 0x9100, 0x9200. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - VlanCount (number): The number of VLANs created. - VlanId (str): The identifier for the first VLAN in the range. - VlanPriority (str): The User Priority for this VLAN. A value from 0 through 7. The use and interpretation of this field is defined in ISO/IEC 15802-3. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/link_7d58db94150539071d46c85f2377f76c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/link_7d58db94150539071d46c85f2377f76c.py index 455c51bfb..56ee94a15 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/link_7d58db94150539071d46c85f2377f76c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/link_7d58db94150539071d46c85f2377f76c.py @@ -86,7 +86,7 @@ def MoreMps(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../mp]): Attaches multiple MPs to the link. MPs must be previously configured. + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp]): Attaches multiple MPs to the link. MPs must be previously configured. """ return self._get_attribute(self._SDM_ATT_MAP["MoreMps"]) @@ -101,7 +101,7 @@ def MpOutwardsIxia(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../mp): Sets the link MP to be facing away from the Ixia chassis. The MP must be previous configued. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp): Sets the link MP to be facing away from the Ixia chassis. The MP must be previous configued. """ return self._get_attribute(self._SDM_ATT_MAP["MpOutwardsIxia"]) @@ -116,7 +116,7 @@ def MpTowardsIxia(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../mp): Sets the link MP to be facing towards from the Ixia chassis. The MP must be previous configued. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp): Sets the link MP to be facing towards from the Ixia chassis. The MP must be previous configued. """ return self._get_attribute(self._SDM_ATT_MAP["MpTowardsIxia"]) @@ -140,9 +140,9 @@ def update( ---- - Enabled (bool): If true, the link is enabled. - LinkType (str(broadcast | pointToPoint)): Sets the link type. - - MoreMps (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../mp])): Attaches multiple MPs to the link. MPs must be previously configured. - - MpOutwardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mp)): Sets the link MP to be facing away from the Ixia chassis. The MP must be previous configued. - - MpTowardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mp)): Sets the link MP to be facing towards from the Ixia chassis. The MP must be previous configued. + - MoreMps (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp])): Attaches multiple MPs to the link. MPs must be previously configured. + - MpOutwardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp)): Sets the link MP to be facing away from the Ixia chassis. The MP must be previous configued. + - MpTowardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp)): Sets the link MP to be facing towards from the Ixia chassis. The MP must be previous configued. Raises ------ @@ -165,9 +165,9 @@ def add( ---- - Enabled (bool): If true, the link is enabled. - LinkType (str(broadcast | pointToPoint)): Sets the link type. - - MoreMps (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../mp])): Attaches multiple MPs to the link. MPs must be previously configured. - - MpOutwardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mp)): Sets the link MP to be facing away from the Ixia chassis. The MP must be previous configued. - - MpTowardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mp)): Sets the link MP to be facing towards from the Ixia chassis. The MP must be previous configued. + - MoreMps (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp])): Attaches multiple MPs to the link. MPs must be previously configured. + - MpOutwardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp)): Sets the link MP to be facing away from the Ixia chassis. The MP must be previous configued. + - MpTowardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp)): Sets the link MP to be facing towards from the Ixia chassis. The MP must be previous configued. Returns ------- @@ -208,9 +208,9 @@ def find( ---- - Enabled (bool): If true, the link is enabled. - LinkType (str(broadcast | pointToPoint)): Sets the link type. - - MoreMps (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../mp])): Attaches multiple MPs to the link. MPs must be previously configured. - - MpOutwardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mp)): Sets the link MP to be facing away from the Ixia chassis. The MP must be previous configued. - - MpTowardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mp)): Sets the link MP to be facing towards from the Ixia chassis. The MP must be previous configued. + - MoreMps (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp])): Attaches multiple MPs to the link. MPs must be previously configured. + - MpOutwardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp)): Sets the link MP to be facing away from the Ixia chassis. The MP must be previous configued. + - MpTowardsIxia (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mp)): Sets the link MP to be facing towards from the Ixia chassis. The MP must be previous configued. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lsppwrange_a99d978c87681e8fd80d5560169a1dcf.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lsppwrange_a99d978c87681e8fd80d5560169a1dcf.py index 2ae6e993e..f20c04227 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lsppwrange_a99d978c87681e8fd80d5560169a1dcf.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/lsppwrange_a99d978c87681e8fd80d5560169a1dcf.py @@ -1010,7 +1010,7 @@ def PeerLspOrPwRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../lspPwRange): This signifies the type of Peer LSP Or PW Range. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/mplsTp/router/interface/lspPwRange): This signifies the type of Peer LSP Or PW Range. """ return self._get_attribute(self._SDM_ATT_MAP["PeerLspOrPwRange"]) @@ -1025,7 +1025,7 @@ def PeerNestedLspPwRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../lspPwRange): This signifies the peer range of the nested LSP PW value. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/mplsTp/router/interface/lspPwRange): This signifies the peer range of the nested LSP PW value. """ return self._get_attribute(self._SDM_ATT_MAP["PeerNestedLspPwRange"]) @@ -1490,7 +1490,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): This signifies the Traffic Group Id. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): This signifies the Traffic Group Id. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -1780,8 +1780,8 @@ def update( - NumberOfLsp (number): This signifies the total number of LSPs for this range. - NumberOfPwPerLsp (number): This signifies the total number of PWs per LSP. - OnDemandCvTrafficClass (number): This signifies the On Demand CV Traffic Class for LSP PW Range. - - PeerLspOrPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../lspPwRange)): This signifies the type of Peer LSP Or PW Range. - - PeerNestedLspPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../lspPwRange)): This signifies the peer range of the nested LSP PW value. + - PeerLspOrPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/mplsTp/router/interface/lspPwRange)): This signifies the type of Peer LSP Or PW Range. + - PeerNestedLspPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/mplsTp/router/interface/lspPwRange)): This signifies the peer range of the nested LSP PW value. - PwIncomingLabel (number): This signifies the PW Incoming Label value. All mpls-tp packets are expected to be received with this PW label value, if there is a mismatch of this value with the peer's outgoing PW label value, cccv sessions will not come up. - PwIncomingLabelStep (number): This signifies the PW Incoming Label Step value. - PwIncomingLabelStepAcrossLsp (number): This signifies the PW Incoming Label Step value across LSPs. @@ -1812,7 +1812,7 @@ def update( - SrcVplsIdIpAddressStep (str): This signifies the step of ip address by which it is incremented if there are multiple LSP/PW in the range. - SrcVplsIdType (str(asNumber | ipAddress | asNumber4Bytes)): This specifies the source VplsId type. - SupportSlowStart (bool): This signifies the Support Slow Start. This field is valid only for cccv type bfd and grayed out for y1731. If this is enabled then cccv interval for the peer is not matched for bfd session establishment. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): This signifies the Traffic Group Id. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): This signifies the Traffic Group Id. - TypeOfProtectionSwitching (str(1+1Unidirectional | 1:1Bidirectional | 1+1Bidirectional)): This signifies different types of protection switching mechanism. - TypeOfRange (str(lsp | pw | nestedLspPw)): This signifies the type of range. Possible values include LSP, PW and Nested PW and LSP. - VlanCount (number): This signifies the number of VLANs configured for this MAC Range. @@ -1989,8 +1989,8 @@ def add( - NumberOfLsp (number): This signifies the total number of LSPs for this range. - NumberOfPwPerLsp (number): This signifies the total number of PWs per LSP. - OnDemandCvTrafficClass (number): This signifies the On Demand CV Traffic Class for LSP PW Range. - - PeerLspOrPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../lspPwRange)): This signifies the type of Peer LSP Or PW Range. - - PeerNestedLspPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../lspPwRange)): This signifies the peer range of the nested LSP PW value. + - PeerLspOrPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/mplsTp/router/interface/lspPwRange)): This signifies the type of Peer LSP Or PW Range. + - PeerNestedLspPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/mplsTp/router/interface/lspPwRange)): This signifies the peer range of the nested LSP PW value. - PwIncomingLabel (number): This signifies the PW Incoming Label value. All mpls-tp packets are expected to be received with this PW label value, if there is a mismatch of this value with the peer's outgoing PW label value, cccv sessions will not come up. - PwIncomingLabelStep (number): This signifies the PW Incoming Label Step value. - PwIncomingLabelStepAcrossLsp (number): This signifies the PW Incoming Label Step value across LSPs. @@ -2021,7 +2021,7 @@ def add( - SrcVplsIdIpAddressStep (str): This signifies the step of ip address by which it is incremented if there are multiple LSP/PW in the range. - SrcVplsIdType (str(asNumber | ipAddress | asNumber4Bytes)): This specifies the source VplsId type. - SupportSlowStart (bool): This signifies the Support Slow Start. This field is valid only for cccv type bfd and grayed out for y1731. If this is enabled then cccv interval for the peer is not matched for bfd session establishment. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): This signifies the Traffic Group Id. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): This signifies the Traffic Group Id. - TypeOfProtectionSwitching (str(1+1Unidirectional | 1:1Bidirectional | 1+1Bidirectional)): This signifies different types of protection switching mechanism. - TypeOfRange (str(lsp | pw | nestedLspPw)): This signifies the type of range. Possible values include LSP, PW and Nested PW and LSP. - VlanCount (number): This signifies the number of VLANs configured for this MAC Range. @@ -2216,8 +2216,8 @@ def find( - NumberOfLsp (number): This signifies the total number of LSPs for this range. - NumberOfPwPerLsp (number): This signifies the total number of PWs per LSP. - OnDemandCvTrafficClass (number): This signifies the On Demand CV Traffic Class for LSP PW Range. - - PeerLspOrPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../lspPwRange)): This signifies the type of Peer LSP Or PW Range. - - PeerNestedLspPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../lspPwRange)): This signifies the peer range of the nested LSP PW value. + - PeerLspOrPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/mplsTp/router/interface/lspPwRange)): This signifies the type of Peer LSP Or PW Range. + - PeerNestedLspPwRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/mplsTp/router/interface/lspPwRange)): This signifies the peer range of the nested LSP PW value. - PwIncomingLabel (number): This signifies the PW Incoming Label value. All mpls-tp packets are expected to be received with this PW label value, if there is a mismatch of this value with the peer's outgoing PW label value, cccv sessions will not come up. - PwIncomingLabelStep (number): This signifies the PW Incoming Label Step value. - PwIncomingLabelStepAcrossLsp (number): This signifies the PW Incoming Label Step value across LSPs. @@ -2248,7 +2248,7 @@ def find( - SrcVplsIdIpAddressStep (str): This signifies the step of ip address by which it is incremented if there are multiple LSP/PW in the range. - SrcVplsIdType (str(asNumber | ipAddress | asNumber4Bytes)): This specifies the source VplsId type. - SupportSlowStart (bool): This signifies the Support Slow Start. This field is valid only for cccv type bfd and grayed out for y1731. If this is enabled then cccv interval for the peer is not matched for bfd session establishment. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): This signifies the Traffic Group Id. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): This signifies the Traffic Group Id. - TypeOfProtectionSwitching (str(1+1Unidirectional | 1:1Bidirectional | 1+1Bidirectional)): This signifies different types of protection switching mechanism. - TypeOfRange (str(lsp | pw | nestedLspPw)): This signifies the type of range. Possible values include LSP, PW and Nested PW and LSP. - VlanCount (number): This signifies the number of VLANs configured for this MAC Range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/macranges_73cee592904a08c0f6dad66b39c954fd.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/macranges_73cee592904a08c0f6dad66b39c954fd.py index ff00868e4..09fb201a4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/macranges_73cee592904a08c0f6dad66b39c954fd.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/macranges_73cee592904a08c0f6dad66b39c954fd.py @@ -256,7 +256,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): Assigns a traffic group to the MAC range. The traffic group must be previously configured. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): Assigns a traffic group to the MAC range. The traffic group must be previously configured. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -314,7 +314,7 @@ def update( - SVlanTpId (str): The Tag Protocol ID. EtherTypes identify the protocol that follows the VLAN header. Select from a list of hex options: 0x8100, 0x9100, 0x9200, 0x88A8. - StartMacAddress (str): The MAC address of the first entry in the range. - Step (str): The amount to increment each MAC address in the range. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. - Type (str(singleVlan | stackedVlan)): Selects the VLAN type, either single or stacked. Stacked VLANS have an inner and outer value. Default = single. Raises @@ -357,7 +357,7 @@ def add( - SVlanTpId (str): The Tag Protocol ID. EtherTypes identify the protocol that follows the VLAN header. Select from a list of hex options: 0x8100, 0x9100, 0x9200, 0x88A8. - StartMacAddress (str): The MAC address of the first entry in the range. - Step (str): The amount to increment each MAC address in the range. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. - Type (str(singleVlan | stackedVlan)): Selects the VLAN type, either single or stacked. Stacked VLANS have an inner and outer value. Default = single. Returns @@ -420,7 +420,7 @@ def find( - SVlanTpId (str): The Tag Protocol ID. EtherTypes identify the protocol that follows the VLAN header. Select from a list of hex options: 0x8100, 0x9100, 0x9200, 0x88A8. - StartMacAddress (str): The MAC address of the first entry in the range. - Step (str): The amount to increment each MAC address in the range. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. - Type (str(singleVlan | stackedVlan)): Selects the VLAN type, either single or stacked. Stacked VLANS have an inner and outer value. Default = single. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/macranges_7d9b9c7989bc1d3958915290660de5e7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/macranges_7d9b9c7989bc1d3958915290660de5e7.py index 7cea5d906..dbc8d8e89 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/macranges_7d9b9c7989bc1d3958915290660de5e7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/macranges_7d9b9c7989bc1d3958915290660de5e7.py @@ -114,7 +114,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): Assigns a traffic group to the MAC range. The traffic group must be previously configured. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): Assigns a traffic group to the MAC range. The traffic group must be previously configured. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -135,7 +135,7 @@ def update( - Enabled (bool): If true, the MAC range is enabled. - MacAddress (str): The MAC address of the first entry in the range. - Step (str): The amount to increment each MAC address in the range. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. Raises ------ @@ -155,7 +155,7 @@ def add( - Enabled (bool): If true, the MAC range is enabled. - MacAddress (str): The MAC address of the first entry in the range. - Step (str): The amount to increment each MAC address in the range. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. Returns ------- @@ -193,7 +193,7 @@ def find( - Enabled (bool): If true, the MAC range is enabled. - MacAddress (str): The MAC address of the first entry in the range. - Step (str): The amount to increment each MAC address in the range. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Assigns a traffic group to the MAC range. The traffic group must be previously configured. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mapserverresolver_b4ceea809f63888622dd6232272f2c7e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mapserverresolver_b4ceea809f63888622dd6232272f2c7e.py index 314200fe0..ce002696d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mapserverresolver_b4ceea809f63888622dd6232272f2c7e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mapserverresolver_b4ceea809f63888622dd6232272f2c7e.py @@ -122,7 +122,7 @@ def InternalIxiaMsmrRouter(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../router): It gives details about the internal ixia msmr router + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/lisp/router): It gives details about the internal ixia msmr router """ return self._get_attribute(self._SDM_ATT_MAP["InternalIxiaMsmrRouter"]) @@ -196,7 +196,7 @@ def update( - Enabled (bool): If true, it enables the protocol - ExternalMsmrAddress (str): It gives details about the external Msmr address - Family (str(ipv4 | ipv6)): It gives details about the ip family it represents - - InternalIxiaMsmrRouter (str(None | /api/v1/sessions/1/ixnetwork/vport/.../router)): It gives details about the internal ixia msmr router + - InternalIxiaMsmrRouter (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/lisp/router)): It gives details about the internal ixia msmr router - Key (str): it gives details about the key - MsmrLocation (str(internal | external)): It details about the msmr location - Type (str(ms | mr | msmr)): It gives details about the type @@ -227,7 +227,7 @@ def add( - Enabled (bool): If true, it enables the protocol - ExternalMsmrAddress (str): It gives details about the external Msmr address - Family (str(ipv4 | ipv6)): It gives details about the ip family it represents - - InternalIxiaMsmrRouter (str(None | /api/v1/sessions/1/ixnetwork/vport/.../router)): It gives details about the internal ixia msmr router + - InternalIxiaMsmrRouter (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/lisp/router)): It gives details about the internal ixia msmr router - Key (str): it gives details about the key - MsmrLocation (str(internal | external)): It details about the msmr location - Type (str(ms | mr | msmr)): It gives details about the type @@ -276,7 +276,7 @@ def find( - Enabled (bool): If true, it enables the protocol - ExternalMsmrAddress (str): It gives details about the external Msmr address - Family (str(ipv4 | ipv6)): It gives details about the ip family it represents - - InternalIxiaMsmrRouter (str(None | /api/v1/sessions/1/ixnetwork/vport/.../router)): It gives details about the internal ixia msmr router + - InternalIxiaMsmrRouter (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/lisp/router)): It gives details about the internal ixia msmr router - Key (str): it gives details about the key - MsmrLocation (str(internal | external)): It details about the msmr location - Type (str(ms | mr | msmr)): It gives details about the type diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mp_27380643ca73dc91fb91d8f173d7c4b0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mp_27380643ca73dc91fb91d8f173d7c4b0.py index e1646a00c..0c26cbe42 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mp_27380643ca73dc91fb91d8f173d7c4b0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mp_27380643ca73dc91fb91d8f173d7c4b0.py @@ -1404,7 +1404,7 @@ def MdLevel(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../mdLevel): The MD level of the MP. The MD level must be previously configured. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mdLevel): The MD level of the MP. The MD level must be previously configured. """ return self._get_attribute(self._SDM_ATT_MAP["MdLevel"]) @@ -1794,7 +1794,7 @@ def Vlan(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../vlans): Assigns a VLAN to the MP. The VLAN must be previously configured. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/vlans): Assigns a VLAN to the MP. The VLAN must be previously configured. """ return self._get_attribute(self._SDM_ATT_MAP["Vlan"]) @@ -1998,7 +1998,7 @@ def update( - ManagementAddressDomain (str): Sets the MP management address domain. This will take HEX input (0-255 byte). Default is 4d 61 6e 61 67 65 6d 65 6e 74 20 41 64 64 72 20 44 6f 6d 61 69 6e (Management Addr Domain). - ManagementAddressDomainLength (number): Sets the length of the Management address domain field. Default is 22. Min: 0 Max: 255. - ManagementAddressLength (number): Sets the length of the Management address field. Default is 6. Min: 0 Max: 255. - - MdLevel (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mdLevel)): The MD level of the MP. The MD level must be previously configured. + - MdLevel (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mdLevel)): The MD level of the MP. The MD level must be previously configured. - MegId (str): The MEG identifier of the MP. This is for use with ITU-T Y.1731. - MegIdFormat (str(iccBasedFormat | primaryVid | characterString | 2octetInteger | rfc2685VpnId)): The MEG identifier format. - MepId (number): The MEP identifier. @@ -2024,7 +2024,7 @@ def update( - TstTestType (str(inService | outOfService)): NOT DEFINED - TstUnicastMac (str): NOT DEFINED - Ttl (number): Sets the MP Time-to-live value. Default is 64. Min: 1 Max: 255 - - Vlan (str(None | /api/v1/sessions/1/ixnetwork/vport/.../vlans)): Assigns a VLAN to the MP. The VLAN must be previously configured. + - Vlan (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/vlans)): Assigns a VLAN to the MP. The VLAN must be previously configured. Raises ------ @@ -2227,7 +2227,7 @@ def add( - ManagementAddressDomain (str): Sets the MP management address domain. This will take HEX input (0-255 byte). Default is 4d 61 6e 61 67 65 6d 65 6e 74 20 41 64 64 72 20 44 6f 6d 61 69 6e (Management Addr Domain). - ManagementAddressDomainLength (number): Sets the length of the Management address domain field. Default is 22. Min: 0 Max: 255. - ManagementAddressLength (number): Sets the length of the Management address field. Default is 6. Min: 0 Max: 255. - - MdLevel (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mdLevel)): The MD level of the MP. The MD level must be previously configured. + - MdLevel (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mdLevel)): The MD level of the MP. The MD level must be previously configured. - MegId (str): The MEG identifier of the MP. This is for use with ITU-T Y.1731. - MegIdFormat (str(iccBasedFormat | primaryVid | characterString | 2octetInteger | rfc2685VpnId)): The MEG identifier format. - MepId (number): The MEP identifier. @@ -2253,7 +2253,7 @@ def add( - TstTestType (str(inService | outOfService)): NOT DEFINED - TstUnicastMac (str): NOT DEFINED - Ttl (number): Sets the MP Time-to-live value. Default is 64. Min: 1 Max: 255 - - Vlan (str(None | /api/v1/sessions/1/ixnetwork/vport/.../vlans)): Assigns a VLAN to the MP. The VLAN must be previously configured. + - Vlan (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/vlans)): Assigns a VLAN to the MP. The VLAN must be previously configured. Returns ------- @@ -2474,7 +2474,7 @@ def find( - ManagementAddressDomain (str): Sets the MP management address domain. This will take HEX input (0-255 byte). Default is 4d 61 6e 61 67 65 6d 65 6e 74 20 41 64 64 72 20 44 6f 6d 61 69 6e (Management Addr Domain). - ManagementAddressDomainLength (number): Sets the length of the Management address domain field. Default is 22. Min: 0 Max: 255. - ManagementAddressLength (number): Sets the length of the Management address field. Default is 6. Min: 0 Max: 255. - - MdLevel (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mdLevel)): The MD level of the MP. The MD level must be previously configured. + - MdLevel (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/mdLevel)): The MD level of the MP. The MD level must be previously configured. - MegId (str): The MEG identifier of the MP. This is for use with ITU-T Y.1731. - MegIdFormat (str(iccBasedFormat | primaryVid | characterString | 2octetInteger | rfc2685VpnId)): The MEG identifier format. - MepId (number): The MEP identifier. @@ -2500,7 +2500,7 @@ def find( - TstTestType (str(inService | outOfService)): NOT DEFINED - TstUnicastMac (str): NOT DEFINED - Ttl (number): Sets the MP Time-to-live value. Default is 64. Min: 1 Max: 255 - - Vlan (str(None | /api/v1/sessions/1/ixnetwork/vport/.../vlans)): Assigns a VLAN to the MP. The VLAN must be previously configured. + - Vlan (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/cfm/bridge/vlans)): Assigns a VLAN to the MP. The VLAN must be previously configured. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mplstrafficendpoint_9c9576354d6d254197b269b117417591.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mplstrafficendpoint_9c9576354d6d254197b269b117417591.py index 1e5157ab9..8797ca524 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mplstrafficendpoint_9c9576354d6d254197b269b117417591.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/mplstrafficendpoint_9c9576354d6d254197b269b117417591.py @@ -392,7 +392,7 @@ def ProtocolInterface(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): NOT DEFINED + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -516,7 +516,7 @@ def update( - MplsPayloadType (str(ethernet | ipv4 | ipv6)): Specify the MPLS Payload Type. - MplsTrafficClass (str): The MPLS Traffic Class value. - Name (str): The name of the Traffic Source Endpoint. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the Range. - VlanCount (number): Specify the VLAN count. The default value is 1. - VlanId (str): Specify the VLAN ID (Outer and Inner). @@ -583,7 +583,7 @@ def add( - MplsPayloadType (str(ethernet | ipv4 | ipv6)): Specify the MPLS Payload Type. - MplsTrafficClass (str): The MPLS Traffic Class value. - Name (str): The name of the Traffic Source Endpoint. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the Range. - VlanCount (number): Specify the VLAN count. The default value is 1. - VlanId (str): Specify the VLAN ID (Outer and Inner). @@ -668,7 +668,7 @@ def find( - MplsPayloadType (str(ethernet | ipv4 | ipv6)): Specify the MPLS Payload Type. - MplsTrafficClass (str): The MPLS Traffic Class value. - Name (str): The name of the Traffic Source Endpoint. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): NOT DEFINED + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): NOT DEFINED - RangeSize (number): Specify the size of the Range. - VlanCount (number): Specify the VLAN count. The default value is 1. - VlanId (str): Specify the VLAN ID (Outer and Inner). diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/multicastsendersite_83f523e9811617a00cbff1d57dcf5a27.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/multicastsendersite_83f523e9811617a00cbff1d57dcf5a27.py index f61629863..0837e90ee 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/multicastsendersite_83f523e9811617a00cbff1d57dcf5a27.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/multicastsendersite_83f523e9811617a00cbff1d57dcf5a27.py @@ -291,7 +291,7 @@ def SPmsiTrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): Creates traffic using MPLS Labels of S-PMSI Tunnel and S-PMSI Upstream Assigned Label. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): Creates traffic using MPLS Labels of S-PMSI Tunnel and S-PMSI Upstream Assigned Label. """ return self._get_attribute(self._SDM_ATT_MAP["SPmsiTrafficGroupId"]) @@ -499,7 +499,7 @@ def update( - SPmsiRsvpTunnelCount (number): The total count of the S-PMSI RSVP Tunnel Count. - SPmsiRsvpTunnelId (number): The first Tunnel ID value in the range of Tunnel IDs. - SPmsiRsvpTunnelIdStep (number): Indicates the P2MP ID. This accepts only integer values. - - SPmsiTrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Creates traffic using MPLS Labels of S-PMSI Tunnel and S-PMSI Upstream Assigned Label. + - SPmsiTrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Creates traffic using MPLS Labels of S-PMSI Tunnel and S-PMSI Upstream Assigned Label. - SPmsiTunnelCount (number): Signifies the SPMSI tunnel count - SendTriggeredSourceActiveAdRoute (bool): If true, allows to send the Source Active A-D Route after receiving Source Tree Join C-Multicast route. - SetLeafInformationRequiredBit (bool): his is used to send S-PMSI A-D Route with Leaf Information Required bit Set. @@ -562,7 +562,7 @@ def add( - SPmsiRsvpTunnelCount (number): The total count of the S-PMSI RSVP Tunnel Count. - SPmsiRsvpTunnelId (number): The first Tunnel ID value in the range of Tunnel IDs. - SPmsiRsvpTunnelIdStep (number): Indicates the P2MP ID. This accepts only integer values. - - SPmsiTrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Creates traffic using MPLS Labels of S-PMSI Tunnel and S-PMSI Upstream Assigned Label. + - SPmsiTrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Creates traffic using MPLS Labels of S-PMSI Tunnel and S-PMSI Upstream Assigned Label. - SPmsiTunnelCount (number): Signifies the SPMSI tunnel count - SendTriggeredSourceActiveAdRoute (bool): If true, allows to send the Source Active A-D Route after receiving Source Tree Join C-Multicast route. - SetLeafInformationRequiredBit (bool): his is used to send S-PMSI A-D Route with Leaf Information Required bit Set. @@ -643,7 +643,7 @@ def find( - SPmsiRsvpTunnelCount (number): The total count of the S-PMSI RSVP Tunnel Count. - SPmsiRsvpTunnelId (number): The first Tunnel ID value in the range of Tunnel IDs. - SPmsiRsvpTunnelIdStep (number): Indicates the P2MP ID. This accepts only integer values. - - SPmsiTrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Creates traffic using MPLS Labels of S-PMSI Tunnel and S-PMSI Upstream Assigned Label. + - SPmsiTrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Creates traffic using MPLS Labels of S-PMSI Tunnel and S-PMSI Upstream Assigned Label. - SPmsiTunnelCount (number): Signifies the SPMSI tunnel count - SendTriggeredSourceActiveAdRoute (bool): If true, allows to send the Source Active A-D Route after receiving Source Tree Join C-Multicast route. - SetLeafInformationRequiredBit (bool): his is used to send S-PMSI A-D Route with Leaf Information Required bit Set. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/neighborpair_62767236969162b40f4736b7bf4280eb.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/neighborpair_62767236969162b40f4736b7bf4280eb.py index 0d289acfd..b01edeaca 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/neighborpair_62767236969162b40f4736b7bf4280eb.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/neighborpair_62767236969162b40f4736b7bf4280eb.py @@ -466,7 +466,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -525,7 +525,7 @@ def update( - RefreshReduction (bool): Enables or disables the feature. - RestartTimeInterval (number): This value along with the Recovery Time is advertised in the Hello-packets as part of a Restart-capability object. - SummaryRefreshInterval (number): The interval between summary refresh messages. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Raises ------ @@ -583,7 +583,7 @@ def add( - RefreshReduction (bool): Enables or disables the feature. - RestartTimeInterval (number): This value along with the Recovery Time is advertised in the Hello-packets as part of a Restart-capability object. - SummaryRefreshInterval (number): The interval between summary refresh messages. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- @@ -663,7 +663,7 @@ def find( - RefreshReduction (bool): Enables or disables the feature. - RestartTimeInterval (number): This value along with the Recovery Time is advertised in the Hello-packets as part of a Restart-capability object. - SummaryRefreshInterval (number): The interval between summary refresh messages. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/neighborrange_a1e9ecb177af994ec56d9e054fd677fb.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/neighborrange_a1e9ecb177af994ec56d9e054fd677fb.py index 8b905ee77..741c958f7 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/neighborrange_a1e9ecb177af994ec56d9e054fd677fb.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/neighborrange_a1e9ecb177af994ec56d9e054fd677fb.py @@ -687,7 +687,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range): The interfaces that are associated with the selected interface type. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range): The interfaces that are associated with the selected interface type. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -1097,7 +1097,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -1249,7 +1249,7 @@ def update( - HoldTimer (number): The period of time between KEEP-ALIVE messages sent to the DUT. - InterfaceStartIndex (number): The assigned protocol interface ID for this SM interface. - InterfaceType (str): The type of interface to be selected for this BGP interface. One of:Protocol Interface, DHCP, PPP - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - IpV4Mdt (bool): Enables the use of this Data MDT range on the simulated interface. - IpV4Mpls (bool): If enabled, this BGP router/peer supports the IPv4 MPLS address family. - IpV4MplsVpn (bool): If enabled, this BGP router/peer supports the IPv4 MPLS/VPN address family. @@ -1275,7 +1275,7 @@ def update( - StaggeredStartPeriod (number): Controls the staggering and period of initial start messages. - StaleTime (number): Controls the operation of BGP Graceful Restart. - TcpWindowSize (number): (External neighbor only) The TCP window used for communications from the neighbor. (default = 8,192) - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - TtlValue (number): The limited number of iterations that a unit of data can experience before the data is discarded. - Type (str(internal | external)): Indicates that the neighbor is either an internal or external router. - UpdateInterval (number): The frequency with which UPDATE messages are sent to the DUT. @@ -1370,7 +1370,7 @@ def add( - HoldTimer (number): The period of time between KEEP-ALIVE messages sent to the DUT. - InterfaceStartIndex (number): The assigned protocol interface ID for this SM interface. - InterfaceType (str): The type of interface to be selected for this BGP interface. One of:Protocol Interface, DHCP, PPP - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - IpV4Mdt (bool): Enables the use of this Data MDT range on the simulated interface. - IpV4Mpls (bool): If enabled, this BGP router/peer supports the IPv4 MPLS address family. - IpV4MplsVpn (bool): If enabled, this BGP router/peer supports the IPv4 MPLS/VPN address family. @@ -1396,7 +1396,7 @@ def add( - StaggeredStartPeriod (number): Controls the staggering and period of initial start messages. - StaleTime (number): Controls the operation of BGP Graceful Restart. - TcpWindowSize (number): (External neighbor only) The TCP window used for communications from the neighbor. (default = 8,192) - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - TtlValue (number): The limited number of iterations that a unit of data can experience before the data is discarded. - Type (str(internal | external)): Indicates that the neighbor is either an internal or external router. - UpdateInterval (number): The frequency with which UPDATE messages are sent to the DUT. @@ -1511,7 +1511,7 @@ def find( - HoldTimer (number): The period of time between KEEP-ALIVE messages sent to the DUT. - InterfaceStartIndex (number): The assigned protocol interface ID for this SM interface. - InterfaceType (str): The type of interface to be selected for this BGP interface. One of:Protocol Interface, DHCP, PPP - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - IpV4Mdt (bool): Enables the use of this Data MDT range on the simulated interface. - IpV4Mpls (bool): If enabled, this BGP router/peer supports the IPv4 MPLS address family. - IpV4MplsVpn (bool): If enabled, this BGP router/peer supports the IPv4 MPLS/VPN address family. @@ -1539,7 +1539,7 @@ def find( - StaggeredStartPeriod (number): Controls the staggering and period of initial start messages. - StaleTime (number): Controls the operation of BGP Graceful Restart. - TcpWindowSize (number): (External neighbor only) The TCP window used for communications from the neighbor. (default = 8,192) - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - TtlValue (number): The limited number of iterations that a unit of data can experience before the data is discarded. - Type (str(internal | external)): Indicates that the neighbor is either an internal or external router. - UpdateInterval (number): The frequency with which UPDATE messages are sent to the DUT. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ospfv3_fd46b6ab89f8ad7a237ac12140f8a863.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ospfv3_fd46b6ab89f8ad7a237ac12140f8a863.py index 1aab5298f..62a0d5623 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ospfv3_fd46b6ab89f8ad7a237ac12140f8a863.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/ospfv3_fd46b6ab89f8ad7a237ac12140f8a863.py @@ -173,13 +173,13 @@ def GracefulRouterRestart(self, *args, **kwargs): gracefulRouterRestart(Arg2=list, async_operation=bool)string ------------------------------------------------------------ - - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../router])): NOT DEFINED + - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/ospfV3/router])): NOT DEFINED - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: NOT DEFINED gracefulRouterRestart(Arg2=list, Arg3=number, Arg4=enum, Arg5=number, async_operation=bool)string ------------------------------------------------------------------------------------------------- - - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../router])): NOT DEFINED + - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/ospfV3/router])): NOT DEFINED - Arg3 (number): NOT DEFINED - Arg4 (str(softwareReloadOrUpgrade | softwareRestart | switchToRedundantControlProcessor | unknown)): NOT DEFINED - Arg5 (number): NOT DEFINED diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/querier_caaf4682cc5c2a511c8c68d13991790f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/querier_caaf4682cc5c2a511c8c68d13991790f.py index b32cc4d0c..1cc237440 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/querier_caaf4682cc5c2a511c8c68d13991790f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/querier_caaf4682cc5c2a511c8c68d13991790f.py @@ -152,7 +152,7 @@ def InterfaceId(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The interface associated with the IGMP querier. The interface must be previously configured. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The interface associated with the IGMP querier. The interface must be previously configured. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -197,7 +197,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range): The interfaces that are associated with the selected interface type. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range): The interfaces that are associated with the selected interface type. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -410,10 +410,10 @@ def update( - Enabled (bool): If true, the querier is enabled. - GeneralQueryInterval (number): The amount of time in seconds between IGMP General Query messages sent by the querier. The default query interval is 125 seconds. - GqResponseInterval (number): The maximum amount of time in seconds that the IGMP querier waits to receive a response to a General Query message. The default query response interval is 10000 milliseconds and must be less than the query interval. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The interface associated with the IGMP querier. The interface must be previously configured. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The interface associated with the IGMP querier. The interface must be previously configured. - InterfaceIndex (number): The assigned protocol interface ID for this SM interface. - InterfaceType (str): Indicates the type of network for the interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - RobustnessVariable (number): Defines the subnet vulnerability to lost packets. IGMP can recover from robustness variable minus 1 lost IGMP packets. The robustness variable should be set to a value of 2 or greater. The default robustness variable value is 2. - RouterAlert (bool): If true, sets the Send Router Alert bit in the IP header. - SqResponseInterval (number): The maximum amount of time in seconds that the IGMP querier waits to receive a response to a Specific Query message. The default query response interval is 1000 milliseconds and must be less than the query interval. @@ -459,10 +459,10 @@ def add( - Enabled (bool): If true, the querier is enabled. - GeneralQueryInterval (number): The amount of time in seconds between IGMP General Query messages sent by the querier. The default query interval is 125 seconds. - GqResponseInterval (number): The maximum amount of time in seconds that the IGMP querier waits to receive a response to a General Query message. The default query response interval is 10000 milliseconds and must be less than the query interval. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The interface associated with the IGMP querier. The interface must be previously configured. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The interface associated with the IGMP querier. The interface must be previously configured. - InterfaceIndex (number): The assigned protocol interface ID for this SM interface. - InterfaceType (str): Indicates the type of network for the interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - RobustnessVariable (number): Defines the subnet vulnerability to lost packets. IGMP can recover from robustness variable minus 1 lost IGMP packets. The robustness variable should be set to a value of 2 or greater. The default robustness variable value is 2. - RouterAlert (bool): If true, sets the Send Router Alert bit in the IP header. - SqResponseInterval (number): The maximum amount of time in seconds that the IGMP querier waits to receive a response to a Specific Query message. The default query response interval is 1000 milliseconds and must be less than the query interval. @@ -530,10 +530,10 @@ def find( - Enabled (bool): If true, the querier is enabled. - GeneralQueryInterval (number): The amount of time in seconds between IGMP General Query messages sent by the querier. The default query interval is 125 seconds. - GqResponseInterval (number): The maximum amount of time in seconds that the IGMP querier waits to receive a response to a General Query message. The default query response interval is 10000 milliseconds and must be less than the query interval. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The interface associated with the IGMP querier. The interface must be previously configured. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The interface associated with the IGMP querier. The interface must be previously configured. - InterfaceIndex (number): The assigned protocol interface ID for this SM interface. - InterfaceType (str): Indicates the type of network for the interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - IsQuerier (bool): If true, this IGMP entity is a querier. - IsRefreshComplete (bool): If true, the querier information is current. - QuerierAddress (str): The querier IP address. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/querier_dac8ed773affc99eb47c41c6e99f71c1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/querier_dac8ed773affc99eb47c41c6e99f71c1.py index 8c22c4cbc..864a5b5e2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/querier_dac8ed773affc99eb47c41c6e99f71c1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/querier_dac8ed773affc99eb47c41c6e99f71c1.py @@ -152,7 +152,7 @@ def InterfaceId(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The interface associated with the MLD querier. The interface must be previously configured. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The interface associated with the MLD querier. The interface must be previously configured. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -197,7 +197,7 @@ def Interfaces(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range): The interfaces that are associated with the selected interface type. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range): The interfaces that are associated with the selected interface type. """ return self._get_attribute(self._SDM_ATT_MAP["Interfaces"]) @@ -410,10 +410,10 @@ def update( - Enabled (bool): If true, the querier is enabled. - GeneralQueryInterval (number): The amount of time in seconds between MLD General Query messages sent by the querier. The default query interval is 125 seconds. - GqResponseInterval (number): The maximum amount of time in seconds that the MLD querier waits to receive a response to a General Query message. The default query response interval is 10000 milliseconds and must be less than the query interval. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The interface associated with the MLD querier. The interface must be previously configured. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The interface associated with the MLD querier. The interface must be previously configured. - InterfaceIndex (number): The assigned protocol interface ID for this SM interface. - InterfaceType (str): The type of interface to be selected for this SM interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - RobustnessVariable (number): Defines the subnet vulnerability to lost packets. MLD can recover from robustness variable minus 1 lost MLD packets. The robustness variable should be set to a value of 2 or greater. The default robustness variable value is 2. - RouterAlert (bool): If true, sets the Send Router Alert bit in the IP header. - SqResponseInterval (number): The maximum amount of time in seconds that the MLD querier waits to receive a response to a Specific Query message. The default query response interval is 1000 milliseconds and must be less than the query interval. @@ -459,10 +459,10 @@ def add( - Enabled (bool): If true, the querier is enabled. - GeneralQueryInterval (number): The amount of time in seconds between MLD General Query messages sent by the querier. The default query interval is 125 seconds. - GqResponseInterval (number): The maximum amount of time in seconds that the MLD querier waits to receive a response to a General Query message. The default query response interval is 10000 milliseconds and must be less than the query interval. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The interface associated with the MLD querier. The interface must be previously configured. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The interface associated with the MLD querier. The interface must be previously configured. - InterfaceIndex (number): The assigned protocol interface ID for this SM interface. - InterfaceType (str): The type of interface to be selected for this SM interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - RobustnessVariable (number): Defines the subnet vulnerability to lost packets. MLD can recover from robustness variable minus 1 lost MLD packets. The robustness variable should be set to a value of 2 or greater. The default robustness variable value is 2. - RouterAlert (bool): If true, sets the Send Router Alert bit in the IP header. - SqResponseInterval (number): The maximum amount of time in seconds that the MLD querier waits to receive a response to a Specific Query message. The default query response interval is 1000 milliseconds and must be less than the query interval. @@ -530,10 +530,10 @@ def find( - Enabled (bool): If true, the querier is enabled. - GeneralQueryInterval (number): The amount of time in seconds between MLD General Query messages sent by the querier. The default query interval is 125 seconds. - GqResponseInterval (number): The maximum amount of time in seconds that the MLD querier waits to receive a response to a General Query message. The default query response interval is 10000 milliseconds and must be less than the query interval. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The interface associated with the MLD querier. The interface must be previously configured. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The interface associated with the MLD querier. The interface must be previously configured. - InterfaceIndex (number): The assigned protocol interface ID for this SM interface. - InterfaceType (str): The type of interface to be selected for this SM interface. - - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range | /api/v1/sessions/1/ixnetwork/vport/.../range)): The interfaces that are associated with the selected interface type. + - Interfaces (str(None | /api/v1/sessions/1/ixnetwork/vport/interface | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/atm/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ipEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernetEndpoint/range)): The interfaces that are associated with the selected interface type. - IsQuerier (bool): If true, this MLD entity is a querier. - IsRefreshComplete (bool): If true, the querier information is current. - QuerierAddress (str): The querier IP address. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_06d5f45287e8caa708194cbd2d5fd257.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_06d5f45287e8caa708194cbd2d5fd257.py index 62b676ea5..645389092 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_06d5f45287e8caa708194cbd2d5fd257.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_06d5f45287e8caa708194cbd2d5fd257.py @@ -379,7 +379,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -429,7 +429,7 @@ def update( - K4 (number): Advanced parameter, only used in condition checking for establishing neighbor relationship.The valid range is 0 to 255. (default = 0) - K5 (number): Advanced parameter, only used in condition checking for establishing neighbor relationship.The valid range is 0 to 255. (default = 0) - RouterId (str): This is an IP-formatted string. Its default value is dependent on card/port type. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Raises ------ @@ -478,7 +478,7 @@ def add( - K4 (number): Advanced parameter, only used in condition checking for establishing neighbor relationship.The valid range is 0 to 255. (default = 0) - K5 (number): Advanced parameter, only used in condition checking for establishing neighbor relationship.The valid range is 0 to 255. (default = 0) - RouterId (str): This is an IP-formatted string. Its default value is dependent on card/port type. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- @@ -547,7 +547,7 @@ def find( - K4 (number): Advanced parameter, only used in condition checking for establishing neighbor relationship.The valid range is 0 to 255. (default = 0) - K5 (number): Advanced parameter, only used in condition checking for establishing neighbor relationship.The valid range is 0 to 255. (default = 0) - RouterId (str): This is an IP-formatted string. Its default value is dependent on card/port type. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_1de380bc87f9f87d668830d1dfd3a7f4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_1de380bc87f9f87d668830d1dfd3a7f4.py index 510f6a9cb..fbb44a693 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_1de380bc87f9f87d668830d1dfd3a7f4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_1de380bc87f9f87d668830d1dfd3a7f4.py @@ -134,7 +134,7 @@ def InterfaceId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The ID associated with the simulated interface. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The ID associated with the simulated interface. """ return self._get_attribute(self._SDM_ATT_MAP["InterfaceId"]) @@ -194,7 +194,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -254,11 +254,11 @@ def update( - AuthorizationPassword (str): If enableAuthorization is set, this is the 16-character password to be used. Only simple password authentication is supported. - EnableAuthorization (bool): Indicates whether authorization is included in update messages. - Enabled (bool): Enables or disables the simulated router. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The ID associated with the simulated interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The ID associated with the simulated interface. - ReceiveType (str(receiveVersion1 | receiveVersion2 | receiveVersion1And2)): Filters the RIP version of messages this router will receive. - ResponseMode (str(default | splitHorizon | poisonReverse | splitHorizonSpaceSaver | silent)): Controls the manner in which received routes are repeated back to their source. The modes are split horizon, no split horizon, and split horizon with poison reverse. - SendType (str(multicast | broadcastV1 | broadcastV2)): The method for sending RIP packets. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - UpdateInterval (number): The time, in seconds, between transmitted update messages. - UpdateIntervalOffset (number): A random percentage of the time value, expressed in seconds, is added to or subtracted from the update interval to stagger the transmission of messages. @@ -289,11 +289,11 @@ def add( - AuthorizationPassword (str): If enableAuthorization is set, this is the 16-character password to be used. Only simple password authentication is supported. - EnableAuthorization (bool): Indicates whether authorization is included in update messages. - Enabled (bool): Enables or disables the simulated router. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The ID associated with the simulated interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The ID associated with the simulated interface. - ReceiveType (str(receiveVersion1 | receiveVersion2 | receiveVersion1And2)): Filters the RIP version of messages this router will receive. - ResponseMode (str(default | splitHorizon | poisonReverse | splitHorizonSpaceSaver | silent)): Controls the manner in which received routes are repeated back to their source. The modes are split horizon, no split horizon, and split horizon with poison reverse. - SendType (str(multicast | broadcastV1 | broadcastV2)): The method for sending RIP packets. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - UpdateInterval (number): The time, in seconds, between transmitted update messages. - UpdateIntervalOffset (number): A random percentage of the time value, expressed in seconds, is added to or subtracted from the update interval to stagger the transmission of messages. @@ -342,11 +342,11 @@ def find( - AuthorizationPassword (str): If enableAuthorization is set, this is the 16-character password to be used. Only simple password authentication is supported. - EnableAuthorization (bool): Indicates whether authorization is included in update messages. - Enabled (bool): Enables or disables the simulated router. - - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The ID associated with the simulated interface. + - InterfaceId (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The ID associated with the simulated interface. - ReceiveType (str(receiveVersion1 | receiveVersion2 | receiveVersion1And2)): Filters the RIP version of messages this router will receive. - ResponseMode (str(default | splitHorizon | poisonReverse | splitHorizonSpaceSaver | silent)): Controls the manner in which received routes are repeated back to their source. The modes are split horizon, no split horizon, and split horizon with poison reverse. - SendType (str(multicast | broadcastV1 | broadcastV2)): The method for sending RIP packets. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - UpdateInterval (number): The time, in seconds, between transmitted update messages. - UpdateIntervalOffset (number): A random percentage of the time value, expressed in seconds, is added to or subtracted from the update interval to stagger the transmission of messages. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_320e1c5c099823f4ba100b7eaf8bb8d9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_320e1c5c099823f4ba100b7eaf8bb8d9.py index 994eec3ef..549825336 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_320e1c5c099823f4ba100b7eaf8bb8d9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_320e1c5c099823f4ba100b7eaf8bb8d9.py @@ -1276,7 +1276,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -1408,7 +1408,7 @@ def update( - SystemId (str): The neighbor's system ID. - TeEnable (bool): Enables traffic engineering (TE) on this emulated ISIS router. - TeRouterId (str): The ID of the simulated router, expressed as an IP address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. Raises ------ @@ -1539,7 +1539,7 @@ def add( - SystemId (str): The neighbor's system ID. - TeEnable (bool): Enables traffic engineering (TE) on this emulated ISIS router. - TeRouterId (str): The ID of the simulated router, expressed as an IP address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. Returns ------- @@ -1688,7 +1688,7 @@ def find( - SystemId (str): The neighbor's system ID. - TeEnable (bool): Enables traffic engineering (TE) on this emulated ISIS router. - TeRouterId (str): The ID of the simulated router, expressed as an IP address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Contains the object reference to a traffic group identifier as configured with the trafficGroup object. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_47de08a5e549c3a3ba83f5006b81e108.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_47de08a5e549c3a3ba83f5006b81e108.py index b4140c6e5..24bc23f57 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_47de08a5e549c3a3ba83f5006b81e108.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_47de08a5e549c3a3ba83f5006b81e108.py @@ -410,7 +410,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -458,7 +458,7 @@ def update( - LsaRetransmitTime (number): Indicates the time in seconds after which OSPF retransmits LSA if LS Acknowledgement is not received - MaxNumLsaPerSecond (number): Limits the number of LSAs that will be sent per second. - RouterId (str): Used to set the ID of the router, expressed as an IPv4 address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. Raises ------ @@ -505,7 +505,7 @@ def add( - LsaRetransmitTime (number): Indicates the time in seconds after which OSPF retransmits LSA if LS Acknowledgement is not received - MaxNumLsaPerSecond (number): Limits the number of LSAs that will be sent per second. - RouterId (str): Used to set the ID of the router, expressed as an IPv4 address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- @@ -572,7 +572,7 @@ def find( - LsaRetransmitTime (number): Indicates the time in seconds after which OSPF retransmits LSA if LS Acknowledgement is not received - MaxNumLsaPerSecond (number): Limits the number of LSAs that will be sent per second. - RouterId (str): Used to set the ID of the router, expressed as an IPv4 address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_8fefbefd4c6343cce300aae644040cd2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_8fefbefd4c6343cce300aae644040cd2.py index 3df5ffdca..59b48a64e 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_8fefbefd4c6343cce300aae644040cd2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_8fefbefd4c6343cce300aae644040cd2.py @@ -133,7 +133,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -150,7 +150,7 @@ def update(self, Enabled=None, RouterId=None, TrafficGroupId=None): ---- - Enabled (bool): Enables or disables the simulated router. - RouterId (str): The ID of the simulated router, expressed as an IP address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Raises ------ @@ -166,7 +166,7 @@ def add(self, Enabled=None, RouterId=None, TrafficGroupId=None): ---- - Enabled (bool): Enables or disables the simulated router. - RouterId (str): The ID of the simulated router, expressed as an IP address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- @@ -207,7 +207,7 @@ def find( - Enabled (bool): Enables or disables the simulated router. - IsLearnedInfoRefreshed (bool): When true, indicates that the BFD router learned information is current. - RouterId (str): The ID of the simulated router, expressed as an IP address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_904e72c6fa0992bd72a34758e59774b5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_904e72c6fa0992bd72a34758e59774b5.py index bc3bc3391..24b988893 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_904e72c6fa0992bd72a34758e59774b5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_904e72c6fa0992bd72a34758e59774b5.py @@ -200,7 +200,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -234,7 +234,7 @@ def update( - JoinPruneInterval (number): The interval between transmitted Join/Prune messages. - RouterId (str): The ID of the router, in IPv4 format. - RpDiscoveryMode (str(manual | auto)): Sets the discovery mode of the router. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. Raises ------ @@ -267,7 +267,7 @@ def add( - JoinPruneInterval (number): The interval between transmitted Join/Prune messages. - RouterId (str): The ID of the router, in IPv4 format. - RpDiscoveryMode (str(manual | auto)): Sets the discovery mode of the router. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- @@ -318,7 +318,7 @@ def find( - JoinPruneInterval (number): The interval between transmitted Join/Prune messages. - RouterId (str): The ID of the router, in IPv4 format. - RpDiscoveryMode (str(manual | auto)): Sets the discovery mode of the router. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated router is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_94a4088a967c8e82566ebb7145e052d9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_94a4088a967c8e82566ebb7145e052d9.py index dee0e8af0..cabb01c53 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_94a4088a967c8e82566ebb7145e052d9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_94a4088a967c8e82566ebb7145e052d9.py @@ -447,7 +447,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -462,7 +462,7 @@ def TransportAddress(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): The string interface description for the transport address. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): The string interface description for the transport address. """ return self._get_attribute(self._SDM_ATT_MAP["TransportAddress"]) @@ -525,8 +525,8 @@ def update( - ReconnectTime (number): This Fault Tolerant (FT) Reconnect Timer value is advertised in the FT Session TLV in the Initialization message sent by a neighbor LSR. It is a request sent by an LSR to its neighbor(s) in the event that the receiving neighbor detects that the LDP session has failed, the receiver should maintain MPLS forwarding state and wait for the sender to perform a restart of the control plane and LDP protocol. If the value = 0, the sender is indicating that it will not preserve its MPLS forwarding state across the restart. - RecoveryTime (number): The restarting LSR is advertising the amount of time that it will retain its MPLS forwarding state. This time period begins when it sends the restart Initialization message, with the FT session TLV, to the neighbor LSRs (to re-establish the LDP session). This timer allows the neighbors some time to resync the LSPs in an orderly manner. If the value = 0, it means that the restarting LSR was not able to preserve the MPLS forwarding state. - RouterId (str): The ID of the simulated router, expressed as an IP address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - - TransportAddress (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The string interface description for the transport address. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TransportAddress (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The string interface description for the transport address. - UseTransportAddress (bool): The boolean value for the transport address. Raises @@ -574,8 +574,8 @@ def add( - ReconnectTime (number): This Fault Tolerant (FT) Reconnect Timer value is advertised in the FT Session TLV in the Initialization message sent by a neighbor LSR. It is a request sent by an LSR to its neighbor(s) in the event that the receiving neighbor detects that the LDP session has failed, the receiver should maintain MPLS forwarding state and wait for the sender to perform a restart of the control plane and LDP protocol. If the value = 0, the sender is indicating that it will not preserve its MPLS forwarding state across the restart. - RecoveryTime (number): The restarting LSR is advertising the amount of time that it will retain its MPLS forwarding state. This time period begins when it sends the restart Initialization message, with the FT session TLV, to the neighbor LSRs (to re-establish the LDP session). This timer allows the neighbors some time to resync the LSPs in an orderly manner. If the value = 0, it means that the restarting LSR was not able to preserve the MPLS forwarding state. - RouterId (str): The ID of the simulated router, expressed as an IP address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - - TransportAddress (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The string interface description for the transport address. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TransportAddress (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The string interface description for the transport address. - UseTransportAddress (bool): The boolean value for the transport address. Returns @@ -643,8 +643,8 @@ def find( - ReconnectTime (number): This Fault Tolerant (FT) Reconnect Timer value is advertised in the FT Session TLV in the Initialization message sent by a neighbor LSR. It is a request sent by an LSR to its neighbor(s) in the event that the receiving neighbor detects that the LDP session has failed, the receiver should maintain MPLS forwarding state and wait for the sender to perform a restart of the control plane and LDP protocol. If the value = 0, the sender is indicating that it will not preserve its MPLS forwarding state across the restart. - RecoveryTime (number): The restarting LSR is advertising the amount of time that it will retain its MPLS forwarding state. This time period begins when it sends the restart Initialization message, with the FT session TLV, to the neighbor LSRs (to re-establish the LDP session). This timer allows the neighbors some time to resync the LSPs in an orderly manner. If the value = 0, it means that the restarting LSR was not able to preserve the MPLS forwarding state. - RouterId (str): The ID of the simulated router, expressed as an IP address. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - - TransportAddress (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): The string interface description for the transport address. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TransportAddress (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): The string interface description for the transport address. - UseTransportAddress (bool): The boolean value for the transport address. Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_9fb44ce233d434122d4b7a7809f68cfb.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_9fb44ce233d434122d4b7a7809f68cfb.py index 5b314d203..49834f30d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_9fb44ce233d434122d4b7a7809f68cfb.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_9fb44ce233d434122d4b7a7809f68cfb.py @@ -158,7 +158,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -216,7 +216,7 @@ def update( - Enabled (bool): Enables the RIPing interface. - ReceiveType (str(ignore | store)): Determines how the emulated RIPng router will handle received RIPng update messages. - RouterId (number): The assigned router ID. The default is 1. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - UpdateInterval (number): In seconds) Triggered events, such as sending of unsolicited response messages, are spaced at timed intervals. - UpdateIntervalOffset (number): (In seconds) To avoid synchronization of the update messages sent by all routers, the update interval is incremented/decremented by a small random time. @@ -245,7 +245,7 @@ def add( - Enabled (bool): Enables the RIPing interface. - ReceiveType (str(ignore | store)): Determines how the emulated RIPng router will handle received RIPng update messages. - RouterId (number): The assigned router ID. The default is 1. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - UpdateInterval (number): In seconds) Triggered events, such as sending of unsolicited response messages, are spaced at timed intervals. - UpdateIntervalOffset (number): (In seconds) To avoid synchronization of the update messages sent by all routers, the update interval is incremented/decremented by a small random time. @@ -292,7 +292,7 @@ def find( - Enabled (bool): Enables the RIPing interface. - ReceiveType (str(ignore | store)): Determines how the emulated RIPng router will handle received RIPng update messages. - RouterId (number): The assigned router ID. The default is 1. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this port is assigned, for the purpose of creating traffic streams among source/destination members of the group. - UpdateInterval (number): In seconds) Triggered events, such as sending of unsolicited response messages, are spaced at timed intervals. - UpdateIntervalOffset (number): (In seconds) To avoid synchronization of the update messages sent by all routers, the update interval is incremented/decremented by a small random time. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_c3aa6e3585f79ff16c2e8ca6eaa4194c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_c3aa6e3585f79ff16c2e8ca6eaa4194c.py index 2ff6bc25e..ab692aaf0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_c3aa6e3585f79ff16c2e8ca6eaa4194c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/router_c3aa6e3585f79ff16c2e8ca6eaa4194c.py @@ -370,7 +370,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -420,7 +420,7 @@ def update( - SupportReasonSoftRestart (bool): If enabled, Graceful Restart Helper Mode will be supported on this emulated OSPFv2 Router when the restart reason is an OSPFv2 software restart (on the restarting router). (Planned or unplanned outage) The default is checked/enabled. - SupportReasonSwotchRedundantCntrlProcessor (bool): If enabled, Graceful Restart Helper Mode will be supported on this emulated OSPFv2 Router when the restart reason is a unplanned switchover to a redundant control processor on the restarting router. (Unplanned outage) - SupportReasonUnknown (bool): If enabled, Graceful Restart Helper Mode will be supported on this emulated OSPFv2 Router when the restart reason is unknown and unplanned. (Unplanned outage) The default is enabled. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. Raises ------ @@ -469,7 +469,7 @@ def add( - SupportReasonSoftRestart (bool): If enabled, Graceful Restart Helper Mode will be supported on this emulated OSPFv2 Router when the restart reason is an OSPFv2 software restart (on the restarting router). (Planned or unplanned outage) The default is checked/enabled. - SupportReasonSwotchRedundantCntrlProcessor (bool): If enabled, Graceful Restart Helper Mode will be supported on this emulated OSPFv2 Router when the restart reason is a unplanned switchover to a redundant control processor on the restarting router. (Unplanned outage) - SupportReasonUnknown (bool): If enabled, Graceful Restart Helper Mode will be supported on this emulated OSPFv2 Router when the restart reason is unknown and unplanned. (Unplanned outage) The default is enabled. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- @@ -536,7 +536,7 @@ def find( - SupportReasonSoftRestart (bool): If enabled, Graceful Restart Helper Mode will be supported on this emulated OSPFv2 Router when the restart reason is an OSPFv2 software restart (on the restarting router). (Planned or unplanned outage) The default is checked/enabled. - SupportReasonSwotchRedundantCntrlProcessor (bool): If enabled, Graceful Restart Helper Mode will be supported on this emulated OSPFv2 Router when the restart reason is a unplanned switchover to a redundant control processor on the restarting router. (Unplanned outage) - SupportReasonUnknown (bool): If enabled, Graceful Restart Helper Mode will be supported on this emulated OSPFv2 Router when the restart reason is unknown and unplanned. (Unplanned outage) The default is enabled. - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): The name of the group to which this emulated OSPF router is assigned, for the purpose of creating traffic streams among source/destination members of the group. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/switchhostrangelearnedinfotriggerattributes_970cca4f196b63ea57bce8499441fe35.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/switchhostrangelearnedinfotriggerattributes_970cca4f196b63ea57bce8499441fe35.py index da03a9365..f6a20f88b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/switchhostrangelearnedinfotriggerattributes_970cca4f196b63ea57bce8499441fe35.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/switchhostrangelearnedinfotriggerattributes_970cca4f196b63ea57bce8499441fe35.py @@ -160,7 +160,7 @@ def DestinationHostList(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../switchHostRanges]): NOT DEFINED + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch/switchPorts/switchHostRanges]): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["DestinationHostList"]) @@ -265,7 +265,7 @@ def SourceHostList(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../switchHostRanges]): NOT DEFINED + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch/switchPorts/switchHostRanges]): NOT DEFINED """ return self._get_attribute(self._SDM_ATT_MAP["SourceHostList"]) @@ -302,14 +302,14 @@ def update( - DestinationCustomIpv4AddressStep (str): NOT DEFINED - DestinationCustomMacAddress (str): NOT DEFINED - DestinationCustomMacAddressStep (str): NOT DEFINED - - DestinationHostList (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../switchHostRanges])): NOT DEFINED + - DestinationHostList (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch/switchPorts/switchHostRanges])): NOT DEFINED - MeshingType (str(fullyMesh)): NOT DEFINED - PacketType (str(arp | ping | custom)): NOT DEFINED - PeriodIntervalInMs (number): NOT DEFINED - Periodic (bool): NOT DEFINED - PeriodicIterationNumber (number): NOT DEFINED - ResponseTimeout (number): NOT DEFINED - - SourceHostList (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../switchHostRanges])): NOT DEFINED + - SourceHostList (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch/switchPorts/switchHostRanges])): NOT DEFINED Raises ------ @@ -349,14 +349,14 @@ def find( - DestinationCustomIpv4AddressStep (str): NOT DEFINED - DestinationCustomMacAddress (str): NOT DEFINED - DestinationCustomMacAddressStep (str): NOT DEFINED - - DestinationHostList (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../switchHostRanges])): NOT DEFINED + - DestinationHostList (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch/switchPorts/switchHostRanges])): NOT DEFINED - MeshingType (str(fullyMesh)): NOT DEFINED - PacketType (str(arp | ping | custom)): NOT DEFINED - PeriodIntervalInMs (number): NOT DEFINED - Periodic (bool): NOT DEFINED - PeriodicIterationNumber (number): NOT DEFINED - ResponseTimeout (number): NOT DEFINED - - SourceHostList (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../switchHostRanges])): NOT DEFINED + - SourceHostList (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch/switchPorts/switchHostRanges])): NOT DEFINED Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/switchports_36812c90cd3ff6dbd9d1924ef8c47114.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/switchports_36812c90cd3ff6dbd9d1924ef8c47114.py index bf390e30e..75ba9ed14 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/switchports_36812c90cd3ff6dbd9d1924ef8c47114.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/switchports_36812c90cd3ff6dbd9d1924ef8c47114.py @@ -358,7 +358,7 @@ def RemoteSwitch(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../switch): Specifies the internal remote Switch to which this port is connected + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch): Specifies the internal remote Switch to which this port is connected """ return self._get_attribute(self._SDM_ATT_MAP["RemoteSwitch"]) @@ -373,7 +373,7 @@ def RemoteSwitchPort(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../switchPorts): Specifies the switchPort (of the internal remote switch) to which this switch port is connected + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch/switchPorts): Specifies the switchPort (of the internal remote switch) to which this switch port is connected """ return self._get_attribute(self._SDM_ATT_MAP["RemoteSwitchPort"]) @@ -426,8 +426,8 @@ def update( - PortLivenessSupport (bool): If selected, port liveness is supported in its port state. A port is considered live when it is not down or when its link is not down. - PortName (str): The description of the port. For an assigned port, the format is - (Chassis name) (card no.): (port no.) - (type). For an unassigned port configuration, the format is - (Port type) Port 00x. - PortNumber (str): Specify the port number for this OpenFlow Channel. The OpenFlow pipeline receives and sends packets on ports. - - RemoteSwitch (str(None | /api/v1/sessions/1/ixnetwork/vport/.../switch)): Specifies the internal remote Switch to which this port is connected - - RemoteSwitchPort (str(None | /api/v1/sessions/1/ixnetwork/vport/.../switchPorts)): Specifies the switchPort (of the internal remote switch) to which this switch port is connected + - RemoteSwitch (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch)): Specifies the internal remote Switch to which this port is connected + - RemoteSwitchPort (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch/switchPorts)): Specifies the switchPort (of the internal remote switch) to which this switch port is connected - TransmissionDelay (number): Specifies the time required in transmitting packets through link Raises @@ -465,8 +465,8 @@ def add( - PortLivenessSupport (bool): If selected, port liveness is supported in its port state. A port is considered live when it is not down or when its link is not down. - PortName (str): The description of the port. For an assigned port, the format is - (Chassis name) (card no.): (port no.) - (type). For an unassigned port configuration, the format is - (Port type) Port 00x. - PortNumber (str): Specify the port number for this OpenFlow Channel. The OpenFlow pipeline receives and sends packets on ports. - - RemoteSwitch (str(None | /api/v1/sessions/1/ixnetwork/vport/.../switch)): Specifies the internal remote Switch to which this port is connected - - RemoteSwitchPort (str(None | /api/v1/sessions/1/ixnetwork/vport/.../switchPorts)): Specifies the switchPort (of the internal remote switch) to which this switch port is connected + - RemoteSwitch (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch)): Specifies the internal remote Switch to which this port is connected + - RemoteSwitchPort (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch/switchPorts)): Specifies the switchPort (of the internal remote switch) to which this switch port is connected - TransmissionDelay (number): Specifies the time required in transmitting packets through link Returns @@ -522,8 +522,8 @@ def find( - PortLivenessSupport (bool): If selected, port liveness is supported in its port state. A port is considered live when it is not down or when its link is not down. - PortName (str): The description of the port. For an assigned port, the format is - (Chassis name) (card no.): (port no.) - (type). For an unassigned port configuration, the format is - (Port type) Port 00x. - PortNumber (str): Specify the port number for this OpenFlow Channel. The OpenFlow pipeline receives and sends packets on ports. - - RemoteSwitch (str(None | /api/v1/sessions/1/ixnetwork/vport/.../switch)): Specifies the internal remote Switch to which this port is connected - - RemoteSwitchPort (str(None | /api/v1/sessions/1/ixnetwork/vport/.../switchPorts)): Specifies the switchPort (of the internal remote switch) to which this switch port is connected + - RemoteSwitch (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch)): Specifies the internal remote Switch to which this port is connected + - RemoteSwitchPort (str(None | /api/v1/sessions/1/ixnetwork/vport/protocols/openFlow/device/interface/switch/switchPorts)): Specifies the switchPort (of the internal remote switch) to which this switch port is connected - TransmissionDelay (number): Specifies the time required in transmitting packets through link Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/trafficendpoint_3120038095a42c08bd61e91959198aa0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/trafficendpoint_3120038095a42c08bd61e91959198aa0.py index 3d29de3c7..67839b1e9 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/trafficendpoint_3120038095a42c08bd61e91959198aa0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/trafficendpoint_3120038095a42c08bd61e91959198aa0.py @@ -741,7 +741,7 @@ def ProtocolInterface(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): Specifies the name of the protocol interface being used for this OpenFlow configuration. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): Specifies the name of the protocol interface being used for this OpenFlow configuration. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -955,7 +955,7 @@ def update( - PbbSourceMac (str): Specifies the B-Source MAC. - PbbVlanId (str): Specifies the B-VLAN ID. - PbbVlanPcp (str): Specifies the B-VLAN priority. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): Specifies the name of the protocol interface being used for this OpenFlow configuration. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Specifies the name of the protocol interface being used for this OpenFlow configuration. - RangeSize (number): Specifies the size of the traffic range. - SourcePort (str): Specifies the transport source port. This attribute is of range kind and can take wildcard as input. It is composed of sub-attributes like, startValue, stepValue, repeatCount, wrapCount, and incrementMode. - UdpDestination (str): Value of the UDP destination field. @@ -1070,7 +1070,7 @@ def add( - PbbSourceMac (str): Specifies the B-Source MAC. - PbbVlanId (str): Specifies the B-VLAN ID. - PbbVlanPcp (str): Specifies the B-VLAN priority. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): Specifies the name of the protocol interface being used for this OpenFlow configuration. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Specifies the name of the protocol interface being used for this OpenFlow configuration. - RangeSize (number): Specifies the size of the traffic range. - SourcePort (str): Specifies the transport source port. This attribute is of range kind and can take wildcard as input. It is composed of sub-attributes like, startValue, stepValue, repeatCount, wrapCount, and incrementMode. - UdpDestination (str): Value of the UDP destination field. @@ -1203,7 +1203,7 @@ def find( - PbbSourceMac (str): Specifies the B-Source MAC. - PbbVlanId (str): Specifies the B-VLAN ID. - PbbVlanPcp (str): Specifies the B-VLAN priority. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): Specifies the name of the protocol interface being used for this OpenFlow configuration. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): Specifies the name of the protocol interface being used for this OpenFlow configuration. - RangeSize (number): Specifies the size of the traffic range. - SourcePort (str): Specifies the transport source port. This attribute is of range kind and can take wildcard as input. It is composed of sub-attributes like, startValue, stepValue, repeatCount, wrapCount, and incrementMode. - UdpDestination (str): Value of the UDP destination field. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/trafficgroupid_9b5892cccfe90f8c60d2b9f6abbb5413.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/trafficgroupid_9b5892cccfe90f8c60d2b9f6abbb5413.py index 9570370df..6db5b7f45 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/trafficgroupid_9b5892cccfe90f8c60d2b9f6abbb5413.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/trafficgroupid_9b5892cccfe90f8c60d2b9f6abbb5413.py @@ -50,7 +50,7 @@ def TrafficGroupId(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup): + - str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup): """ return self._get_attribute(self._SDM_ATT_MAP["TrafficGroupId"]) @@ -65,7 +65,7 @@ def update(self, TrafficGroupId=None): Args ---- - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Raises ------ @@ -79,7 +79,7 @@ def add(self, TrafficGroupId=None): Args ---- - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Returns ------- @@ -111,7 +111,7 @@ def find(self, TrafficGroupId=None): Args ---- - - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/.../trafficGroup)): + - TrafficGroupId (str(None | /api/v1/sessions/1/ixnetwork/traffic/trafficGroup)): Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/uni_75948729cf97d051826356cd2337a53d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/uni_75948729cf97d051826356cd2337a53d.py index 0f4f2c52b..0d82ef756 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/uni_75948729cf97d051826356cd2337a53d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocols/uni_75948729cf97d051826356cd2337a53d.py @@ -349,7 +349,7 @@ def ProtocolInterface(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface): It signifies the configured protocol interface. User has to select one interface to enable configuring UNI. Until and unless protocol interface is selected user will not be able to configure and enable UNI. Default is unassigned. + - str(None | /api/v1/sessions/1/ixnetwork/vport/interface): It signifies the configured protocol interface. User has to select one interface to enable configuring UNI. Until and unless protocol interface is selected user will not be able to configure and enable UNI. Default is unassigned. """ return self._get_attribute(self._SDM_ATT_MAP["ProtocolInterface"]) @@ -451,7 +451,7 @@ def update( - PollingCounter (number): It signifies the full status (status of UNI and all EVCs) polling count. Range is 1- 65k. Default is 360. This is applicable only for UNI-C. - PollingTimer (number): The range is 5-30 in seconds. Default is 10 seconds. This is applicable only for UNI-C. - PollingVerificationTimer (number): This is applicable only for UNI-N. Range is 5-30 secs. Default is 15 seconds. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): It signifies the configured protocol interface. User has to select one interface to enable configuring UNI. Until and unless protocol interface is selected user will not be able to configure and enable UNI. Default is unassigned. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): It signifies the configured protocol interface. User has to select one interface to enable configuring UNI. Until and unless protocol interface is selected user will not be able to configure and enable UNI. Default is unassigned. - ProtocolVersion (number): This one-octet field indicates the version supported by the sending entity (UNI-C or UNI-N). Default value is ox1. Max 255, Min - 1. - ReceiveSequenceNumber (number): This one-octet field indicates the sequence number to be sent in the 'Receive Sequence Number' in transmitted packet. It will be configurable only if Override Receive Sequence Number is enabled. Default value of this field is 0. Max 255, Min - 0 Change of value in this field takes effect when protocol is running. - SendSequenceNumber (number): This one-octet field indicates the sequence number to be sent in the 'Send Sequence Number' field in transmitted packet. It will be configurable only if Override Send Sequence Number is enabled. Default value of this field is 0. Max 255, Min - 0 Change of value in this field takes effect when protocol is running. @@ -496,7 +496,7 @@ def add( - PollingCounter (number): It signifies the full status (status of UNI and all EVCs) polling count. Range is 1- 65k. Default is 360. This is applicable only for UNI-C. - PollingTimer (number): The range is 5-30 in seconds. Default is 10 seconds. This is applicable only for UNI-C. - PollingVerificationTimer (number): This is applicable only for UNI-N. Range is 5-30 secs. Default is 15 seconds. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): It signifies the configured protocol interface. User has to select one interface to enable configuring UNI. Until and unless protocol interface is selected user will not be able to configure and enable UNI. Default is unassigned. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): It signifies the configured protocol interface. User has to select one interface to enable configuring UNI. Until and unless protocol interface is selected user will not be able to configure and enable UNI. Default is unassigned. - ProtocolVersion (number): This one-octet field indicates the version supported by the sending entity (UNI-C or UNI-N). Default value is ox1. Max 255, Min - 1. - ReceiveSequenceNumber (number): This one-octet field indicates the sequence number to be sent in the 'Receive Sequence Number' in transmitted packet. It will be configurable only if Override Receive Sequence Number is enabled. Default value of this field is 0. Max 255, Min - 0 Change of value in this field takes effect when protocol is running. - SendSequenceNumber (number): This one-octet field indicates the sequence number to be sent in the 'Send Sequence Number' field in transmitted packet. It will be configurable only if Override Send Sequence Number is enabled. Default value of this field is 0. Max 255, Min - 0 Change of value in this field takes effect when protocol is running. @@ -565,7 +565,7 @@ def find( - PollingCounter (number): It signifies the full status (status of UNI and all EVCs) polling count. Range is 1- 65k. Default is 360. This is applicable only for UNI-C. - PollingTimer (number): The range is 5-30 in seconds. Default is 10 seconds. This is applicable only for UNI-C. - PollingVerificationTimer (number): This is applicable only for UNI-N. Range is 5-30 secs. Default is 15 seconds. - - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/.../interface)): It signifies the configured protocol interface. User has to select one interface to enable configuring UNI. Until and unless protocol interface is selected user will not be able to configure and enable UNI. Default is unassigned. + - ProtocolInterface (str(None | /api/v1/sessions/1/ixnetwork/vport/interface)): It signifies the configured protocol interface. User has to select one interface to enable configuring UNI. Until and unless protocol interface is selected user will not be able to configure and enable UNI. Default is unassigned. - ProtocolVersion (number): This one-octet field indicates the version supported by the sending entity (UNI-C or UNI-N). Default value is ox1. Max 255, Min - 1. - ReceiveSequenceNumber (number): This one-octet field indicates the sequence number to be sent in the 'Receive Sequence Number' in transmitted packet. It will be configurable only if Override Receive Sequence Number is enabled. Default value of this field is 0. Max 255, Min - 0 Change of value in this field takes effect when protocol is running. - SendSequenceNumber (number): This one-octet field indicates the sequence number to be sent in the 'Send Sequence Number' field in transmitted packet. It will be configurable only if Override Send Sequence Number is enabled. Default value of this field is 0. Max 255, Min - 0 Change of value in this field takes effect when protocol is running. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpoptions_9729e8bd162874e29097793e120e81b6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpoptions_9729e8bd162874e29097793e120e81b6.py index 7a9ad52f9..ad5cef94d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpoptions_9729e8bd162874e29097793e120e81b6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpoptions_9729e8bd162874e29097793e120e81b6.py @@ -61,7 +61,7 @@ def Associates(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. """ return self._get_attribute(self._SDM_ATT_MAP["Associates"]) @@ -249,7 +249,7 @@ def update( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxOutstandingReleases (number): This is the point at which requests will be restricted. Interfaces are torn down at the configured speed until there are this number of requests in disconnecting stage, at which point additional interfaces are torn down only when others get fully disconnected. - MaxOutstandingRequests (number): This is the point at which interface setup will be restricted. Interfaces are setup at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - OverrideGlobalSetupRate (bool): If true then all the rate settings defined at Session levelwill be overriden by rate settings defined on this PortGroup. @@ -286,7 +286,7 @@ def add( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxOutstandingReleases (number): This is the point at which requests will be restricted. Interfaces are torn down at the configured speed until there are this number of requests in disconnecting stage, at which point additional interfaces are torn down only when others get fully disconnected. - MaxOutstandingRequests (number): This is the point at which interface setup will be restricted. Interfaces are setup at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - OverrideGlobalSetupRate (bool): If true then all the rate settings defined at Session levelwill be overriden by rate settings defined on this PortGroup. @@ -342,7 +342,7 @@ def find( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxOutstandingReleases (number): This is the point at which requests will be restricted. Interfaces are torn down at the configured speed until there are this number of requests in disconnecting stage, at which point additional interfaces are torn down only when others get fully disconnected. - MaxOutstandingRequests (number): This is the point at which interface setup will be restricted. Interfaces are setup at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcprange_814e9c4639f671b070315798f1e6e76b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcprange_814e9c4639f671b070315798f1e6e76b.py index 16148f05c..eafca795a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcprange_814e9c4639f671b070315798f1e6e76b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcprange_814e9c4639f671b070315798f1e6e76b.py @@ -118,7 +118,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -343,7 +343,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/dhcpEndpoint/range/dhcpRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -608,7 +608,7 @@ def RelayOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet): The DHCP relay options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet): The DHCP relay options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["RelayOptionSet"]) @@ -930,7 +930,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet)): The DHCP client options associated with this range. - Count (number): The number of DHCP clients to be created by this range. - Dhcp4Broadcast (bool): If enabled, ask the server or relay agent to use the broadcast IP address in the replies. - Dhcp4ParamRequestList (str): The Option Request option is used to identify a list of optionsin a message between a client and a server.Multiple options can be specified in a semicolon separated list. @@ -945,7 +945,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from whichthe addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available serverto extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/dhcpEndpoint/range/dhcpRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of optionsin a message between a client and a server.Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -962,7 +962,7 @@ def update( - RelayGateway (str): The gateway address used for all relay agents. - RelayHostsPerCircuitId (number): Number of consecutive hosts with the same Circuit ID. - RelayHostsPerRemoteId (number): Number of consecutive hosts with the same Remote ID. - - RelayOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): The DHCP relay options associated with this range. + - RelayOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet)): The DHCP relay options associated with this range. - RelayOverrideVlanSettings (bool): If true then we enable overriding of VLAN settings through relayFirstVlanId, relayVlanCount and relayVlanIncrement. - RelayRemoteId (str): This option is added by relay agents that terminate switched or permanent circuitsand have mechanisms to identify the remote host end of the circuit.The string can contain a sequence of values represented in form of [StartValue-EndValue].Examples: Decimals [11-22], Hexadecimals [0x00-0xFF], Characters [AA-ZZ]. - RelaySubnet (number): The network mask used for all relay agents. @@ -1050,7 +1050,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet)): The DHCP client options associated with this range. - Count (number): The number of DHCP clients to be created by this range. - Dhcp4Broadcast (bool): If enabled, ask the server or relay agent to use the broadcast IP address in the replies. - Dhcp4ParamRequestList (str): The Option Request option is used to identify a list of optionsin a message between a client and a server.Multiple options can be specified in a semicolon separated list. @@ -1065,7 +1065,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from whichthe addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available serverto extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/dhcpEndpoint/range/dhcpRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of optionsin a message between a client and a server.Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -1083,7 +1083,7 @@ def find( - RelayGateway (str): The gateway address used for all relay agents. - RelayHostsPerCircuitId (number): Number of consecutive hosts with the same Circuit ID. - RelayHostsPerRemoteId (number): Number of consecutive hosts with the same Remote ID. - - RelayOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): The DHCP relay options associated with this range. + - RelayOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet)): The DHCP relay options associated with this range. - RelayOverrideVlanSettings (bool): If true then we enable overriding of VLAN settings through relayFirstVlanId, relayVlanCount and relayVlanIncrement. - RelayRemoteId (str): This option is added by relay agents that terminate switched or permanent circuitsand have mechanisms to identify the remote host end of the circuit.The string can contain a sequence of values represented in form of [StartValue-EndValue].Examples: Decimals [11-22], Hexadecimals [0x00-0xFF], Characters [AA-ZZ]. - RelaySubnet (number): The network mask used for all relay agents. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcprange_fff472dbb315731730800527d4e1e2b1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcprange_fff472dbb315731730800527d4e1e2b1.py index d5e69e897..625ebeb45 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcprange_fff472dbb315731730800527d4e1e2b1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcprange_fff472dbb315731730800527d4e1e2b1.py @@ -118,7 +118,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -343,7 +343,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range/dhcpRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -608,7 +608,7 @@ def RelayOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet): The DHCP relay options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet): The DHCP relay options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["RelayOptionSet"]) @@ -930,7 +930,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet)): The DHCP client options associated with this range. - Count (number): The number of DHCP clients to be created by this range. - Dhcp4Broadcast (bool): If enabled, ask the server or relay agent to use the broadcast IP address in the replies. - Dhcp4ParamRequestList (str): The Option Request option is used to identify a list of optionsin a message between a client and a server.Multiple options can be specified in a semicolon separated list. @@ -945,7 +945,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from whichthe addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available serverto extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range/dhcpRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of optionsin a message between a client and a server.Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -962,7 +962,7 @@ def update( - RelayGateway (str): The gateway address used for all relay agents. - RelayHostsPerCircuitId (number): Number of consecutive hosts with the same Circuit ID. - RelayHostsPerRemoteId (number): Number of consecutive hosts with the same Remote ID. - - RelayOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): The DHCP relay options associated with this range. + - RelayOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet)): The DHCP relay options associated with this range. - RelayOverrideVlanSettings (bool): If true then we enable overriding of VLAN settings through relayFirstVlanId, relayVlanCount and relayVlanIncrement. - RelayRemoteId (str): This option is added by relay agents that terminate switched or permanent circuitsand have mechanisms to identify the remote host end of the circuit.The string can contain a sequence of values represented in form of [StartValue-EndValue].Examples: Decimals [11-22], Hexadecimals [0x00-0xFF], Characters [AA-ZZ]. - RelaySubnet (number): The network mask used for all relay agents. @@ -1050,7 +1050,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet)): The DHCP client options associated with this range. - Count (number): The number of DHCP clients to be created by this range. - Dhcp4Broadcast (bool): If enabled, ask the server or relay agent to use the broadcast IP address in the replies. - Dhcp4ParamRequestList (str): The Option Request option is used to identify a list of optionsin a message between a client and a server.Multiple options can be specified in a semicolon separated list. @@ -1065,7 +1065,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from whichthe addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available serverto extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/dhcpEndpoint/range/dhcpRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of optionsin a message between a client and a server.Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -1083,7 +1083,7 @@ def find( - RelayGateway (str): The gateway address used for all relay agents. - RelayHostsPerCircuitId (number): Number of consecutive hosts with the same Circuit ID. - RelayHostsPerRemoteId (number): Number of consecutive hosts with the same Remote ID. - - RelayOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): The DHCP relay options associated with this range. + - RelayOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpGlobals/dhcpOptionSet)): The DHCP relay options associated with this range. - RelayOverrideVlanSettings (bool): If true then we enable overriding of VLAN settings through relayFirstVlanId, relayVlanCount and relayVlanIncrement. - RelayRemoteId (str): This option is added by relay agents that terminate switched or permanent circuitsand have mechanisms to identify the remote host end of the circuit.The string can contain a sequence of values represented in form of [StartValue-EndValue].Examples: Decimals [11-22], Hexadecimals [0x00-0xFF], Characters [AA-ZZ]. - RelaySubnet (number): The network mask used for all relay agents. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6clientoptions_132f5e3e6310e86ccbbac482ccd94671.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6clientoptions_132f5e3e6310e86ccbbac482ccd94671.py index f8550e4de..5d8cfd376 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6clientoptions_132f5e3e6310e86ccbbac482ccd94671.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6clientoptions_132f5e3e6310e86ccbbac482ccd94671.py @@ -56,7 +56,7 @@ def Associates(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. """ return self._get_attribute(self._SDM_ATT_MAP["Associates"]) @@ -164,7 +164,7 @@ def update( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxOutstandingRequests (number): This is the point at which requests will be restricted. Requests are sent at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - OverrideGlobalSetupRate (bool): If true then all the rate settings defined at Session levelwill be overriden by rate settings defined on this PortGroup. - SetupRateIncrement (number): This value represents the increment value for setup rate.This value is applied every second and can be negative. @@ -191,7 +191,7 @@ def add( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxOutstandingRequests (number): This is the point at which requests will be restricted. Requests are sent at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - OverrideGlobalSetupRate (bool): If true then all the rate settings defined at Session levelwill be overriden by rate settings defined on this PortGroup. - SetupRateIncrement (number): This value represents the increment value for setup rate.This value is applied every second and can be negative. @@ -237,7 +237,7 @@ def find( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxOutstandingRequests (number): This is the point at which requests will be restricted. Requests are sent at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - ObjectId (str): Unique identifier for this object - OverrideGlobalSetupRate (bool): If true then all the rate settings defined at Session levelwill be overriden by rate settings defined on this PortGroup. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientoptions_bd222f1628f075889e823bc4a6e1f541.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientoptions_bd222f1628f075889e823bc4a6e1f541.py index f8a78e2c5..14a90a574 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientoptions_bd222f1628f075889e823bc4a6e1f541.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientoptions_bd222f1628f075889e823bc4a6e1f541.py @@ -61,7 +61,7 @@ def Associates(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. """ return self._get_attribute(self._SDM_ATT_MAP["Associates"]) @@ -249,7 +249,7 @@ def update( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxOutstandingReleases (number): This is the point at which requests will be restricted. Requests are sent at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - MaxOutstandingRequests (number): This is the point at which requests will be restricted. Requests are sent at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - OverrideGlobalSetupRate (bool): If true then all the rate settings defined at Session levelwill be overriden by rate settings defined on this PortGroup. @@ -286,7 +286,7 @@ def add( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxOutstandingReleases (number): This is the point at which requests will be restricted. Requests are sent at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - MaxOutstandingRequests (number): This is the point at which requests will be restricted. Requests are sent at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - OverrideGlobalSetupRate (bool): If true then all the rate settings defined at Session levelwill be overriden by rate settings defined on this PortGroup. @@ -342,7 +342,7 @@ def find( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxOutstandingReleases (number): This is the point at which requests will be restricted. Requests are sent at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - MaxOutstandingRequests (number): This is the point at which requests will be restricted. Requests are sent at the configured speed until there are this number of requests in progress, at which point new requests are only added when others are completed. - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_0990e65c10ad0d9786aa12afebdb6f71.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_0990e65c10ad0d9786aa12afebdb6f71.py index dbd75b515..9b861ca36 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_0990e65c10ad0d9786aa12afebdb6f71.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_0990e65c10ad0d9786aa12afebdb6f71.py @@ -69,7 +69,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -219,7 +219,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range/dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -385,7 +385,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -395,7 +395,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -438,7 +438,7 @@ def add( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -448,7 +448,7 @@ def add( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -510,7 +510,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -520,7 +520,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppoxEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_178731f12a5435abce85806535a5d479.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_178731f12a5435abce85806535a5d479.py index dbd75b515..91219bd52 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_178731f12a5435abce85806535a5d479.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_178731f12a5435abce85806535a5d479.py @@ -69,7 +69,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -219,7 +219,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tp/dhcpoLnsEndpoint/range/dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -385,7 +385,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -395,7 +395,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tp/dhcpoLnsEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -438,7 +438,7 @@ def add( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -448,7 +448,7 @@ def add( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tp/dhcpoLnsEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -510,7 +510,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -520,7 +520,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tp/dhcpoLnsEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_1ea0dbdae0b8444cbd2c3f69d865dc4a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_1ea0dbdae0b8444cbd2c3f69d865dc4a.py index dbd75b515..05e64d7bb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_1ea0dbdae0b8444cbd2c3f69d865dc4a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_1ea0dbdae0b8444cbd2c3f69d865dc4a.py @@ -69,7 +69,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -219,7 +219,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tp/dhcpoLnsEndpoint/range/dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -385,7 +385,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -395,7 +395,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tp/dhcpoLnsEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -438,7 +438,7 @@ def add( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -448,7 +448,7 @@ def add( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tp/dhcpoLnsEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -510,7 +510,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -520,7 +520,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tp/dhcpoLnsEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_25e2d695236241ba01ced05adbc95e97.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_25e2d695236241ba01ced05adbc95e97.py index dbd75b515..696a4249f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_25e2d695236241ba01ced05adbc95e97.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_25e2d695236241ba01ced05adbc95e97.py @@ -69,7 +69,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -219,7 +219,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tpEndpoint/range/dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -385,7 +385,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -395,7 +395,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tpEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -438,7 +438,7 @@ def add( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -448,7 +448,7 @@ def add( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tpEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -510,7 +510,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -520,7 +520,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tpEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_27f6bcb9f21d0974c2f46e2db411aed8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_27f6bcb9f21d0974c2f46e2db411aed8.py index dbd75b515..b22f4865f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_27f6bcb9f21d0974c2f46e2db411aed8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_27f6bcb9f21d0974c2f46e2db411aed8.py @@ -69,7 +69,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -219,7 +219,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tp/dhcpoLacEndpoint/range/dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -385,7 +385,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -395,7 +395,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tp/dhcpoLacEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -438,7 +438,7 @@ def add( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -448,7 +448,7 @@ def add( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tp/dhcpoLacEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -510,7 +510,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -520,7 +520,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/emulatedRouter/ip/l2tp/dhcpoLacEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_900d6f78357742dfc6aca640710b4738.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_900d6f78357742dfc6aca640710b4738.py index dbd75b515..60d73da45 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_900d6f78357742dfc6aca640710b4738.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_900d6f78357742dfc6aca640710b4738.py @@ -69,7 +69,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -219,7 +219,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tp/dhcpoLacEndpoint/range/dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -385,7 +385,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -395,7 +395,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tp/dhcpoLacEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -438,7 +438,7 @@ def add( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -448,7 +448,7 @@ def add( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tp/dhcpoLacEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -510,7 +510,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -520,7 +520,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tp/dhcpoLacEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_954c74042876c55e6bdc01f7690df7b1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_954c74042876c55e6bdc01f7690df7b1.py index dbd75b515..41821c8b2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_954c74042876c55e6bdc01f7690df7b1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_954c74042876c55e6bdc01f7690df7b1.py @@ -69,7 +69,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -219,7 +219,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range/dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -385,7 +385,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -395,7 +395,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -438,7 +438,7 @@ def add( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -448,7 +448,7 @@ def add( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -510,7 +510,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -520,7 +520,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/l2tpEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_b2ceb005721603697257df774863af91.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_b2ceb005721603697257df774863af91.py index dbd75b515..07a26b466 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_b2ceb005721603697257df774863af91.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_b2ceb005721603697257df774863af91.py @@ -69,7 +69,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -219,7 +219,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppox/dhcpoPppServerEndpoint/range/dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -385,7 +385,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -395,7 +395,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppox/dhcpoPppServerEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -438,7 +438,7 @@ def add( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -448,7 +448,7 @@ def add( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppox/dhcpoPppServerEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -510,7 +510,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -520,7 +520,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppox/dhcpoPppServerEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_e0352bf9938da3adc4efb13d397664f1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_e0352bf9938da3adc4efb13d397664f1.py index dbd75b515..ba9b1fb51 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_e0352bf9938da3adc4efb13d397664f1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dhcpv6pdclientrange_e0352bf9938da3adc4efb13d397664f1.py @@ -69,7 +69,7 @@ def ClientOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet): The DHCP client options associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet): The DHCP client options associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ClientOptionSet"]) @@ -219,7 +219,7 @@ def Dhcp6MasterRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppox/dhcpoPppClientEndpoint/range/dhcpv6PdClientRange): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. """ return self._get_attribute(self._SDM_ATT_MAP["Dhcp6MasterRange"]) @@ -385,7 +385,7 @@ def update( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -395,7 +395,7 @@ def update( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppox/dhcpoPppClientEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -438,7 +438,7 @@ def add( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -448,7 +448,7 @@ def add( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppox/dhcpoPppClientEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. @@ -510,7 +510,7 @@ def find( Args ---- - - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpv6PdOptionSet)): The DHCP client options associated with this range. + - ClientOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dhcpv6PdClientGlobals/dhcpv6PdOptionSet)): The DHCP client options associated with this range. - Dhcp6DuidEnterpriseId (number): The enterprise-number is the vendor's registeredPrivate Enterprise Number as maintained by IANA. - Dhcp6DuidType (str): DHCP Unique Identifier Type. - Dhcp6DuidVendorId (number): The vendor-assigned unique ID for this range.This ID is incremented automaticaly for each DHCP client. @@ -520,7 +520,7 @@ def find( - Dhcp6IaT1 (number): The suggested time at which the client contacts the server from which the addresses were obtained to extend the lifetimes of the addresses assigned. - Dhcp6IaT2 (number): The suggested time at which the client contacts any available server to extend the lifetimes of the addresses assigned. - Dhcp6IaType (str): Identity Association Type. - - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. + - Dhcp6MasterRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/pppox/dhcpoPppClientEndpoint/range/dhcpv6PdClientRange)): The DHCP-PD range whose negotiated prefix will be used by this range to configure its addresses. - Dhcp6ParamRequestList (str): The Option Request option is used to identify a list of options in a message between a client and a server. Multiple options can be specified in a semicolon separated list. - Enabled (bool): Disabled ranges won't be configured nor validated. - IpType (str): Defines the version of IP address style to be used for describing the range. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_0abc774b13abfe52478567e307225851.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_0abc774b13abfe52478567e307225851.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_0abc774b13abfe52478567e307225851.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_0abc774b13abfe52478567e307225851.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_0cabd375a60423aea8a933838a756d8f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_0cabd375a60423aea8a933838a756d8f.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_0cabd375a60423aea8a933838a756d8f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_0cabd375a60423aea8a933838a756d8f.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_10a55379a7ab5b6c45876e08a693553f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_10a55379a7ab5b6c45876e08a693553f.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_10a55379a7ab5b6c45876e08a693553f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_10a55379a7ab5b6c45876e08a693553f.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_1c99d3165a2c508542948df5f29416d0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_1c99d3165a2c508542948df5f29416d0.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_1c99d3165a2c508542948df5f29416d0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_1c99d3165a2c508542948df5f29416d0.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_3f250d014feea4f5f7253a2b31dd17b2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_3f250d014feea4f5f7253a2b31dd17b2.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_3f250d014feea4f5f7253a2b31dd17b2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_3f250d014feea4f5f7253a2b31dd17b2.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_427b4e88ed542fa7b6dbf9aad2b6687b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_427b4e88ed542fa7b6dbf9aad2b6687b.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_427b4e88ed542fa7b6dbf9aad2b6687b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_427b4e88ed542fa7b6dbf9aad2b6687b.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_47cde65c12bc27549421a752288986f2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_47cde65c12bc27549421a752288986f2.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_47cde65c12bc27549421a752288986f2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_47cde65c12bc27549421a752288986f2.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_47eb99c8686b32d8e7d8995089fe3c0e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_47eb99c8686b32d8e7d8995089fe3c0e.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_47eb99c8686b32d8e7d8995089fe3c0e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_47eb99c8686b32d8e7d8995089fe3c0e.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_4bd4c26048b085cd1b90638643ff1a68.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_4bd4c26048b085cd1b90638643ff1a68.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_4bd4c26048b085cd1b90638643ff1a68.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_4bd4c26048b085cd1b90638643ff1a68.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_514e9bb903ccd37819882a81a7c51c7c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_514e9bb903ccd37819882a81a7c51c7c.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_514e9bb903ccd37819882a81a7c51c7c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_514e9bb903ccd37819882a81a7c51c7c.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_57e54dd45a3cfe7cee7f938cf0e8831e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_57e54dd45a3cfe7cee7f938cf0e8831e.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_57e54dd45a3cfe7cee7f938cf0e8831e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_57e54dd45a3cfe7cee7f938cf0e8831e.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_598939950e8bede509f8ee652f5d7f9c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_598939950e8bede509f8ee652f5d7f9c.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_598939950e8bede509f8ee652f5d7f9c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_598939950e8bede509f8ee652f5d7f9c.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_682976c6326e34be9f9449006999e86f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_682976c6326e34be9f9449006999e86f.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_682976c6326e34be9f9449006999e86f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_682976c6326e34be9f9449006999e86f.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7730b15c0b7dc5e906b6dd790539ea87.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7730b15c0b7dc5e906b6dd790539ea87.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7730b15c0b7dc5e906b6dd790539ea87.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7730b15c0b7dc5e906b6dd790539ea87.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7b4924c6fa90f063e3e64e4e4d25c814.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7b4924c6fa90f063e3e64e4e4d25c814.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7b4924c6fa90f063e3e64e4e4d25c814.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7b4924c6fa90f063e3e64e4e4d25c814.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7d51735877f6f40e8e22e8003c1066cc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7d51735877f6f40e8e22e8003c1066cc.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7d51735877f6f40e8e22e8003c1066cc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_7d51735877f6f40e8e22e8003c1066cc.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_860511559331766f8c7de32f07e03c76.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_860511559331766f8c7de32f07e03c76.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_860511559331766f8c7de32f07e03c76.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_860511559331766f8c7de32f07e03c76.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_90d7dde1956f718a653befe0fe9e37d8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_90d7dde1956f718a653befe0fe9e37d8.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_90d7dde1956f718a653befe0fe9e37d8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_90d7dde1956f718a653befe0fe9e37d8.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_9d93800659991ecd0718356349feeb3f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_9d93800659991ecd0718356349feeb3f.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_9d93800659991ecd0718356349feeb3f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_9d93800659991ecd0718356349feeb3f.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_9da5123d76f9c8d35a0cc1f099568822.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_9da5123d76f9c8d35a0cc1f099568822.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_9da5123d76f9c8d35a0cc1f099568822.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_9da5123d76f9c8d35a0cc1f099568822.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_a3dafcd46ed1fa61f77fa5f37a34d9b2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_a3dafcd46ed1fa61f77fa5f37a34d9b2.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_a3dafcd46ed1fa61f77fa5f37a34d9b2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_a3dafcd46ed1fa61f77fa5f37a34d9b2.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_a4f86447bf19b69d5fa19367ae5c8ff8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_a4f86447bf19b69d5fa19367ae5c8ff8.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_a4f86447bf19b69d5fa19367ae5c8ff8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_a4f86447bf19b69d5fa19367ae5c8ff8.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_b0460df4b44043e9336403aeb3de7f4b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_b0460df4b44043e9336403aeb3de7f4b.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_b0460df4b44043e9336403aeb3de7f4b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_b0460df4b44043e9336403aeb3de7f4b.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_baa2114767a0f0b53b62b84b6392e6ad.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_baa2114767a0f0b53b62b84b6392e6ad.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_baa2114767a0f0b53b62b84b6392e6ad.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_baa2114767a0f0b53b62b84b6392e6ad.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_cba7489febe6e8bfa3afbdcba7b09cac.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_cba7489febe6e8bfa3afbdcba7b09cac.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_cba7489febe6e8bfa3afbdcba7b09cac.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_cba7489febe6e8bfa3afbdcba7b09cac.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_d1df6926cf1767cf7902e865e51c4b05.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_d1df6926cf1767cf7902e865e51c4b05.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_d1df6926cf1767cf7902e865e51c4b05.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_d1df6926cf1767cf7902e865e51c4b05.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_db3ae9ec11f1db5c2cbb7dd6eca9fe2e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_db3ae9ec11f1db5c2cbb7dd6eca9fe2e.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_db3ae9ec11f1db5c2cbb7dd6eca9fe2e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_db3ae9ec11f1db5c2cbb7dd6eca9fe2e.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_db91f816a2054efcce410ed7df5e0e4f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_db91f816a2054efcce410ed7df5e0e4f.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_db91f816a2054efcce410ed7df5e0e4f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_db91f816a2054efcce410ed7df5e0e4f.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_e6098341fa86db6c5a8066d7be3e76ad.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_e6098341fa86db6c5a8066d7be3e76ad.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_e6098341fa86db6c5a8066d7be3e76ad.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_e6098341fa86db6c5a8066d7be3e76ad.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_e8e70cb8c05a001fac220dcff47ad5a6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_e8e70cb8c05a001fac220dcff47ad5a6.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_e8e70cb8c05a001fac220dcff47ad5a6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_e8e70cb8c05a001fac220dcff47ad5a6.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_ec31e038eeb02ede32adf4f088056247.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_ec31e038eeb02ede32adf4f088056247.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_ec31e038eeb02ede32adf4f088056247.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_ec31e038eeb02ede32adf4f088056247.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_ee92d706e79f6a357376024c861cd0d3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_ee92d706e79f6a357376024c861cd0d3.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_ee92d706e79f6a357376024c861cd0d3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_ee92d706e79f6a357376024c861cd0d3.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_f3abd2c3f4ff8a1ed4cab9db681d3fba.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_f3abd2c3f4ff8a1ed4cab9db681d3fba.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_f3abd2c3f4ff8a1ed4cab9db681d3fba.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_f3abd2c3f4ff8a1ed4cab9db681d3fba.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_fcaeb95344e2481402e47dd1ecdce7a3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_fcaeb95344e2481402e47dd1ecdce7a3.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_fcaeb95344e2481402e47dd1ecdce7a3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_fcaeb95344e2481402e47dd1ecdce7a3.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_fe2d1eadfec6527dae4377792d9f3cdc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_fe2d1eadfec6527dae4377792d9f3cdc.py index 7119af289..7e6c0d330 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_fe2d1eadfec6527dae4377792d9f3cdc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dot1xrange_fe2d1eadfec6527dae4377792d9f3cdc.py @@ -168,7 +168,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -290,7 +290,7 @@ def update( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -331,7 +331,7 @@ def add( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - UserName (str): The UserName used to authentificate the port. @@ -391,7 +391,7 @@ def find( - HostAuthMode (str): Machine Authentification Method. - HostName (str): The MachineName used to authentificate the port. - HostPassword (str): The MachinePassword used to authentificate the port. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/dot1xGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_081b694fd9ffdec0ee2b453426ee8ca7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_081b694fd9ffdec0ee2b453426ee8ca7.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_081b694fd9ffdec0ee2b453426ee8ca7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_081b694fd9ffdec0ee2b453426ee8ca7.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_0f362d03bbc7a8b4a0c98fc2d749d061.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_0f362d03bbc7a8b4a0c98fc2d749d061.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_0f362d03bbc7a8b4a0c98fc2d749d061.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_0f362d03bbc7a8b4a0c98fc2d749d061.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_18a6531ad95c8df78634713387e0dd71.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_18a6531ad95c8df78634713387e0dd71.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_18a6531ad95c8df78634713387e0dd71.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_18a6531ad95c8df78634713387e0dd71.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_1ccb4195fefdbd0d8a2ea6b9eea0d988.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_1ccb4195fefdbd0d8a2ea6b9eea0d988.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_1ccb4195fefdbd0d8a2ea6b9eea0d988.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_1ccb4195fefdbd0d8a2ea6b9eea0d988.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_209e135cdefe058d454c2df6822c1c39.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_209e135cdefe058d454c2df6822c1c39.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_209e135cdefe058d454c2df6822c1c39.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_209e135cdefe058d454c2df6822c1c39.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_22184312b3aaea53543e4c7953ff7768.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_22184312b3aaea53543e4c7953ff7768.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_22184312b3aaea53543e4c7953ff7768.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_22184312b3aaea53543e4c7953ff7768.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_2de79aedb07c62d668fcacae319a3f57.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_2de79aedb07c62d668fcacae319a3f57.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_2de79aedb07c62d668fcacae319a3f57.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_2de79aedb07c62d668fcacae319a3f57.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_3b2f1d4bc378e65c09f6c4921076c7ae.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_3b2f1d4bc378e65c09f6c4921076c7ae.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_3b2f1d4bc378e65c09f6c4921076c7ae.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_3b2f1d4bc378e65c09f6c4921076c7ae.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5c84440f2433e97c4fc686718d048df6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5c84440f2433e97c4fc686718d048df6.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5c84440f2433e97c4fc686718d048df6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5c84440f2433e97c4fc686718d048df6.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5cdb8e305339b2c6b54737f032645c0d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5cdb8e305339b2c6b54737f032645c0d.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5cdb8e305339b2c6b54737f032645c0d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5cdb8e305339b2c6b54737f032645c0d.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5fa1ff76e02d676e11a579ec69078da5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5fa1ff76e02d676e11a579ec69078da5.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5fa1ff76e02d676e11a579ec69078da5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_5fa1ff76e02d676e11a579ec69078da5.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_6a2d1e43842f5e004937adea1eb37d9b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_6a2d1e43842f5e004937adea1eb37d9b.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_6a2d1e43842f5e004937adea1eb37d9b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_6a2d1e43842f5e004937adea1eb37d9b.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_70c8362d9f59a00a3a8b5d1ea680bc4f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_70c8362d9f59a00a3a8b5d1ea680bc4f.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_70c8362d9f59a00a3a8b5d1ea680bc4f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_70c8362d9f59a00a3a8b5d1ea680bc4f.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_751b1f3462fee9c237d449c6614ba5b5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_751b1f3462fee9c237d449c6614ba5b5.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_751b1f3462fee9c237d449c6614ba5b5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_751b1f3462fee9c237d449c6614ba5b5.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_7ac2994dc9c6f61d4fe75028266ff9ab.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_7ac2994dc9c6f61d4fe75028266ff9ab.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_7ac2994dc9c6f61d4fe75028266ff9ab.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_7ac2994dc9c6f61d4fe75028266ff9ab.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_84cd9d979466f90a3c1dfde16f3bb287.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_84cd9d979466f90a3c1dfde16f3bb287.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_84cd9d979466f90a3c1dfde16f3bb287.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_84cd9d979466f90a3c1dfde16f3bb287.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_a3a6293dd3bd7340c8481d2b8da4c7ee.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_a3a6293dd3bd7340c8481d2b8da4c7ee.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_a3a6293dd3bd7340c8481d2b8da4c7ee.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_a3a6293dd3bd7340c8481d2b8da4c7ee.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_aa793c3adb9138ff454449cfafedbfd9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_aa793c3adb9138ff454449cfafedbfd9.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_aa793c3adb9138ff454449cfafedbfd9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_aa793c3adb9138ff454449cfafedbfd9.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_ba1111f1019f4e3aca24f2e09791f90b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_ba1111f1019f4e3aca24f2e09791f90b.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_ba1111f1019f4e3aca24f2e09791f90b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_ba1111f1019f4e3aca24f2e09791f90b.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_bad3237ac2c2098165a911b51e092728.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_bad3237ac2c2098165a911b51e092728.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_bad3237ac2c2098165a911b51e092728.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_bad3237ac2c2098165a911b51e092728.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_d29c138ee2c4cf63a20fe1db93fbf8f5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_d29c138ee2c4cf63a20fe1db93fbf8f5.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_d29c138ee2c4cf63a20fe1db93fbf8f5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_d29c138ee2c4cf63a20fe1db93fbf8f5.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_e641da9189b9bd544522d42075fd2994.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_e641da9189b9bd544522d42075fd2994.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_e641da9189b9bd544522d42075fd2994.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_e641da9189b9bd544522d42075fd2994.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_ecc5a1894965a6c42dc68f64e9ee7ad4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_ecc5a1894965a6c42dc68f64e9ee7ad4.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_ecc5a1894965a6c42dc68f64e9ee7ad4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_ecc5a1894965a6c42dc68f64e9ee7ad4.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f127dea5ee9cf35f3cf9f4c6c5a2eef7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f127dea5ee9cf35f3cf9f4c6c5a2eef7.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f127dea5ee9cf35f3cf9f4c6c5a2eef7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f127dea5ee9cf35f3cf9f4c6c5a2eef7.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f5794596740be89a324fa7b8af2ce712.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f5794596740be89a324fa7b8af2ce712.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f5794596740be89a324fa7b8af2ce712.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f5794596740be89a324fa7b8af2ce712.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f8e639bf0f5f8274e31394dbcf82275a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f8e639bf0f5f8274e31394dbcf82275a.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f8e639bf0f5f8274e31394dbcf82275a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_f8e639bf0f5f8274e31394dbcf82275a.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_fd0f62b00a70f777fc76aa5209876d28.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_fd0f62b00a70f777fc76aa5209876d28.py index f153cc7e3..1ffe9d62b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_fd0f62b00a70f777fc76aa5209876d28.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslprofileallocationtable_fd0f62b00a70f777fc76aa5209876d28.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_06e538ede4f238f66b42f332521d478c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_06e538ede4f238f66b42f332521d478c.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_06e538ede4f238f66b42f332521d478c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_06e538ede4f238f66b42f332521d478c.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_17cbce1ddd23fcf248900dcffab8877f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_17cbce1ddd23fcf248900dcffab8877f.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_17cbce1ddd23fcf248900dcffab8877f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_17cbce1ddd23fcf248900dcffab8877f.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_234d227511ca47d37a4f71bcd32f27ce.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_234d227511ca47d37a4f71bcd32f27ce.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_234d227511ca47d37a4f71bcd32f27ce.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_234d227511ca47d37a4f71bcd32f27ce.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_2422dd194f7ace56899954196bcfe108.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_2422dd194f7ace56899954196bcfe108.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_2422dd194f7ace56899954196bcfe108.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_2422dd194f7ace56899954196bcfe108.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_291089196041e94c1ab2dac78165323c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_291089196041e94c1ab2dac78165323c.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_291089196041e94c1ab2dac78165323c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_291089196041e94c1ab2dac78165323c.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_3e5f3b9c3e283073cf1a2a2fd74acc73.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_3e5f3b9c3e283073cf1a2a2fd74acc73.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_3e5f3b9c3e283073cf1a2a2fd74acc73.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_3e5f3b9c3e283073cf1a2a2fd74acc73.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_4e4f26de7a1d00f43d5baaf566372f57.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_4e4f26de7a1d00f43d5baaf566372f57.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_4e4f26de7a1d00f43d5baaf566372f57.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_4e4f26de7a1d00f43d5baaf566372f57.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_711b4eff39a714fbb504ffadcbbf6d70.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_711b4eff39a714fbb504ffadcbbf6d70.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_711b4eff39a714fbb504ffadcbbf6d70.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_711b4eff39a714fbb504ffadcbbf6d70.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_85de6167018c7931d5b24a1066d962ea.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_85de6167018c7931d5b24a1066d962ea.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_85de6167018c7931d5b24a1066d962ea.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_85de6167018c7931d5b24a1066d962ea.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_8d7b4a4d739014dc345ba9a04b84ca95.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_8d7b4a4d739014dc345ba9a04b84ca95.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_8d7b4a4d739014dc345ba9a04b84ca95.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_8d7b4a4d739014dc345ba9a04b84ca95.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_8ff4a35abd87e43197f72ce78834aa00.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_8ff4a35abd87e43197f72ce78834aa00.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_8ff4a35abd87e43197f72ce78834aa00.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_8ff4a35abd87e43197f72ce78834aa00.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_963b32c0ea4119d85aa0d3875a4dbc8b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_963b32c0ea4119d85aa0d3875a4dbc8b.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_963b32c0ea4119d85aa0d3875a4dbc8b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_963b32c0ea4119d85aa0d3875a4dbc8b.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_972664e60464653771efcfa190322dd4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_972664e60464653771efcfa190322dd4.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_972664e60464653771efcfa190322dd4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_972664e60464653771efcfa190322dd4.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_99054d89e9a79e4856b4210489a7f573.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_99054d89e9a79e4856b4210489a7f573.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_99054d89e9a79e4856b4210489a7f573.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_99054d89e9a79e4856b4210489a7f573.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_a7cf9c54e7333a02945820f2c1fe9e22.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_a7cf9c54e7333a02945820f2c1fe9e22.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_a7cf9c54e7333a02945820f2c1fe9e22.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_a7cf9c54e7333a02945820f2c1fe9e22.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_b244e751fe4955c4b6e21913f7bf074a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_b244e751fe4955c4b6e21913f7bf074a.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_b244e751fe4955c4b6e21913f7bf074a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_b244e751fe4955c4b6e21913f7bf074a.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_b8b9609f2a937a7cacc860a5febe5590.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_b8b9609f2a937a7cacc860a5febe5590.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_b8b9609f2a937a7cacc860a5febe5590.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_b8b9609f2a937a7cacc860a5febe5590.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_c7de551d3216499f9c75176c015f8d13.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_c7de551d3216499f9c75176c015f8d13.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_c7de551d3216499f9c75176c015f8d13.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_c7de551d3216499f9c75176c015f8d13.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_cf103ecdb7b7d0da36e742e174d3d62c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_cf103ecdb7b7d0da36e742e174d3d62c.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_cf103ecdb7b7d0da36e742e174d3d62c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_cf103ecdb7b7d0da36e742e174d3d62c.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_d1b35b0ddbf91fbc103973ed9cef97b4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_d1b35b0ddbf91fbc103973ed9cef97b4.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_d1b35b0ddbf91fbc103973ed9cef97b4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_d1b35b0ddbf91fbc103973ed9cef97b4.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_da8c3d1f3991c361cfc28cb0a3946020.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_da8c3d1f3991c361cfc28cb0a3946020.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_da8c3d1f3991c361cfc28cb0a3946020.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_da8c3d1f3991c361cfc28cb0a3946020.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_db936329edaca5c7528548f7d8362859.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_db936329edaca5c7528548f7d8362859.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_db936329edaca5c7528548f7d8362859.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_db936329edaca5c7528548f7d8362859.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_e0d31b96f46834584d718c29a5057020.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_e0d31b96f46834584d718c29a5057020.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_e0d31b96f46834584d718c29a5057020.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_e0d31b96f46834584d718c29a5057020.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_e84fe32c361c2c736b5bd2f1a6d3c33f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_e84fe32c361c2c736b5bd2f1a6d3c33f.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_e84fe32c361c2c736b5bd2f1a6d3c33f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_e84fe32c361c2c736b5bd2f1a6d3c33f.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_eb1d33168fcbcda09f3a2e5553726339.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_eb1d33168fcbcda09f3a2e5553726339.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_eb1d33168fcbcda09f3a2e5553726339.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_eb1d33168fcbcda09f3a2e5553726339.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_f2498ff92961b8c972bb199c27cf1d55.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_f2498ff92961b8c972bb199c27cf1d55.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_f2498ff92961b8c972bb199c27cf1d55.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_f2498ff92961b8c972bb199c27cf1d55.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_f4c6e76d99591587fec5727cc4b6ddc7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_f4c6e76d99591587fec5727cc4b6ddc7.py index 84dc5d06f..70fd9f9ff 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_f4c6e76d99591587fec5727cc4b6ddc7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dslresyncprofileallocationtable_f4c6e76d99591587fec5727cc4b6ddc7.py @@ -52,7 +52,7 @@ def DslProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile): The DSL profile. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile): The DSL profile. """ return self._get_attribute(self._SDM_ATT_MAP["DslProfile"]) @@ -92,7 +92,7 @@ def update(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Raises @@ -107,7 +107,7 @@ def add(self, DslProfile=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - Percentage (number): Percentage of this profile. Returns @@ -140,7 +140,7 @@ def find(self, DslProfile=None, ObjectId=None, Percentage=None): Args ---- - - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../ancpDslResyncProfile)): The DSL profile. + - DslProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/ancpGlobals/ancpDslResyncProfile)): The DSL profile. - ObjectId (str): Unique identifier for this object - Percentage (number): Percentage of this profile. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_09eae87211d97bb586c755841bb7160e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_09eae87211d97bb586c755841bb7160e.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_09eae87211d97bb586c755841bb7160e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_09eae87211d97bb586c755841bb7160e.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_12a597351720b11a61859b7edc1056df.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_12a597351720b11a61859b7edc1056df.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_12a597351720b11a61859b7edc1056df.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_12a597351720b11a61859b7edc1056df.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_1a3b04b3452a923717a133004983298e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_1a3b04b3452a923717a133004983298e.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_1a3b04b3452a923717a133004983298e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_1a3b04b3452a923717a133004983298e.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_34e4cd3f68b00d0ce37bc0b24bf6dfbc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_34e4cd3f68b00d0ce37bc0b24bf6dfbc.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_34e4cd3f68b00d0ce37bc0b24bf6dfbc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_34e4cd3f68b00d0ce37bc0b24bf6dfbc.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4bb99114a906c718e66a5cc178841430.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4bb99114a906c718e66a5cc178841430.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4bb99114a906c718e66a5cc178841430.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4bb99114a906c718e66a5cc178841430.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4bd539ef8489bf0b03fe32c5e3d1534c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4bd539ef8489bf0b03fe32c5e3d1534c.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4bd539ef8489bf0b03fe32c5e3d1534c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4bd539ef8489bf0b03fe32c5e3d1534c.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4d269930156fdc3706761dd51fba6e8c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4d269930156fdc3706761dd51fba6e8c.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4d269930156fdc3706761dd51fba6e8c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_4d269930156fdc3706761dd51fba6e8c.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_815a4266938cdcc0bf387841eb604eb7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_815a4266938cdcc0bf387841eb604eb7.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_815a4266938cdcc0bf387841eb604eb7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_815a4266938cdcc0bf387841eb604eb7.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_8a06cadbbd3796a2f869b7367109b8ec.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_8a06cadbbd3796a2f869b7367109b8ec.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_8a06cadbbd3796a2f869b7367109b8ec.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_8a06cadbbd3796a2f869b7367109b8ec.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_8dc0c9aa1d21b5e95d62917536aa7363.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_8dc0c9aa1d21b5e95d62917536aa7363.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_8dc0c9aa1d21b5e95d62917536aa7363.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_8dc0c9aa1d21b5e95d62917536aa7363.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_952a2a2e43f6ff26cbc2cffd68319449.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_952a2a2e43f6ff26cbc2cffd68319449.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_952a2a2e43f6ff26cbc2cffd68319449.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_952a2a2e43f6ff26cbc2cffd68319449.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_95af4a8fb2197ecef49be0ba3ff5c093.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_95af4a8fb2197ecef49be0ba3ff5c093.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_95af4a8fb2197ecef49be0ba3ff5c093.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_95af4a8fb2197ecef49be0ba3ff5c093.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_9dfad48a90ca0c0cfb78b6840b704c87.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_9dfad48a90ca0c0cfb78b6840b704c87.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_9dfad48a90ca0c0cfb78b6840b704c87.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_9dfad48a90ca0c0cfb78b6840b704c87.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a778047077fbf10559a84e26f538cfc3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a778047077fbf10559a84e26f538cfc3.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a778047077fbf10559a84e26f538cfc3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a778047077fbf10559a84e26f538cfc3.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a8ef9635f842622ba4df6cbe5bc3548d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a8ef9635f842622ba4df6cbe5bc3548d.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a8ef9635f842622ba4df6cbe5bc3548d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a8ef9635f842622ba4df6cbe5bc3548d.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a9fd48272efaddb054dd0b6e0ebe2b32.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a9fd48272efaddb054dd0b6e0ebe2b32.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a9fd48272efaddb054dd0b6e0ebe2b32.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_a9fd48272efaddb054dd0b6e0ebe2b32.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_be1a562850ea9447159da8a3e5c9a889.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_be1a562850ea9447159da8a3e5c9a889.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_be1a562850ea9447159da8a3e5c9a889.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_be1a562850ea9447159da8a3e5c9a889.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_d864eaeb0aa9dcb5ee0f337e65acd579.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_d864eaeb0aa9dcb5ee0f337e65acd579.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_d864eaeb0aa9dcb5ee0f337e65acd579.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_d864eaeb0aa9dcb5ee0f337e65acd579.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_d88df08932563afcb2f08d988cf43ebb.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_d88df08932563afcb2f08d988cf43ebb.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_d88df08932563afcb2f08d988cf43ebb.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_d88df08932563afcb2f08d988cf43ebb.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_e8d5557d4c8b9dab8d8fd0f3d45641c3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_e8d5557d4c8b9dab8d8fd0f3d45641c3.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_e8d5557d4c8b9dab8d8fd0f3d45641c3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_e8d5557d4c8b9dab8d8fd0f3d45641c3.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_eb88e1ef0fa3b7fc22810a33bf1b32bf.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_eb88e1ef0fa3b7fc22810a33bf1b32bf.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_eb88e1ef0fa3b7fc22810a33bf1b32bf.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_eb88e1ef0fa3b7fc22810a33bf1b32bf.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_f6eca48db8b6ab7b7628003ac839aa32.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_f6eca48db8b6ab7b7628003ac839aa32.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_f6eca48db8b6ab7b7628003ac839aa32.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_f6eca48db8b6ab7b7628003ac839aa32.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_f773c7146f0a3de95fc96be36a5eae83.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_f773c7146f0a3de95fc96be36a5eae83.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_f773c7146f0a3de95fc96be36a5eae83.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_f773c7146f0a3de95fc96be36a5eae83.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_fc8c23390ee7ec0b59a852ee5e70e5f3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_fc8c23390ee7ec0b59a852ee5e70e5f3.py index 59eb63ed1..3ff758932 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_fc8c23390ee7ec0b59a852ee5e70e5f3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/eapoudprange_fc8c23390ee7ec0b59a852ee5e70e5f3.py @@ -136,7 +136,7 @@ def NacSequence(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence): Nac Sequence used by this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence): Nac Sequence used by this range. """ return self._get_attribute(self._SDM_ATT_MAP["NacSequence"]) @@ -254,7 +254,7 @@ def update( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -291,7 +291,7 @@ def add( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - Protocol (str): Authentification Protocol. - ResponseType (str): Messages types to responde. @@ -347,7 +347,7 @@ def find( - FastInnerMethod (str): FAST Inner Method. - FastProvisionMode (str): FAST Provision Mode. - FastStatelessResume (str): FAST Stateless Resume. - - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/.../nacSequence)): Nac Sequence used by this range. + - NacSequence (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/eapoUdpGlobals/nacSettings/nacSequence)): Nac Sequence used by this range. - Name (str): Name of range - ObjectId (str): Unique identifier for this object - Protocol (str): Authentification Protocol. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpnbs5s8range_774e1af02a04fb9bebdeb4c0ef7ca2f3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpnbs5s8range_774e1af02a04fb9bebdeb4c0ef7ca2f3.py index 6a022f98e..0a5728751 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpnbs5s8range_774e1af02a04fb9bebdeb4c0ef7ca2f3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpnbs5s8range_774e1af02a04fb9bebdeb4c0ef7ca2f3.py @@ -149,7 +149,7 @@ def ParentMme(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../mmeS5S8SecondaryRange): Id of parent MME range + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/mmeS5S8SecondaryRange): Id of parent MME range """ return self._get_attribute(self._SDM_ATT_MAP["ParentMme"]) @@ -164,7 +164,7 @@ def ParentSgw(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../range): Id of parent SGW range + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/range): Id of parent SGW range """ return self._get_attribute(self._SDM_ATT_MAP["ParentSgw"]) @@ -337,8 +337,8 @@ def update( - MCC (str): Mobile Country Code - MNC (str): Mobile Network Code - Name (str): Name of range - - ParentMme (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mmeS5S8SecondaryRange)): Id of parent MME range - - ParentSgw (str(None | /api/v1/sessions/1/ixnetwork/vport/.../range)): Id of parent SGW range + - ParentMme (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/mmeS5S8SecondaryRange)): Id of parent MME range + - ParentSgw (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/range)): Id of parent SGW range - RAILAC (str): LAC for UEs (Hexa value) - RAIMCC1 (number): First digit of MCC location for UEs - RAIMCC2 (number): Second digit of MCC location for UEs @@ -390,8 +390,8 @@ def find( - MNC (str): Mobile Network Code - Name (str): Name of range - ObjectId (str): Unique identifier for this object - - ParentMme (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mmeS5S8SecondaryRange)): Id of parent MME range - - ParentSgw (str(None | /api/v1/sessions/1/ixnetwork/vport/.../range)): Id of parent SGW range + - ParentMme (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/mmeS5S8SecondaryRange)): Id of parent MME range + - ParentSgw (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/range)): Id of parent SGW range - RAILAC (str): LAC for UEs (Hexa value) - RAIMCC1 (number): First digit of MCC location for UEs - RAIMCC2 (number): Second digit of MCC location for UEs diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpnbs5s8range_e8af1c568f766d8d868ea47c5297dcb9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpnbs5s8range_e8af1c568f766d8d868ea47c5297dcb9.py index 6a022f98e..0a5728751 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpnbs5s8range_e8af1c568f766d8d868ea47c5297dcb9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpnbs5s8range_e8af1c568f766d8d868ea47c5297dcb9.py @@ -149,7 +149,7 @@ def ParentMme(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../mmeS5S8SecondaryRange): Id of parent MME range + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/mmeS5S8SecondaryRange): Id of parent MME range """ return self._get_attribute(self._SDM_ATT_MAP["ParentMme"]) @@ -164,7 +164,7 @@ def ParentSgw(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../range): Id of parent SGW range + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/range): Id of parent SGW range """ return self._get_attribute(self._SDM_ATT_MAP["ParentSgw"]) @@ -337,8 +337,8 @@ def update( - MCC (str): Mobile Country Code - MNC (str): Mobile Network Code - Name (str): Name of range - - ParentMme (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mmeS5S8SecondaryRange)): Id of parent MME range - - ParentSgw (str(None | /api/v1/sessions/1/ixnetwork/vport/.../range)): Id of parent SGW range + - ParentMme (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/mmeS5S8SecondaryRange)): Id of parent MME range + - ParentSgw (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/range)): Id of parent SGW range - RAILAC (str): LAC for UEs (Hexa value) - RAIMCC1 (number): First digit of MCC location for UEs - RAIMCC2 (number): Second digit of MCC location for UEs @@ -390,8 +390,8 @@ def find( - MNC (str): Mobile Network Code - Name (str): Name of range - ObjectId (str): Unique identifier for this object - - ParentMme (str(None | /api/v1/sessions/1/ixnetwork/vport/.../mmeS5S8SecondaryRange)): Id of parent MME range - - ParentSgw (str(None | /api/v1/sessions/1/ixnetwork/vport/.../range)): Id of parent SGW range + - ParentMme (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/mmeS5S8SecondaryRange)): Id of parent MME range + - ParentSgw (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/range)): Id of parent SGW range - RAILAC (str): LAC for UEs (Hexa value) - RAIMCC1 (number): First digit of MCC location for UEs - RAIMCC2 (number): Second digit of MCC location for UEs diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtppcrfs5s8range_38dc35d54a9c87ec71ba5211d21005bc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtppcrfs5s8range_38dc35d54a9c87ec71ba5211d21005bc.py index f0cf5ba12..8b6fc1140 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtppcrfs5s8range_38dc35d54a9c87ec71ba5211d21005bc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtppcrfs5s8range_38dc35d54a9c87ec71ba5211d21005bc.py @@ -429,7 +429,7 @@ def ParentPgw(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../range): Id of parent PGW range + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8PgwEndpoint/range): Id of parent PGW range """ return self._get_attribute(self._SDM_ATT_MAP["ParentPgw"]) @@ -647,7 +647,7 @@ def update( - IpType (str): The IP type of the address(es) that will be assigned to the UEs. When choosing IPv4v6 both an IPv4 address and an IPv6 address will be assigned to the UE. - Name (str): Name of range - NidbCreationDelay (number): Time to wait (in seconds), from the moment the UE is attached, before sending Create Bearer Request for Network Initiated Dedicated Bearers(NIDB). This does not apply to MS Initiated Dedicated Bearers - - ParentPgw (str(None | /api/v1/sessions/1/ixnetwork/vport/.../range)): Id of parent PGW range + - ParentPgw (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8PgwEndpoint/range)): Id of parent PGW range - PoolSize (number): The number of UEs that will be accepted. - PoolStartIPv4 (str): The first IPv4 address to be assigned to an UE. - PoolStartIPv6 (str): The first IPv6 address to be assigned to an UE. @@ -730,7 +730,7 @@ def find( - Name (str): Name of range - NidbCreationDelay (number): Time to wait (in seconds), from the moment the UE is attached, before sending Create Bearer Request for Network Initiated Dedicated Bearers(NIDB). This does not apply to MS Initiated Dedicated Bearers - ObjectId (str): Unique identifier for this object - - ParentPgw (str(None | /api/v1/sessions/1/ixnetwork/vport/.../range)): Id of parent PGW range + - ParentPgw (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8PgwEndpoint/range)): Id of parent PGW range - PoolSize (number): The number of UEs that will be accepted. - PoolStartIPv4 (str): The first IPv4 address to be assigned to an UE. - PoolStartIPv6 (str): The first IPv6 address to be assigned to an UE. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtppcrfs5s8range_47eec8dc2a0e465133d62111d641cf65.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtppcrfs5s8range_47eec8dc2a0e465133d62111d641cf65.py index f01499801..bbf7541ed 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtppcrfs5s8range_47eec8dc2a0e465133d62111d641cf65.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtppcrfs5s8range_47eec8dc2a0e465133d62111d641cf65.py @@ -429,7 +429,7 @@ def ParentPgw(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../range): Id of parent PGW range + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8PgwEndpoint/range): Id of parent PGW range """ return self._get_attribute(self._SDM_ATT_MAP["ParentPgw"]) @@ -647,7 +647,7 @@ def update( - IpType (str): The IP type of the address(es) that will be assigned to the UEs. When choosing IPv4v6 both an IPv4 address and an IPv6 address will be assigned to the UE. - Name (str): Name of range - NidbCreationDelay (number): Time to wait (in seconds), from the moment the UE is attached, before sending Create Bearer Request for Network Initiated Dedicated Bearers(NIDB). This does not apply to MS Initiated Dedicated Bearers - - ParentPgw (str(None | /api/v1/sessions/1/ixnetwork/vport/.../range)): Id of parent PGW range + - ParentPgw (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8PgwEndpoint/range)): Id of parent PGW range - PoolSize (number): The number of UEs that will be accepted. - PoolStartIPv4 (str): The first IPv4 address to be assigned to an UE. - PoolStartIPv6 (str): The first IPv6 address to be assigned to an UE. @@ -730,7 +730,7 @@ def find( - Name (str): Name of range - NidbCreationDelay (number): Time to wait (in seconds), from the moment the UE is attached, before sending Create Bearer Request for Network Initiated Dedicated Bearers(NIDB). This does not apply to MS Initiated Dedicated Bearers - ObjectId (str): Unique identifier for this object - - ParentPgw (str(None | /api/v1/sessions/1/ixnetwork/vport/.../range)): Id of parent PGW range + - ParentPgw (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8PgwEndpoint/range)): Id of parent PGW range - PoolSize (number): The number of UEs that will be accepted. - PoolStartIPv4 (str): The first IPv4 address to be assigned to an UE. - PoolStartIPv6 (str): The first IPv6 address to be assigned to an UE. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtps5s8sgwoptions_9c9b6793368b14b5dae66276ece6b8df.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtps5s8sgwoptions_9c9b6793368b14b5dae66276ece6b8df.py index dac38f8e9..08ce45f78 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtps5s8sgwoptions_9c9b6793368b14b5dae66276ece6b8df.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtps5s8sgwoptions_9c9b6793368b14b5dae66276ece6b8df.py @@ -74,7 +74,7 @@ def Associates(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. """ return self._get_attribute(self._SDM_ATT_MAP["Associates"]) @@ -216,7 +216,7 @@ def update( Args ---- - AlwaysIncludeRecoveryIE (bool): Always include recovery IE - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - DeleteIdleBearers (bool): Delete Idle Bearers - MaxOutstandingReleases (number): - The maximum amount of in progress procedures. If this limit is reached, no new releases shall be started, for all procedures covered. Release rate will be resumed when the amount of outstanding procedures to be completed drops below the max outstanding value - Includes the following procedures: o Detach o Delete Bearer Command o Bearer Resource Command for stop - MaxOutstandingRequests (number): - The maximum amount of in progress procedures. If this limit is reached, no new initiations shall be started, for all procedures covered. Initiation rate will be resumed when the amount of outstanding procedures to be completed drops below the max outstanding value - Includes the following procedures: o Attach (create session) o Bearer Resource Command for start o HSS updates o All handover types o Enter Idle (S1 Release procedure) o Exit Idle (UE/Network triggered service request) @@ -249,7 +249,7 @@ def add( Args ---- - AlwaysIncludeRecoveryIE (bool): Always include recovery IE - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - DeleteIdleBearers (bool): Delete Idle Bearers - MaxOutstandingReleases (number): - The maximum amount of in progress procedures. If this limit is reached, no new releases shall be started, for all procedures covered. Release rate will be resumed when the amount of outstanding procedures to be completed drops below the max outstanding value - Includes the following procedures: o Detach o Delete Bearer Command o Bearer Resource Command for stop - MaxOutstandingRequests (number): - The maximum amount of in progress procedures. If this limit is reached, no new initiations shall be started, for all procedures covered. Initiation rate will be resumed when the amount of outstanding procedures to be completed drops below the max outstanding value - Includes the following procedures: o Attach (create session) o Bearer Resource Command for start o HSS updates o All handover types o Enter Idle (S1 Release procedure) o Exit Idle (UE/Network triggered service request) @@ -301,7 +301,7 @@ def find( Args ---- - AlwaysIncludeRecoveryIE (bool): Always include recovery IE - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - DeleteIdleBearers (bool): Delete Idle Bearers - MaxOutstandingReleases (number): - The maximum amount of in progress procedures. If this limit is reached, no new releases shall be started, for all procedures covered. Release rate will be resumed when the amount of outstanding procedures to be completed drops below the max outstanding value - Includes the following procedures: o Detach o Delete Bearer Command o Bearer Resource Command for stop - MaxOutstandingRequests (number): - The maximum amount of in progress procedures. If this limit is reached, no new initiations shall be started, for all procedures covered. Initiation rate will be resumed when the amount of outstanding procedures to be completed drops below the max outstanding value - Includes the following procedures: o Attach (create session) o Bearer Resource Command for start o HSS updates o All handover types o Enter Idle (S1 Release procedure) o Exit Idle (UE/Network triggered service request) diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpues5s8range_898c6ddf10c49e5943dc4aa421c536a8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpues5s8range_898c6ddf10c49e5943dc4aa421c536a8.py index a60b3e97f..7f96e6f0a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpues5s8range_898c6ddf10c49e5943dc4aa421c536a8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpues5s8range_898c6ddf10c49e5943dc4aa421c536a8.py @@ -346,7 +346,7 @@ def ParentRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange): Parent range + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange): Parent range """ return self._get_attribute(self._SDM_ATT_MAP["ParentRange"]) @@ -506,7 +506,7 @@ def update( - MaxIntervalVariation (number): Randomize Mobility interval by max +/- X% - MobilityInterval (number): The total time (seconds) it will take the mobile to return to the starting node - Name (str): Name of range - - ParentRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange)): Parent range + - ParentRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange)): Parent range - SV (str): The software version number to be appended to the IMEI in order to generate IMEISV - SelectionMode (number): Indicates the origin of the APN in the message - StartDelay (number): How many seconds to wait before starting to move the UEs @@ -573,7 +573,7 @@ def find( - MobilityInterval (number): The total time (seconds) it will take the mobile to return to the starting node - Name (str): Name of range - ObjectId (str): Unique identifier for this object - - ParentRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange)): Parent range + - ParentRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange)): Parent range - SV (str): The software version number to be appended to the IMEI in order to generate IMEISV - SelectionMode (number): Indicates the origin of the APN in the message - StartDelay (number): How many seconds to wait before starting to move the UEs diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpues5s8range_a569ccf7976d0372d57c490dd1a4a7c3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpues5s8range_a569ccf7976d0372d57c490dd1a4a7c3.py index 9a0805528..c0addbb4d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpues5s8range_a569ccf7976d0372d57c490dd1a4a7c3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/egtpues5s8range_a569ccf7976d0372d57c490dd1a4a7c3.py @@ -346,7 +346,7 @@ def ParentRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange): Parent range + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange): Parent range """ return self._get_attribute(self._SDM_ATT_MAP["ParentRange"]) @@ -506,7 +506,7 @@ def update( - MaxIntervalVariation (number): Randomize Mobility interval by max +/- X% - MobilityInterval (number): The total time (seconds) it will take the mobile to return to the starting node - Name (str): Name of range - - ParentRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange)): Parent range + - ParentRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange)): Parent range - SV (str): The software version number to be appended to the IMEI in order to generate IMEISV - SelectionMode (number): Indicates the origin of the APN in the message - StartDelay (number): How many seconds to wait before starting to move the UEs @@ -573,7 +573,7 @@ def find( - MobilityInterval (number): The total time (seconds) it will take the mobile to return to the starting node - Name (str): Name of range - ObjectId (str): Unique identifier for this object - - ParentRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange)): Parent range + - ParentRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange)): Parent range - SV (str): The software version number to be appended to the IMEI in order to generate IMEISV - SelectionMode (number): Indicates the origin of the APN in the message - StartDelay (number): How many seconds to wait before starting to move the UEs diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/evbstationrange_c3efa4df889be0d6eec25995cf561ab5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/evbstationrange_c3efa4df889be0d6eec25995cf561ab5.py index 14f154c02..cda3559f1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/evbstationrange_c3efa4df889be0d6eec25995cf561ab5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/evbstationrange_c3efa4df889be0d6eec25995cf561ab5.py @@ -110,7 +110,7 @@ def DefaultEr(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../erRange): + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/vepaEndpoint/range/evbStationRange/erRange): """ return self._get_attribute(self._SDM_ATT_MAP["DefaultEr"]) @@ -286,7 +286,7 @@ def update( ---- - ChannelCapability (number): Advertised Channel Capability. - ChassisId (str): The Chassis ID that will be advertised in the mandatory LLDP TLVs. - - DefaultEr (str(None | /api/v1/sessions/1/ixnetwork/vport/.../erRange)): + - DefaultEr (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/vepaEndpoint/range/evbStationRange/erRange)): - Enabled (bool): Disabled ranges won't be configured nor validated. - HoldTime (number): Multiplier to get actual TTL value used in an LLDPDU. - Name (str): Name of range @@ -330,7 +330,7 @@ def find( ---- - ChannelCapability (number): Advertised Channel Capability. - ChassisId (str): The Chassis ID that will be advertised in the mandatory LLDP TLVs. - - DefaultEr (str(None | /api/v1/sessions/1/ixnetwork/vport/.../erRange)): + - DefaultEr (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/vepaEndpoint/range/evbStationRange/erRange)): - Enabled (bool): Disabled ranges won't be configured nor validated. - HoldTime (number): Multiplier to get actual TTL value used in an LLDPDU. - Name (str): Name of range diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcclientoptions_27e93046b19664cb9a7956d0ce172eda.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcclientoptions_27e93046b19664cb9a7956d0ce172eda.py index ee4b8cc75..3ba8ac927 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcclientoptions_27e93046b19664cb9a7956d0ce172eda.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcclientoptions_27e93046b19664cb9a7956d0ce172eda.py @@ -61,7 +61,7 @@ def Associates(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. """ return self._get_attribute(self._SDM_ATT_MAP["Associates"]) @@ -249,7 +249,7 @@ def update( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - B2bCredit (number): The buffer-to-buffer credit. - B2bRxSize (number): The buffer-to-buffer receive data field size in bytes. - EdTov (number): The user-provided Error Detect TimeOut Value. Can be edited in Override E_D_TOV mode. @@ -286,7 +286,7 @@ def add( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - B2bCredit (number): The buffer-to-buffer credit. - B2bRxSize (number): The buffer-to-buffer receive data field size in bytes. - EdTov (number): The user-provided Error Detect TimeOut Value. Can be edited in Override E_D_TOV mode. @@ -342,7 +342,7 @@ def find( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - B2bCredit (number): The buffer-to-buffer credit. - B2bRxSize (number): The buffer-to-buffer receive data field size in bytes. - EdTov (number): The user-provided Error Detect TimeOut Value. Can be edited in Override E_D_TOV mode. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcoeclientflogirange_4cd046ff25bc631c8d90302f5dd561dc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcoeclientflogirange_4cd046ff25bc631c8d90302f5dd561dc.py index d1f1c18aa..62a90b151 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcoeclientflogirange_4cd046ff25bc631c8d90302f5dd561dc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcoeclientflogirange_4cd046ff25bc631c8d90302f5dd561dc.py @@ -155,7 +155,7 @@ def FipOptionSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../fcoeClientOptionSet): List of TLV options used with FIP. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/fcoeClientGlobals/fcoeClientOptionSet): List of TLV options used with FIP. """ return self._get_attribute(self._SDM_ATT_MAP["FipOptionSet"]) @@ -609,7 +609,7 @@ def update( - FipAddressingMode (str): The addressing mode specified by FLOGI/FDISC requests. - FipDestinationMacAddress (str): Represents the address to which FIP Solicit Unicast is sent. - FipEnabled (bool): Enable FCoE Initialization Protocol (FIP). - - FipOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../fcoeClientOptionSet)): List of TLV options used with FIP. + - FipOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/fcoeClientGlobals/fcoeClientOptionSet)): List of TLV options used with FIP. - FipOptionSetName (str): The name of the Option Set used by this range. - FipSolicitTimeout (number): Period of time (in seconds) that the client waits for a message of type FIP Discovery Advertisement Multicast before failing. - FipVendorId (str): The Vendor Identifier value (8-byte). @@ -693,7 +693,7 @@ def find( - FipAddressingMode (str): The addressing mode specified by FLOGI/FDISC requests. - FipDestinationMacAddress (str): Represents the address to which FIP Solicit Unicast is sent. - FipEnabled (bool): Enable FCoE Initialization Protocol (FIP). - - FipOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../fcoeClientOptionSet)): List of TLV options used with FIP. + - FipOptionSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/fcoeClientGlobals/fcoeClientOptionSet)): List of TLV options used with FIP. - FipOptionSetName (str): The name of the Option Set used by this range. - FipSolicitTimeout (number): Period of time (in seconds) that the client waits for a message of type FIP Discovery Advertisement Multicast before failing. - FipVendorId (str): The Vendor Identifier value (8-byte). diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcoeclientoptions_ddeb39bc9d33553718e9d9d5c5615515.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcoeclientoptions_ddeb39bc9d33553718e9d9d5c5615515.py index 18f121629..3677be5d9 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcoeclientoptions_ddeb39bc9d33553718e9d9d5c5615515.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/fcoeclientoptions_ddeb39bc9d33553718e9d9d5c5615515.py @@ -55,7 +55,7 @@ def Associates(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. """ return self._get_attribute(self._SDM_ATT_MAP["Associates"]) @@ -147,7 +147,7 @@ def update( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxPacketsPerSecond (number): The maximum number of requests transmitted in each second, for this port group. - OverrideGlobalRate (bool): Global rate settings are automatically distributed to all port groups.If one port group has this field enabled, the distributed rate settings will be overridden with the following values. - SetupRate (number): The number of interfaces scheduled to be configured in each second, for this port group. @@ -172,7 +172,7 @@ def add( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxPacketsPerSecond (number): The maximum number of requests transmitted in each second, for this port group. - OverrideGlobalRate (bool): Global rate settings are automatically distributed to all port groups.If one port group has this field enabled, the distributed rate settings will be overridden with the following values. - SetupRate (number): The number of interfaces scheduled to be configured in each second, for this port group. @@ -216,7 +216,7 @@ def find( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxPacketsPerSecond (number): The maximum number of requests transmitted in each second, for this port group. - ObjectId (str): Unique identifier for this object - OverrideGlobalRate (bool): Global rate settings are automatically distributed to all port groups.If one port group has this field enabled, the distributed rate settings will be overridden with the following values. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/igmpoptions_058462c51a289a750bb5b00d4485513a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/igmpoptions_058462c51a289a750bb5b00d4485513a.py index e0c02579c..3eed906ee 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/igmpoptions_058462c51a289a750bb5b00d4485513a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/igmpoptions_058462c51a289a750bb5b00d4485513a.py @@ -53,7 +53,7 @@ def Associates(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. """ return self._get_attribute(self._SDM_ATT_MAP["Associates"]) @@ -110,7 +110,7 @@ def update( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxPacketsPerSecond (number): The maximum number of requests transmitted in each second. - OverrideGlobalRate (bool): Global rate settings are automatically distributed to all port groups. If one port group has this field enabled, the distributed rate settings will be overridden with the following values. @@ -126,7 +126,7 @@ def add(self, Associates=None, MaxPacketsPerSecond=None, OverrideGlobalRate=None Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxPacketsPerSecond (number): The maximum number of requests transmitted in each second. - OverrideGlobalRate (bool): Global rate settings are automatically distributed to all port groups. If one port group has this field enabled, the distributed rate settings will be overridden with the following values. @@ -166,7 +166,7 @@ def find( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - MaxPacketsPerSecond (number): The maximum number of requests transmitted in each second. - ObjectId (str): Unique identifier for this object - OverrideGlobalRate (bool): Global rate settings are automatically distributed to all port groups. If one port group has this field enabled, the distributed rate settings will be overridden with the following values. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_02e4f72c195de25d0f892d8160558205.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_02e4f72c195de25d0f892d8160558205.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_02e4f72c195de25d0f892d8160558205.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_02e4f72c195de25d0f892d8160558205.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_0b66bc1ed6b7731d11cbbae657716865.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_0b66bc1ed6b7731d11cbbae657716865.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_0b66bc1ed6b7731d11cbbae657716865.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_0b66bc1ed6b7731d11cbbae657716865.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_13a6506925622d2ed58316b58f2f638f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_13a6506925622d2ed58316b58f2f638f.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_13a6506925622d2ed58316b58f2f638f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_13a6506925622d2ed58316b58f2f638f.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_17f44a0f1628901df2c3b0b106202fee.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_17f44a0f1628901df2c3b0b106202fee.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_17f44a0f1628901df2c3b0b106202fee.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_17f44a0f1628901df2c3b0b106202fee.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_1ce6f7f601032326e7bc47179d4d4655.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_1ce6f7f601032326e7bc47179d4d4655.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_1ce6f7f601032326e7bc47179d4d4655.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_1ce6f7f601032326e7bc47179d4d4655.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_228b598ec96b396cf134750b902974f2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_228b598ec96b396cf134750b902974f2.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_228b598ec96b396cf134750b902974f2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_228b598ec96b396cf134750b902974f2.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_27b38a2069ebe2e133ec2d01a3ae07ae.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_27b38a2069ebe2e133ec2d01a3ae07ae.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_27b38a2069ebe2e133ec2d01a3ae07ae.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_27b38a2069ebe2e133ec2d01a3ae07ae.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_2892043b84ae90068aefb8030a20ed9d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_2892043b84ae90068aefb8030a20ed9d.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_2892043b84ae90068aefb8030a20ed9d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_2892043b84ae90068aefb8030a20ed9d.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_3a5ea07027b957260685005a3cd8f695.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_3a5ea07027b957260685005a3cd8f695.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_3a5ea07027b957260685005a3cd8f695.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_3a5ea07027b957260685005a3cd8f695.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_478fe0becc48314905b3a88b348021f1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_478fe0becc48314905b3a88b348021f1.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_478fe0becc48314905b3a88b348021f1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_478fe0becc48314905b3a88b348021f1.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_4c812667c5698b74cefd911419454bf7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_4c812667c5698b74cefd911419454bf7.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_4c812667c5698b74cefd911419454bf7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_4c812667c5698b74cefd911419454bf7.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_66634522f20913ac705309aceb36f305.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_66634522f20913ac705309aceb36f305.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_66634522f20913ac705309aceb36f305.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_66634522f20913ac705309aceb36f305.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_6ff37dabf0a01968932792f3d2237844.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_6ff37dabf0a01968932792f3d2237844.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_6ff37dabf0a01968932792f3d2237844.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_6ff37dabf0a01968932792f3d2237844.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_703e164c7e7a8591a84b893eb23c572a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_703e164c7e7a8591a84b893eb23c572a.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_703e164c7e7a8591a84b893eb23c572a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_703e164c7e7a8591a84b893eb23c572a.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_7305b62e9ac2aa9f13637cc3a90a716f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_7305b62e9ac2aa9f13637cc3a90a716f.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_7305b62e9ac2aa9f13637cc3a90a716f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_7305b62e9ac2aa9f13637cc3a90a716f.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_8200046a442be0ef4c7e8ab963592c37.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_8200046a442be0ef4c7e8ab963592c37.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_8200046a442be0ef4c7e8ab963592c37.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_8200046a442be0ef4c7e8ab963592c37.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_92641c206828c653767ec6e732b037c7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_92641c206828c653767ec6e732b037c7.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_92641c206828c653767ec6e732b037c7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_92641c206828c653767ec6e732b037c7.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_a08428aad1c40a8be03e00b17603e656.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_a08428aad1c40a8be03e00b17603e656.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_a08428aad1c40a8be03e00b17603e656.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_a08428aad1c40a8be03e00b17603e656.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_b2989ad9af9a51f7848c450ee9d1dc09.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_b2989ad9af9a51f7848c450ee9d1dc09.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_b2989ad9af9a51f7848c450ee9d1dc09.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_b2989ad9af9a51f7848c450ee9d1dc09.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_b794afa47f793d3ba1be140d79740623.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_b794afa47f793d3ba1be140d79740623.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_b794afa47f793d3ba1be140d79740623.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_b794afa47f793d3ba1be140d79740623.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_c3a22d035270e2ba7ed47423f753ccd0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_c3a22d035270e2ba7ed47423f753ccd0.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_c3a22d035270e2ba7ed47423f753ccd0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_c3a22d035270e2ba7ed47423f753ccd0.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_ea7c098d379f3ad5ad3ecd53c640f5e7.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_ea7c098d379f3ad5ad3ecd53c640f5e7.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_ea7c098d379f3ad5ad3ecd53c640f5e7.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_ea7c098d379f3ad5ad3ecd53c640f5e7.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_efa1bc9c67acfc8d90ca35101aa4c386.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_efa1bc9c67acfc8d90ca35101aa4c386.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_efa1bc9c67acfc8d90ca35101aa4c386.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_efa1bc9c67acfc8d90ca35101aa4c386.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_f430de1e8d75a3aaeda7030812224bca.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_f430de1e8d75a3aaeda7030812224bca.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_f430de1e8d75a3aaeda7030812224bca.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_f430de1e8d75a3aaeda7030812224bca.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fa138a64660ad65ba8ae37fa2ed4f558.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fa138a64660ad65ba8ae37fa2ed4f558.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fa138a64660ad65ba8ae37fa2ed4f558.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fa138a64660ad65ba8ae37fa2ed4f558.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fa24d35830eb84b7e0e2607a3be5b8c0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fa24d35830eb84b7e0e2607a3be5b8c0.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fa24d35830eb84b7e0e2607a3be5b8c0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fa24d35830eb84b7e0e2607a3be5b8c0.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fab746a3ba1ab23cbce1f5a650b4b66e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fab746a3ba1ab23cbce1f5a650b4b66e.py index ece461d3a..648f25d92 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fab746a3ba1ab23cbce1f5a650b4b66e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvchannels_fab746a3ba1ab23cbce1f5a650b4b66e.py @@ -51,7 +51,7 @@ def ChannelList(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList): Reference to the channel list from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList): Reference to the channel list from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["ChannelList"]) @@ -76,7 +76,7 @@ def update(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, ChannelList=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, ChannelList=None, ObjectId=None): Args ---- - - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalChannelList)): Reference to the channel list from the global settings + - ChannelList (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/globalChannelList)): Reference to the channel list from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_0a32a2b00c31a9f13707dd500098a488.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_0a32a2b00c31a9f13707dd500098a488.py index b5415ef63..b2144162b 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_0a32a2b00c31a9f13707dd500098a488.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_0a32a2b00c31a9f13707dd500098a488.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_0c55f401f5e321d2da90f609ba548ba2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_0c55f401f5e321d2da90f609ba548ba2.py index cec483ef6..bc0f2613d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_0c55f401f5e321d2da90f609ba548ba2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_0c55f401f5e321d2da90f609ba548ba2.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_1fd316dcec317a37d17637ab073dcf05.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_1fd316dcec317a37d17637ab073dcf05.py index 123b993ed..2b9b5cc8f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_1fd316dcec317a37d17637ab073dcf05.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_1fd316dcec317a37d17637ab073dcf05.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_2c373c5a83ee0d4688db7dd19d4f577c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_2c373c5a83ee0d4688db7dd19d4f577c.py index d2b65706c..faed81725 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_2c373c5a83ee0d4688db7dd19d4f577c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_2c373c5a83ee0d4688db7dd19d4f577c.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_3752fe3d0fa32ea82506e8b3f5a0658f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_3752fe3d0fa32ea82506e8b3f5a0658f.py index d8ed8de17..80633482a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_3752fe3d0fa32ea82506e8b3f5a0658f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_3752fe3d0fa32ea82506e8b3f5a0658f.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_444cd078c4ba5c3513cae5323c98b236.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_444cd078c4ba5c3513cae5323c98b236.py index c1bb81abe..e637e2a1d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_444cd078c4ba5c3513cae5323c98b236.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_444cd078c4ba5c3513cae5323c98b236.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_514034a2a890fb5363aa335d1d763f1d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_514034a2a890fb5363aa335d1d763f1d.py index ac6b05038..c233fd7cc 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_514034a2a890fb5363aa335d1d763f1d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_514034a2a890fb5363aa335d1d763f1d.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_531b4627cc166e21c231a268c0ce6ea3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_531b4627cc166e21c231a268c0ce6ea3.py index fde03f26b..79329f0c0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_531b4627cc166e21c231a268c0ce6ea3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_531b4627cc166e21c231a268c0ce6ea3.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_5939e29dc7928416f7717c4f900bd94d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_5939e29dc7928416f7717c4f900bd94d.py index a1caecf47..ec2fb8728 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_5939e29dc7928416f7717c4f900bd94d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_5939e29dc7928416f7717c4f900bd94d.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_6b0d7334ac8626a4654b355a0d2ae98e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_6b0d7334ac8626a4654b355a0d2ae98e.py index 6dd39beca..46e7083b9 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_6b0d7334ac8626a4654b355a0d2ae98e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_6b0d7334ac8626a4654b355a0d2ae98e.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_90342920062b583ad8082cbf99a70137.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_90342920062b583ad8082cbf99a70137.py index 5a70d4604..44152520c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_90342920062b583ad8082cbf99a70137.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_90342920062b583ad8082cbf99a70137.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_a527fbecbce5d80708115c9a99e244e8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_a527fbecbce5d80708115c9a99e244e8.py index b70055c8d..3eb0bd1f3 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_a527fbecbce5d80708115c9a99e244e8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_a527fbecbce5d80708115c9a99e244e8.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_a8577e1cbc5475d0b79280d86d8508a8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_a8577e1cbc5475d0b79280d86d8508a8.py index fa8fd5048..e498dca8d 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_a8577e1cbc5475d0b79280d86d8508a8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_a8577e1cbc5475d0b79280d86d8508a8.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_aaa927602b63b6685a04eb67d66c39df.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_aaa927602b63b6685a04eb67d66c39df.py index cf89b82ed..408221523 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_aaa927602b63b6685a04eb67d66c39df.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_aaa927602b63b6685a04eb67d66c39df.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_b1343dd585a5c6c68dbbee22807c4411.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_b1343dd585a5c6c68dbbee22807c4411.py index 56cb63eed..ce2ffecd1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_b1343dd585a5c6c68dbbee22807c4411.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_b1343dd585a5c6c68dbbee22807c4411.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_b15e81483d5be2cf30e042843e79b969.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_b15e81483d5be2cf30e042843e79b969.py index d4cabfc03..6e906d75a 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_b15e81483d5be2cf30e042843e79b969.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_b15e81483d5be2cf30e042843e79b969.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bab64e75f091d2cc363519e97a42b468.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bab64e75f091d2cc363519e97a42b468.py index 71e6066d2..db1d5db75 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bab64e75f091d2cc363519e97a42b468.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bab64e75f091d2cc363519e97a42b468.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bb48066ae0b32eca71f0e64447a7b2c5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bb48066ae0b32eca71f0e64447a7b2c5.py index 20c561e5c..0a5b4a154 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bb48066ae0b32eca71f0e64447a7b2c5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bb48066ae0b32eca71f0e64447a7b2c5.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bfce7cbc3ed856c46fc8b4ad5c80e860.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bfce7cbc3ed856c46fc8b4ad5c80e860.py index 13048c285..27bcf197c 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bfce7cbc3ed856c46fc8b4ad5c80e860.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_bfce7cbc3ed856c46fc8b4ad5c80e860.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_c901d0804e5aeb456bfef40cd68e9b82.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_c901d0804e5aeb456bfef40cd68e9b82.py index a4cc0b417..ff5c9ccbb 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_c901d0804e5aeb456bfef40cd68e9b82.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_c901d0804e5aeb456bfef40cd68e9b82.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_d874807cc50307f48464b2d9365ac39d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_d874807cc50307f48464b2d9365ac39d.py index 27f1d3b53..4fd0dc829 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_d874807cc50307f48464b2d9365ac39d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_d874807cc50307f48464b2d9365ac39d.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_de6c661c13149d444abc00ff1fe1f14e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_de6c661c13149d444abc00ff1fe1f14e.py index 418e0e51c..9502616e1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_de6c661c13149d444abc00ff1fe1f14e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_de6c661c13149d444abc00ff1fe1f14e.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_e37cd0d5f532f3d610397207f140a454.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_e37cd0d5f532f3d610397207f140a454.py index 0bd6913a6..2a4d5a8d2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_e37cd0d5f532f3d610397207f140a454.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_e37cd0d5f532f3d610397207f140a454.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_e67d862b0f469a230082adb5a240de55.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_e67d862b0f469a230082adb5a240de55.py index 14733ba76..d9c2d9841 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_e67d862b0f469a230082adb5a240de55.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_e67d862b0f469a230082adb5a240de55.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_ec297dddc2ebbef51c190ef0172e3706.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_ec297dddc2ebbef51c190ef0172e3706.py index da675077a..733d31214 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_ec297dddc2ebbef51c190ef0172e3706.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_ec297dddc2ebbef51c190ef0172e3706.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_f71a6d65072711f89398fed1d3f333ad.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_f71a6d65072711f89398fed1d3f333ad.py index dbcbc9ced..4755a28b1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_f71a6d65072711f89398fed1d3f333ad.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_f71a6d65072711f89398fed1d3f333ad.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_fa67acc006e6c6ed76ca40e84b13248f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_fa67acc006e6c6ed76ca40e84b13248f.py index d872f1598..6d6b30134 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_fa67acc006e6c6ed76ca40e84b13248f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/iptvrange_fa67acc006e6c6ed76ca40e84b13248f.py @@ -321,7 +321,7 @@ def ViewingProfile(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile): Template describing the behavior of how clients view the lists of channels. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile): Template describing the behavior of how clients view the lists of channels. """ return self._get_attribute(self._SDM_ATT_MAP["ViewingProfile"]) @@ -369,7 +369,7 @@ def update( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Raises ------ @@ -416,7 +416,7 @@ def add( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- @@ -483,7 +483,7 @@ def find( - StbLeaveJoinDelay (number): Time in milliseconds between sending a Leave for the current channel and Join for the next channel. - UnsolicitedResponseMode (bool): If selected, causes the emulated IGMP host to automatically send full membership messages at regular intervals, without waiting for a query message. - Version (str): IGMP/MLD protocol version. - - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/.../iptvProfile)): Template describing the behavior of how clients view the lists of channels. + - ViewingProfile (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/iptvGlobals/iptvProfile)): Template describing the behavior of how clients view the lists of channels. Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_055eb0fbf2ee3adf27a435ca7a9e9d5c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_055eb0fbf2ee3adf27a435ca7a9e9d5c.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_055eb0fbf2ee3adf27a435ca7a9e9d5c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_055eb0fbf2ee3adf27a435ca7a9e9d5c.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_0680589f076ac172b165a687d955e7b2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_0680589f076ac172b165a687d955e7b2.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_0680589f076ac172b165a687d955e7b2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_0680589f076ac172b165a687d955e7b2.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_24a6a388c271dda2bc99a6fd859cf70d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_24a6a388c271dda2bc99a6fd859cf70d.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_24a6a388c271dda2bc99a6fd859cf70d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_24a6a388c271dda2bc99a6fd859cf70d.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_391f7f89d545acdda65833959c1e8879.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_391f7f89d545acdda65833959c1e8879.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_391f7f89d545acdda65833959c1e8879.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_391f7f89d545acdda65833959c1e8879.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_3cac60f2c24ceccabe4361aebc802ec1.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_3cac60f2c24ceccabe4361aebc802ec1.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_3cac60f2c24ceccabe4361aebc802ec1.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_3cac60f2c24ceccabe4361aebc802ec1.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_3ce28d27d570ca985c8dcc43b1220c14.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_3ce28d27d570ca985c8dcc43b1220c14.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_3ce28d27d570ca985c8dcc43b1220c14.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_3ce28d27d570ca985c8dcc43b1220c14.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_484da91eb04897a09c4d185b8473ad1d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_484da91eb04897a09c4d185b8473ad1d.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_484da91eb04897a09c4d185b8473ad1d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_484da91eb04897a09c4d185b8473ad1d.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_492edff8b94132bc6cbb37efb67ae5d2.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_492edff8b94132bc6cbb37efb67ae5d2.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_492edff8b94132bc6cbb37efb67ae5d2.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_492edff8b94132bc6cbb37efb67ae5d2.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_4a42d2a6d2f94961430440a0c5e2cf02.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_4a42d2a6d2f94961430440a0c5e2cf02.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_4a42d2a6d2f94961430440a0c5e2cf02.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_4a42d2a6d2f94961430440a0c5e2cf02.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_5273e87fbf1a1f741dd61f289b7a2c97.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_5273e87fbf1a1f741dd61f289b7a2c97.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_5273e87fbf1a1f741dd61f289b7a2c97.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_5273e87fbf1a1f741dd61f289b7a2c97.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_65cd06259104c11c3e72c2dde18ae11b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_65cd06259104c11c3e72c2dde18ae11b.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_65cd06259104c11c3e72c2dde18ae11b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_65cd06259104c11c3e72c2dde18ae11b.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_67ad6e95b44fc193024df4c79a9c6f77.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_67ad6e95b44fc193024df4c79a9c6f77.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_67ad6e95b44fc193024df4c79a9c6f77.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_67ad6e95b44fc193024df4c79a9c6f77.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_68a0d4d194ccaa145b210ea3b0976979.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_68a0d4d194ccaa145b210ea3b0976979.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_68a0d4d194ccaa145b210ea3b0976979.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_68a0d4d194ccaa145b210ea3b0976979.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_736d39c4a3d7335aaa18db45a1111dfe.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_736d39c4a3d7335aaa18db45a1111dfe.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_736d39c4a3d7335aaa18db45a1111dfe.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_736d39c4a3d7335aaa18db45a1111dfe.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_7c48c476a64513e69ee2e7e2a4bb1b29.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_7c48c476a64513e69ee2e7e2a4bb1b29.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_7c48c476a64513e69ee2e7e2a4bb1b29.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_7c48c476a64513e69ee2e7e2a4bb1b29.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_84e40241c62ca2bba97c5ee68c5edef0.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_84e40241c62ca2bba97c5ee68c5edef0.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_84e40241c62ca2bba97c5ee68c5edef0.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_84e40241c62ca2bba97c5ee68c5edef0.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_895f2e34c0a259f0cbb9a0509f35859e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_895f2e34c0a259f0cbb9a0509f35859e.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_895f2e34c0a259f0cbb9a0509f35859e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_895f2e34c0a259f0cbb9a0509f35859e.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_a3f5aa83fd9e434448a30e41de495bd3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_a3f5aa83fd9e434448a30e41de495bd3.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_a3f5aa83fd9e434448a30e41de495bd3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_a3f5aa83fd9e434448a30e41de495bd3.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_ab584c6edc9e915e4414556f90e9b53c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_ab584c6edc9e915e4414556f90e9b53c.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_ab584c6edc9e915e4414556f90e9b53c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_ab584c6edc9e915e4414556f90e9b53c.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_b0d2f3e177042c57b5a7bc316fb8233c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_b0d2f3e177042c57b5a7bc316fb8233c.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_b0d2f3e177042c57b5a7bc316fb8233c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_b0d2f3e177042c57b5a7bc316fb8233c.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_ba384616280e62293bca664c8a8008dc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_ba384616280e62293bca664c8a8008dc.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_ba384616280e62293bca664c8a8008dc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_ba384616280e62293bca664c8a8008dc.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_bea2dd62e027456bd9229062e4cce4bf.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_bea2dd62e027456bd9229062e4cce4bf.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_bea2dd62e027456bd9229062e4cce4bf.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_bea2dd62e027456bd9229062e4cce4bf.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_c293d24c8897cae258215195d36f1a93.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_c293d24c8897cae258215195d36f1a93.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_c293d24c8897cae258215195d36f1a93.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_c293d24c8897cae258215195d36f1a93.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_d09113285144041f00f7e9daca1ea8ce.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_d09113285144041f00f7e9daca1ea8ce.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_d09113285144041f00f7e9daca1ea8ce.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_d09113285144041f00f7e9daca1ea8ce.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_e0f67f8b7770d5ff7fa85bc0763fbbce.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_e0f67f8b7770d5ff7fa85bc0763fbbce.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_e0f67f8b7770d5ff7fa85bc0763fbbce.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_e0f67f8b7770d5ff7fa85bc0763fbbce.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_f1e5dfc39eb223116ad3fa4d41b93cce.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_f1e5dfc39eb223116ad3fa4d41b93cce.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_f1e5dfc39eb223116ad3fa4d41b93cce.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_f1e5dfc39eb223116ad3fa4d41b93cce.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_fc5c1617e1788c15185efb3ea05db77d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_fc5c1617e1788c15185efb3ea05db77d.py index fb772bb3f..d6ba37fb6 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_fc5c1617e1788c15185efb3ea05db77d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/joinleavemulticastgrouprange_fc5c1617e1788c15185efb3ea05db77d.py @@ -52,7 +52,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -92,7 +92,7 @@ def update(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Raises @@ -107,7 +107,7 @@ def add(self, GroupRange=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint Returns @@ -140,7 +140,7 @@ def find(self, GroupRange=None, ObjectId=None, SkipInTraffic=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object - SkipInTraffic (bool): If true, the associated groupRange will not participate in traffic as endpoint diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/l2tpoptions_eeef014542cbd357c0dcccccc57550fc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/l2tpoptions_eeef014542cbd357c0dcccccc57550fc.py index b006f60ce..a6c88a535 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/l2tpoptions_eeef014542cbd357c0dcccccc57550fc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/l2tpoptions_eeef014542cbd357c0dcccccc57550fc.py @@ -63,7 +63,7 @@ def Associates(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. """ return self._get_attribute(self._SDM_ATT_MAP["Associates"]) @@ -283,7 +283,7 @@ def update( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - EnablePerSessionStatGeneration (bool): OBSOLETE - Ipv6GlobalAddressMode (str): Selects protocol used to set IPv6 global interfaces on PPP/L2TP interfaces - MaxOutstandingReleases (number): This is the point at which session teardown will be restricted. Sessions are torn down at the configured speed until there are this number of sessions in disconnecting stage, at which point additional sessions are torn down only when others get fully disconnected. @@ -324,7 +324,7 @@ def add( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - EnablePerSessionStatGeneration (bool): OBSOLETE - Ipv6GlobalAddressMode (str): Selects protocol used to set IPv6 global interfaces on PPP/L2TP interfaces - MaxOutstandingReleases (number): This is the point at which session teardown will be restricted. Sessions are torn down at the configured speed until there are this number of sessions in disconnecting stage, at which point additional sessions are torn down only when others get fully disconnected. @@ -384,7 +384,7 @@ def find( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - EnablePerSessionStatGeneration (bool): OBSOLETE - Ipv6GlobalAddressMode (str): Selects protocol used to set IPv6 global interfaces on PPP/L2TP interfaces - MaxOutstandingReleases (number): This is the point at which session teardown will be restricted. Sessions are torn down at the configured speed until there are this number of sessions in disconnecting stage, at which point additional sessions are torn down only when others get fully disconnected. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/mobilepathentriess5s8sgw_294a5a10bf19642e7689820d854c6b14.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/mobilepathentriess5s8sgw_294a5a10bf19642e7689820d854c6b14.py index dc10b4502..38c6680f0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/mobilepathentriess5s8sgw_294a5a10bf19642e7689820d854c6b14.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/mobilepathentriess5s8sgw_294a5a10bf19642e7689820d854c6b14.py @@ -51,7 +51,7 @@ def NextRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange): + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange): """ return self._get_attribute(self._SDM_ATT_MAP["NextRange"]) @@ -76,7 +76,7 @@ def update(self, NextRange=None): Args ---- - - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange)): + - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange)): Raises ------ @@ -90,7 +90,7 @@ def add(self, NextRange=None): Args ---- - - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange)): + - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange)): Returns ------- @@ -122,7 +122,7 @@ def find(self, NextRange=None, ObjectId=None): Args ---- - - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange)): + - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange)): - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/mobilepathentriess5s8sgw_81babe0b4acfa0e8b3bdf5f7b015ba4b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/mobilepathentriess5s8sgw_81babe0b4acfa0e8b3bdf5f7b015ba4b.py index dc10b4502..38c6680f0 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/mobilepathentriess5s8sgw_81babe0b4acfa0e8b3bdf5f7b015ba4b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/mobilepathentriess5s8sgw_81babe0b4acfa0e8b3bdf5f7b015ba4b.py @@ -51,7 +51,7 @@ def NextRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange): + - str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange): """ return self._get_attribute(self._SDM_ATT_MAP["NextRange"]) @@ -76,7 +76,7 @@ def update(self, NextRange=None): Args ---- - - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange)): + - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange)): Raises ------ @@ -90,7 +90,7 @@ def add(self, NextRange=None): Args ---- - - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange)): + - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange)): Returns ------- @@ -122,7 +122,7 @@ def find(self, NextRange=None, ObjectId=None): Args ---- - - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/.../enbS5S8SecondaryRange)): + - NextRange (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/ip/egtpS5S8SgwEndpoint/enbS5S8SecondaryRange)): - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_0caba6b03531fe0fcc6eefd362a19cf9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_0caba6b03531fe0fcc6eefd362a19cf9.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_0caba6b03531fe0fcc6eefd362a19cf9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_0caba6b03531fe0fcc6eefd362a19cf9.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_1639ebcf95a11b2ba513ecef409b8858.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_1639ebcf95a11b2ba513ecef409b8858.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_1639ebcf95a11b2ba513ecef409b8858.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_1639ebcf95a11b2ba513ecef409b8858.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_166b9f7396d4bb76e87b640bec429376.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_166b9f7396d4bb76e87b640bec429376.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_166b9f7396d4bb76e87b640bec429376.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_166b9f7396d4bb76e87b640bec429376.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_1d4b5276a408f4b68e126106f249f8fd.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_1d4b5276a408f4b68e126106f249f8fd.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_1d4b5276a408f4b68e126106f249f8fd.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_1d4b5276a408f4b68e126106f249f8fd.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_22275d8084e76f93e01334641eed6827.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_22275d8084e76f93e01334641eed6827.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_22275d8084e76f93e01334641eed6827.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_22275d8084e76f93e01334641eed6827.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_2f71d0104d49112f95d211bb79764d87.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_2f71d0104d49112f95d211bb79764d87.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_2f71d0104d49112f95d211bb79764d87.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_2f71d0104d49112f95d211bb79764d87.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_4735bc3df39ba0230fc629ad9dd613b5.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_4735bc3df39ba0230fc629ad9dd613b5.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_4735bc3df39ba0230fc629ad9dd613b5.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_4735bc3df39ba0230fc629ad9dd613b5.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_52b54425b26e866e2c1001d076964fdd.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_52b54425b26e866e2c1001d076964fdd.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_52b54425b26e866e2c1001d076964fdd.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_52b54425b26e866e2c1001d076964fdd.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_56c092acf41a95fc52f93b2d87fad380.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_56c092acf41a95fc52f93b2d87fad380.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_56c092acf41a95fc52f93b2d87fad380.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_56c092acf41a95fc52f93b2d87fad380.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_5c1e85e51facad93700cc7227f370a8f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_5c1e85e51facad93700cc7227f370a8f.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_5c1e85e51facad93700cc7227f370a8f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_5c1e85e51facad93700cc7227f370a8f.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_63f97d2bbeba0a48a1401c6b8c422d9d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_63f97d2bbeba0a48a1401c6b8c422d9d.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_63f97d2bbeba0a48a1401c6b8c422d9d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_63f97d2bbeba0a48a1401c6b8c422d9d.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_6bed97c4d2c300ecb1e1660a488580ae.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_6bed97c4d2c300ecb1e1660a488580ae.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_6bed97c4d2c300ecb1e1660a488580ae.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_6bed97c4d2c300ecb1e1660a488580ae.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_776357fdc6dff9516faefa4750c81bfa.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_776357fdc6dff9516faefa4750c81bfa.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_776357fdc6dff9516faefa4750c81bfa.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_776357fdc6dff9516faefa4750c81bfa.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_7f123cefedfb267426acd7ca24041140.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_7f123cefedfb267426acd7ca24041140.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_7f123cefedfb267426acd7ca24041140.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_7f123cefedfb267426acd7ca24041140.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_8569eb12a099e94435b81a3483868c57.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_8569eb12a099e94435b81a3483868c57.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_8569eb12a099e94435b81a3483868c57.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_8569eb12a099e94435b81a3483868c57.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_86ff58f1169fc9f0fea0d9edcc97b5f6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_86ff58f1169fc9f0fea0d9edcc97b5f6.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_86ff58f1169fc9f0fea0d9edcc97b5f6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_86ff58f1169fc9f0fea0d9edcc97b5f6.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_88037d6e09e07ff15a22e6a67d41e1c4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_88037d6e09e07ff15a22e6a67d41e1c4.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_88037d6e09e07ff15a22e6a67d41e1c4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_88037d6e09e07ff15a22e6a67d41e1c4.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_97055a203584162212eb3ed86476c6d6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_97055a203584162212eb3ed86476c6d6.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_97055a203584162212eb3ed86476c6d6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_97055a203584162212eb3ed86476c6d6.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_992efde580b0afb1313e376da7fe0b33.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_992efde580b0afb1313e376da7fe0b33.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_992efde580b0afb1313e376da7fe0b33.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_992efde580b0afb1313e376da7fe0b33.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_9933f053566b5d625d3f758e0e6636bc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_9933f053566b5d625d3f758e0e6636bc.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_9933f053566b5d625d3f758e0e6636bc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_9933f053566b5d625d3f758e0e6636bc.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_9a902904beaa9e4f7422c7d9ea99dd28.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_9a902904beaa9e4f7422c7d9ea99dd28.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_9a902904beaa9e4f7422c7d9ea99dd28.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_9a902904beaa9e4f7422c7d9ea99dd28.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_cb53aa216648ad54852f338ef03c869d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_cb53aa216648ad54852f338ef03c869d.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_cb53aa216648ad54852f338ef03c869d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_cb53aa216648ad54852f338ef03c869d.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_d20a8c4f3b44559cebc9bd55b37a3438.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_d20a8c4f3b44559cebc9bd55b37a3438.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_d20a8c4f3b44559cebc9bd55b37a3438.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_d20a8c4f3b44559cebc9bd55b37a3438.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_da93bfe9c6f9d791ba76295f2a17d9aa.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_da93bfe9c6f9d791ba76295f2a17d9aa.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_da93bfe9c6f9d791ba76295f2a17d9aa.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_da93bfe9c6f9d791ba76295f2a17d9aa.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_e305f590c854837d5e2b857375af97ec.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_e305f590c854837d5e2b857375af97ec.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_e305f590c854837d5e2b857375af97ec.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_e305f590c854837d5e2b857375af97ec.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_ef92c70dbaffc5b33d12633f6c21c89e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_ef92c70dbaffc5b33d12633f6c21c89e.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_ef92c70dbaffc5b33d12633f6c21c89e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_ef92c70dbaffc5b33d12633f6c21c89e.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_fb25a02e8dbfec08454389ba3219f312.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_fb25a02e8dbfec08454389ba3219f312.py index 3cc6fda87..d446f5abd 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_fb25a02e8dbfec08454389ba3219f312.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/multicastgrouprange_fb25a02e8dbfec08454389ba3219f312.py @@ -51,7 +51,7 @@ def GroupRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange): Reference to the multicast group range from the global settings + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange): Reference to the multicast group range from the global settings """ return self._get_attribute(self._SDM_ATT_MAP["GroupRange"]) @@ -76,7 +76,7 @@ def update(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Raises ------ @@ -90,7 +90,7 @@ def add(self, GroupRange=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings Returns ------- @@ -122,7 +122,7 @@ def find(self, GroupRange=None, ObjectId=None): Args ---- - - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../igmpGroupRange)): Reference to the multicast group range from the global settings + - GroupRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/igmpGlobals/igmpGroupRange)): Reference to the multicast group range from the global settings - ObjectId (str): Unique identifier for this object Returns diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/pppoxoptions_339cf64ae99c79e1d1492d14520ab152.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/pppoxoptions_339cf64ae99c79e1d1492d14520ab152.py index 548a627f9..8f400f51f 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/pppoxoptions_339cf64ae99c79e1d1492d14520ab152.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/pppoxoptions_339cf64ae99c79e1d1492d14520ab152.py @@ -66,7 +66,7 @@ def Associates(self): """ Returns ------- - - list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack]): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. """ return self._get_attribute(self._SDM_ATT_MAP["Associates"]) @@ -334,7 +334,7 @@ def update( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - EnablePerSessionStatGeneration (bool): OBSOLETE - FilterDataPlaneBeforeL7 (bool): Don't enable filters letting data plane traffic through to the port before a status-dump with enable-layer7=yes. When checked, should improve performance for stateless tests. - Ipv6GlobalAddressMode (str): Selects protocol used to set IPv6 global interfaces on PPP/L2TP interfaces @@ -381,7 +381,7 @@ def add( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - EnablePerSessionStatGeneration (bool): OBSOLETE - FilterDataPlaneBeforeL7 (bool): Don't enable filters letting data plane traffic through to the port before a status-dump with enable-layer7=yes. When checked, should improve performance for stateless tests. - Ipv6GlobalAddressMode (str): Selects protocol used to set IPv6 global interfaces on PPP/L2TP interfaces @@ -447,7 +447,7 @@ def find( Args ---- - - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. + - Associates (list(str[None | /api/v1/sessions/1/ixnetwork/vport/protocolStack])): The 'Associates' property applies only to 'client mode'endpoints (e.g. DHCP/L2TP/PPP). It describes a listof server endpoints that will: + always be started before the client endpoint is started + always be stopped after the client endpoint is stopped.This allows orderly, synchronized start and stop sequences to occur between associated client and server endpoints.This feature should be used when you have two or more IXIADHCP/PPP/L2TP endpoints (client and server) in a networkconfiguration. It prevents extraneous session negotiationtimeouts that may occur due to: + a server being started after a client was started + a server being stopped before a client was stopped. - EnablePerSessionStatGeneration (bool): OBSOLETE - FilterDataPlaneBeforeL7 (bool): Don't enable filters letting data plane traffic through to the port before a status-dump with enable-layer7=yes. When checked, should improve performance for stateless tests. - Ipv6GlobalAddressMode (str): Selects protocol used to set IPv6 global interfaces on PPP/L2TP interfaces diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_01d41b20c16c580e124ffbe87e8a915e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_01d41b20c16c580e124ffbe87e8a915e.py index e557d671b..4ef7356ee 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_01d41b20c16c580e124ffbe87e8a915e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_01d41b20c16c580e124ffbe87e8a915e.py @@ -221,7 +221,7 @@ def TunnelAttributeSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet): Defines the RADIUS tunnel attributes + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet): Defines the RADIUS tunnel attributes """ return self._get_attribute(self._SDM_ATT_MAP["TunnelAttributeSet"]) @@ -259,7 +259,7 @@ def update( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Raises ------ @@ -296,7 +296,7 @@ def add( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- @@ -353,7 +353,7 @@ def find( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_97afa53b713b32c9162b4cfcb1d0ac02.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_97afa53b713b32c9162b4cfcb1d0ac02.py index e557d671b..4ef7356ee 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_97afa53b713b32c9162b4cfcb1d0ac02.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_97afa53b713b32c9162b4cfcb1d0ac02.py @@ -221,7 +221,7 @@ def TunnelAttributeSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet): Defines the RADIUS tunnel attributes + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet): Defines the RADIUS tunnel attributes """ return self._get_attribute(self._SDM_ATT_MAP["TunnelAttributeSet"]) @@ -259,7 +259,7 @@ def update( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Raises ------ @@ -296,7 +296,7 @@ def add( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- @@ -353,7 +353,7 @@ def find( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_dfc0a0f5d33c3bdb8de4fe288407c47c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_dfc0a0f5d33c3bdb8de4fe288407c47c.py index e557d671b..4ef7356ee 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_dfc0a0f5d33c3bdb8de4fe288407c47c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_dfc0a0f5d33c3bdb8de4fe288407c47c.py @@ -221,7 +221,7 @@ def TunnelAttributeSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet): Defines the RADIUS tunnel attributes + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet): Defines the RADIUS tunnel attributes """ return self._get_attribute(self._SDM_ATT_MAP["TunnelAttributeSet"]) @@ -259,7 +259,7 @@ def update( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Raises ------ @@ -296,7 +296,7 @@ def add( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- @@ -353,7 +353,7 @@ def find( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_f13adc727c021ce9e8f12fa8af217a3e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_f13adc727c021ce9e8f12fa8af217a3e.py index e557d671b..4ef7356ee 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_f13adc727c021ce9e8f12fa8af217a3e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_f13adc727c021ce9e8f12fa8af217a3e.py @@ -221,7 +221,7 @@ def TunnelAttributeSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet): Defines the RADIUS tunnel attributes + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet): Defines the RADIUS tunnel attributes """ return self._get_attribute(self._SDM_ATT_MAP["TunnelAttributeSet"]) @@ -259,7 +259,7 @@ def update( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Raises ------ @@ -296,7 +296,7 @@ def add( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- @@ -353,7 +353,7 @@ def find( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_f4b2a1f6deb3e37c2bb565e21c58d92b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_f4b2a1f6deb3e37c2bb565e21c58d92b.py index e557d671b..4ef7356ee 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_f4b2a1f6deb3e37c2bb565e21c58d92b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_f4b2a1f6deb3e37c2bb565e21c58d92b.py @@ -221,7 +221,7 @@ def TunnelAttributeSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet): Defines the RADIUS tunnel attributes + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet): Defines the RADIUS tunnel attributes """ return self._get_attribute(self._SDM_ATT_MAP["TunnelAttributeSet"]) @@ -259,7 +259,7 @@ def update( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Raises ------ @@ -296,7 +296,7 @@ def add( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- @@ -353,7 +353,7 @@ def find( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_fc18bb096ed4fd1bf131e9c5b29da4a4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_fc18bb096ed4fd1bf131e9c5b29da4a4.py index e557d671b..4ef7356ee 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_fc18bb096ed4fd1bf131e9c5b29da4a4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/radiusrange_fc18bb096ed4fd1bf131e9c5b29da4a4.py @@ -221,7 +221,7 @@ def TunnelAttributeSet(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet): Defines the RADIUS tunnel attributes + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet): Defines the RADIUS tunnel attributes """ return self._get_attribute(self._SDM_ATT_MAP["TunnelAttributeSet"]) @@ -259,7 +259,7 @@ def update( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Raises ------ @@ -296,7 +296,7 @@ def add( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- @@ -353,7 +353,7 @@ def find( - Retries (number): RADIUS retry value - Secret (str): Shared secret used by Ixia RADIUS client and RADIUS server - Timeout (number): RADIUS timeout value - - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/.../dhcpOptionSet)): Defines the RADIUS tunnel attributes + - TunnelAttributeSet (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/radiusGlobals/dhcpOptionSet)): Defines the RADIUS tunnel attributes Returns ------- diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8pgw_47d0afd20663ef6a4faa05f791965f38.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8pgw_47d0afd20663ef6a4faa05f791965f38.py index 040d51f97..52f0daab4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8pgw_47d0afd20663ef6a4faa05f791965f38.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8pgw_47d0afd20663ef6a4faa05f791965f38.py @@ -53,7 +53,7 @@ def ActualPluginSettingsRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8): + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8): """ return self._get_attribute(self._SDM_ATT_MAP["ActualPluginSettingsRange"]) @@ -108,7 +108,7 @@ def update(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -124,7 +124,7 @@ def add(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -160,7 +160,7 @@ def find( Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8pgw_acb2da84ac2e7d4a1c6b32589106655a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8pgw_acb2da84ac2e7d4a1c6b32589106655a.py index 040d51f97..52f0daab4 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8pgw_acb2da84ac2e7d4a1c6b32589106655a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8pgw_acb2da84ac2e7d4a1c6b32589106655a.py @@ -53,7 +53,7 @@ def ActualPluginSettingsRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8): + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8): """ return self._get_attribute(self._SDM_ATT_MAP["ActualPluginSettingsRange"]) @@ -108,7 +108,7 @@ def update(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -124,7 +124,7 @@ def add(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -160,7 +160,7 @@ def find( Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8sgw_5c238c72aef9828614d256e8f1c16fdd.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8sgw_5c238c72aef9828614d256e8f1c16fdd.py index cd9508f5a..6c2142223 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8sgw_5c238c72aef9828614d256e8f1c16fdd.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8sgw_5c238c72aef9828614d256e8f1c16fdd.py @@ -53,7 +53,7 @@ def ActualPluginSettingsRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8): + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8): """ return self._get_attribute(self._SDM_ATT_MAP["ActualPluginSettingsRange"]) @@ -108,7 +108,7 @@ def update(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -124,7 +124,7 @@ def add(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -160,7 +160,7 @@ def find( Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8sgw_f250f4c6c9dd05a921ef465ee407db66.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8sgw_f250f4c6c9dd05a921ef465ee407db66.py index cd9508f5a..6c2142223 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8sgw_f250f4c6c9dd05a921ef465ee407db66.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiess5s8sgw_f250f4c6c9dd05a921ef465ee407db66.py @@ -53,7 +53,7 @@ def ActualPluginSettingsRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8): + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8): """ return self._get_attribute(self._SDM_ATT_MAP["ActualPluginSettingsRange"]) @@ -108,7 +108,7 @@ def update(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -124,7 +124,7 @@ def add(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -160,7 +160,7 @@ def find( Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfileS5S8)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpS5S8SgwGlobals/globalTrafficProfileS5S8)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiessgw_2ba50e3f68406543d68c8adab06c0e1b.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiessgw_2ba50e3f68406543d68c8adab06c0e1b.py index 54a5512eb..ac2d633c1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiessgw_2ba50e3f68406543d68c8adab06c0e1b.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiessgw_2ba50e3f68406543d68c8adab06c0e1b.py @@ -53,7 +53,7 @@ def ActualPluginSettingsRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfiles): + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpMmeGlobals/globalTrafficProfiles): """ return self._get_attribute(self._SDM_ATT_MAP["ActualPluginSettingsRange"]) @@ -108,7 +108,7 @@ def update(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfiles)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpMmeGlobals/globalTrafficProfiles)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -124,7 +124,7 @@ def add(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfiles)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpMmeGlobals/globalTrafficProfiles)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -160,7 +160,7 @@ def find( Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfiles)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpMmeGlobals/globalTrafficProfiles)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiessgw_b0da1e27ea5ae3e015eae8ae4d510cb3.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiessgw_b0da1e27ea5ae3e015eae8ae4d510cb3.py index 54a5512eb..ac2d633c1 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiessgw_b0da1e27ea5ae3e015eae8ae4d510cb3.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/trafficprofileproxiessgw_b0da1e27ea5ae3e015eae8ae4d510cb3.py @@ -53,7 +53,7 @@ def ActualPluginSettingsRange(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfiles): + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpMmeGlobals/globalTrafficProfiles): """ return self._get_attribute(self._SDM_ATT_MAP["ActualPluginSettingsRange"]) @@ -108,7 +108,7 @@ def update(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfiles)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpMmeGlobals/globalTrafficProfiles)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -124,7 +124,7 @@ def add(self, ActualPluginSettingsRange=None, Enabled=None, Name=None): Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfiles)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpMmeGlobals/globalTrafficProfiles)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): @@ -160,7 +160,7 @@ def find( Args ---- - - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/.../globalTrafficProfiles)): + - ActualPluginSettingsRange (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/egtpMmeGlobals/globalTrafficProfiles)): - Enabled (bool): Disabled ranges won't be configured nor validated. - Name (str): - ObjectId (str): Unique identifier for this object diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_0c321c6df6e4365050566fea7019fc21.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_0c321c6df6e4365050566fea7019fc21.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_0c321c6df6e4365050566fea7019fc21.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_0c321c6df6e4365050566fea7019fc21.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_12e151797bd0b071416750ada333d05e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_12e151797bd0b071416750ada333d05e.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_12e151797bd0b071416750ada333d05e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_12e151797bd0b071416750ada333d05e.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2328de79f7150869b97c79cda76b23c8.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2328de79f7150869b97c79cda76b23c8.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2328de79f7150869b97c79cda76b23c8.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2328de79f7150869b97c79cda76b23c8.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_23b1316ae9735619f697150e6e467fee.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_23b1316ae9735619f697150e6e467fee.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_23b1316ae9735619f697150e6e467fee.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_23b1316ae9735619f697150e6e467fee.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2730230e01f5d16fb2f9db059d45495e.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2730230e01f5d16fb2f9db059d45495e.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2730230e01f5d16fb2f9db059d45495e.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2730230e01f5d16fb2f9db059d45495e.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2c529050e4d80d5866a1405445d3357d.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2c529050e4d80d5866a1405445d3357d.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2c529050e4d80d5866a1405445d3357d.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2c529050e4d80d5866a1405445d3357d.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2cdd0e6282aa1fbed19e8507b95521f4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2cdd0e6282aa1fbed19e8507b95521f4.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2cdd0e6282aa1fbed19e8507b95521f4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_2cdd0e6282aa1fbed19e8507b95521f4.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_3718cacd985a0ba898ee13e41f238fab.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_3718cacd985a0ba898ee13e41f238fab.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_3718cacd985a0ba898ee13e41f238fab.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_3718cacd985a0ba898ee13e41f238fab.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_4bd197e2978c6824cffa38aac838d6c4.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_4bd197e2978c6824cffa38aac838d6c4.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_4bd197e2978c6824cffa38aac838d6c4.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_4bd197e2978c6824cffa38aac838d6c4.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_51b6bca8764580e4cc05c70cd5c1b84a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_51b6bca8764580e4cc05c70cd5c1b84a.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_51b6bca8764580e4cc05c70cd5c1b84a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_51b6bca8764580e4cc05c70cd5c1b84a.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_56adb1988b0162c02d3aaafcbaf6a2fb.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_56adb1988b0162c02d3aaafcbaf6a2fb.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_56adb1988b0162c02d3aaafcbaf6a2fb.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_56adb1988b0162c02d3aaafcbaf6a2fb.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5a725992fa0bed642bb51f91f1943859.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5a725992fa0bed642bb51f91f1943859.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5a725992fa0bed642bb51f91f1943859.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5a725992fa0bed642bb51f91f1943859.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5ceeb7b0fde89281cc5cdc837bcda9ae.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5ceeb7b0fde89281cc5cdc837bcda9ae.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5ceeb7b0fde89281cc5cdc837bcda9ae.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5ceeb7b0fde89281cc5cdc837bcda9ae.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5d5024f261af376cf277d338a2c462fe.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5d5024f261af376cf277d338a2c462fe.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5d5024f261af376cf277d338a2c462fe.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5d5024f261af376cf277d338a2c462fe.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5fd0207cf2a54fdce153f0ba2a72de53.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5fd0207cf2a54fdce153f0ba2a72de53.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5fd0207cf2a54fdce153f0ba2a72de53.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_5fd0207cf2a54fdce153f0ba2a72de53.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_602826acb0e2c96884c01f27517806af.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_602826acb0e2c96884c01f27517806af.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_602826acb0e2c96884c01f27517806af.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_602826acb0e2c96884c01f27517806af.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_66e902e44da20531c734b4b83929bd75.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_66e902e44da20531c734b4b83929bd75.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_66e902e44da20531c734b4b83929bd75.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_66e902e44da20531c734b4b83929bd75.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_703d4ec1a377833b467174f916b16c69.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_703d4ec1a377833b467174f916b16c69.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_703d4ec1a377833b467174f916b16c69.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_703d4ec1a377833b467174f916b16c69.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_7e4e76e4e53736212e52674d4f074d80.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_7e4e76e4e53736212e52674d4f074d80.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_7e4e76e4e53736212e52674d4f074d80.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_7e4e76e4e53736212e52674d4f074d80.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_7e958aa0a02fb04c017ed4dfa959e9c6.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_7e958aa0a02fb04c017ed4dfa959e9c6.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_7e958aa0a02fb04c017ed4dfa959e9c6.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_7e958aa0a02fb04c017ed4dfa959e9c6.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_860c1ccc386c8c0bb86788849cdb62fc.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_860c1ccc386c8c0bb86788849cdb62fc.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_860c1ccc386c8c0bb86788849cdb62fc.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_860c1ccc386c8c0bb86788849cdb62fc.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_8e11b7ac78ab2911b04bab9e13104f3f.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_8e11b7ac78ab2911b04bab9e13104f3f.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_8e11b7ac78ab2911b04bab9e13104f3f.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_8e11b7ac78ab2911b04bab9e13104f3f.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_9136478d2aabbccb6cddc69b9176f85c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_9136478d2aabbccb6cddc69b9176f85c.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_9136478d2aabbccb6cddc69b9176f85c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_9136478d2aabbccb6cddc69b9176f85c.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_9bfc2b4b4198a3e0ccf8a847c4374461.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_9bfc2b4b4198a3e0ccf8a847c4374461.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_9bfc2b4b4198a3e0ccf8a847c4374461.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_9bfc2b4b4198a3e0ccf8a847c4374461.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_a2865c7c0319068b1c2f67b4c9f3b399.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_a2865c7c0319068b1c2f67b4c9f3b399.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_a2865c7c0319068b1c2f67b4c9f3b399.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_a2865c7c0319068b1c2f67b4c9f3b399.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_ada534c1f44f07d360f8a22a870d1ca9.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_ada534c1f44f07d360f8a22a870d1ca9.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_ada534c1f44f07d360f8a22a870d1ca9.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_ada534c1f44f07d360f8a22a870d1ca9.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_b384f0e3944756db95f0150521a5f536.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_b384f0e3944756db95f0150521a5f536.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_b384f0e3944756db95f0150521a5f536.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_b384f0e3944756db95f0150521a5f536.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_c54373a77eac9fd41760d6e549c7a872.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_c54373a77eac9fd41760d6e549c7a872.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_c54373a77eac9fd41760d6e549c7a872.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_c54373a77eac9fd41760d6e549c7a872.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d558438bf492975eca13ae74dce17b43.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d558438bf492975eca13ae74dce17b43.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d558438bf492975eca13ae74dce17b43.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d558438bf492975eca13ae74dce17b43.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d969eddc23be5564d4b703ada91afe63.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d969eddc23be5564d4b703ada91afe63.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d969eddc23be5564d4b703ada91afe63.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d969eddc23be5564d4b703ada91afe63.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d979dd43b31cf081f5cd3cccb51a4fff.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d979dd43b31cf081f5cd3cccb51a4fff.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d979dd43b31cf081f5cd3cccb51a4fff.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_d979dd43b31cf081f5cd3cccb51a4fff.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_eab36b80b900c06640279c53d29843fd.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_eab36b80b900c06640279c53d29843fd.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_eab36b80b900c06640279c53d29843fd.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_eab36b80b900c06640279c53d29843fd.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_f63e7086ba8f426d758f8f16cee9b98c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_f63e7086ba8f426d758f8f16cee9b98c.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_f63e7086ba8f426d758f8f16cee9b98c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_f63e7086ba8f426d758f8f16cee9b98c.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_fa37740f26cd4d8bd8c4ef127a55532a.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_fa37740f26cd4d8bd8c4ef127a55532a.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_fa37740f26cd4d8bd8c4ef127a55532a.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_fa37740f26cd4d8bd8c4ef127a55532a.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_fb8af4095cd5ff8c77806379c6b3559c.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_fb8af4095cd5ff8c77806379c6b3559c.py index 499d26f7c..06deb3bc2 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_fb8af4095cd5ff8c77806379c6b3559c.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vicclientrange_fb8af4095cd5ff8c77806379c6b3559c.py @@ -160,7 +160,7 @@ def ProvInfoTlvs(self): """ Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet): The provisioning TLVs associated with this range. + - str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet): The provisioning TLVs associated with this range. """ return self._get_attribute(self._SDM_ATT_MAP["ProvInfoTlvs"]) @@ -238,7 +238,7 @@ def update( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -273,7 +273,7 @@ def add( - MacsPerVif (number): Number of MAC interfaces managed by a single VIF object. - Name (str): Name of range - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. @@ -328,7 +328,7 @@ def find( - Name (str): Name of range - ObjectId (str): Unique identifier for this object - ProvInfoOui (str): IEEE OUI owning the provisioning information type space. - - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/.../vicOptionSet)): The provisioning TLVs associated with this range. + - ProvInfoTlvs (str(None | /api/v1/sessions/1/ixnetwork/globals/protocolStack/vicClientGlobals/vicOptionSet)): The provisioning TLVs associated with this range. - ProvInfoType (number): The type of the provisioning information (defined in each namespace). - TlvOffset (number): The number of TLV increments to apply before using the TLV values for this range. - VifActive (bool): The initial state of this interface set: true for Active, false for Standby. diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vsirange_89147b4a94e33164f96e37b09ee46b58.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vsirange_89147b4a94e33164f96e37b09ee46b58.py index a04542f75..727c8a940 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vsirange_89147b4a94e33164f96e37b09ee46b58.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/vsirange_89147b4a94e33164f96e37b09ee46b58.py @@ -563,7 +563,7 @@ def ChangeParentRange(self, *args, **kwargs): changeParentRange(Target=href, async_operation=bool) ---------------------------------------------------- - - Target (str(None | /api/v1/sessions/1/ixnetwork/vport/.../erRange)): + - Target (str(None | /api/v1/sessions/1/ixnetwork/vport/protocolStack/ethernet/vepaEndpoint/range/evbStationRange/erRange)): - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. Raises diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/vport.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/vport.py index 26ca02c21..5d68c1221 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/vport.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/vport.py @@ -389,7 +389,7 @@ def ConnectedTo(self): """DEPRECATED Returns ------- - - str(None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port): The physical port to which the unassigned port is assigned. + - str(None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port): The physical port to which the unassigned port is assigned. """ return self._get_attribute(self._SDM_ATT_MAP["ConnectedTo"]) @@ -811,7 +811,7 @@ def update( Args ---- - - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port)): The physical port to which the unassigned port is assigned. + - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port)): The physical port to which the unassigned port is assigned. - IsPullOnly (bool): (This action only affects assigned ports.) This action will temporarily set the port as an Unassigned Port. This function is used to pull the configuration set by a Tcl script or an IxExplorer port file into the IxNetwork configuration. - Location (str): The current format is {chassisIp}/{frontPanelPort}.{fanoutPort} or {chassisIp};{cardId};{portId} for legacy systems. - Name (str): The description of the port: (1) For an assigned port, the format is: (Port type) (card no.): (port no.) - (chassis name or IP). (2) For an (unassigned) port configuration, the format is: (Port type) Port 00x. @@ -852,7 +852,7 @@ def add( Args ---- - - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port)): The physical port to which the unassigned port is assigned. + - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port)): The physical port to which the unassigned port is assigned. - IsPullOnly (bool): (This action only affects assigned ports.) This action will temporarily set the port as an Unassigned Port. This function is used to pull the configuration set by a Tcl script or an IxExplorer port file into the IxNetwork configuration. - Location (str): The current format is {chassisIp}/{frontPanelPort}.{fanoutPort} or {chassisIp};{cardId};{portId} for legacy systems. - Name (str): The description of the port: (1) For an assigned port, the format is: (Port type) (card no.): (port no.) - (chassis name or IP). (2) For an (unassigned) port configuration, the format is: (Port type) Port 00x. @@ -942,7 +942,7 @@ def find( - AssignedTo (str): (Deprecated, Read Only) A new port is assigned with this option. - AssignedToDisplayName (str): - CaptureSupported (str(data | control | dataAndControl | none)): - - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/availableHardware/.../port)): The physical port to which the unassigned port is assigned. + - ConnectedTo (str(None | /api/v1/sessions/1/ixnetwork/availableHardware/chassis/card/port)): The physical port to which the unassigned port is assigned. - ConnectionInfo (str): Detailed information about location of the physical port that is assigned to this port configuration. - ConnectionState (str(assignedInUseByOther | assignedUnconnected | connectedLinkDown | connectedLinkUp | connecting | unassigned)): Consolidated state of the vport. This combines the connection state with link state. - ConnectionStatus (str): A string describing the status of the hardware connected to this vport @@ -1005,6 +1005,30 @@ def read(self, href): """ return self._read(href) + def AddEgressOnlyTracking(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the addEgressOnlyTracking operation on the server. + + Add Egress Only Tracking to the configuration. Pass only those ports which do not have egress only tracking enabled + + addEgressOnlyTracking(async_operation=bool) + ------------------------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute( + "addEgressOnlyTracking", payload=payload, response_object=None + ) + def AddGclEntry(self, *args, **kwargs): # type: (*Any, **Any) -> None """Executes the addGclEntry operation on the server. @@ -1706,7 +1730,7 @@ def SendArp(self, *args, **kwargs): sendArp(Arg2=list, async_operation=bool)bool -------------------------------------------- - - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../interface])): NOT DEFINED + - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/vport/interface])): NOT DEFINED - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns bool: NOT DEFINED @@ -1759,7 +1783,7 @@ def SendNs(self, *args, **kwargs): sendNs(Arg2=list, async_operation=bool)bool ------------------------------------------- - - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../interface])): NOT DEFINED + - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/vport/interface])): NOT DEFINED - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns bool: NOT DEFINED @@ -1812,7 +1836,7 @@ def SendRs(self, *args, **kwargs): sendRs(Arg2=list, async_operation=bool)bool ------------------------------------------- - - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/vport/.../interface])): NOT DEFINED + - Arg2 (list(str[None | /api/v1/sessions/1/ixnetwork/vport/interface])): NOT DEFINED - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns bool: NOT DEFINED diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/watch/selectwatch/selectwatch.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/watch/selectwatch/selectwatch.py index e55cf79d5..c0f216370 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/watch/selectwatch/selectwatch.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/watch/selectwatch/selectwatch.py @@ -127,7 +127,7 @@ def Selects(self): """ Returns ------- - - list(dict(from:str[None | /api/v1/sessions/1/ixnetwork//.../*],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(node:str,properties:list[str])])): + - list(dict(from:str[None | /api/v1/sessions/1/ixnetwork/],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(node:str,properties:list[str])])): """ return self._get_attribute(self._SDM_ATT_MAP["Selects"]) @@ -169,7 +169,7 @@ def update( ---- - MaxExecutionTime (number): The maximum amount of time a watch can take in milliseconds. If the execution time exceeds this value the watch will be disabled.To bypass this check set the value to 0. - PollInterval (number): The interval in milliseconds the watch will be polled. Minimum value is 100ms. - - Selects (list(dict(from:str[None | /api/v1/sessions/1/ixnetwork//.../*],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(node:str,properties:list[str])]))): + - Selects (list(dict(from:str[None | /api/v1/sessions/1/ixnetwork/],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(node:str,properties:list[str])]))): - Topic (str): Raises @@ -185,7 +185,7 @@ def add(self, MaxExecutionTime=None, PollInterval=None, Selects=None, Topic=None ---- - MaxExecutionTime (number): The maximum amount of time a watch can take in milliseconds. If the execution time exceeds this value the watch will be disabled.To bypass this check set the value to 0. - PollInterval (number): The interval in milliseconds the watch will be polled. Minimum value is 100ms. - - Selects (list(dict(from:str[None | /api/v1/sessions/1/ixnetwork//.../*],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(node:str,properties:list[str])]))): + - Selects (list(dict(from:str[None | /api/v1/sessions/1/ixnetwork/],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(node:str,properties:list[str])]))): - Topic (str): Returns @@ -234,7 +234,7 @@ def find( - LastNotification (str): - MaxExecutionTime (number): The maximum amount of time a watch can take in milliseconds. If the execution time exceeds this value the watch will be disabled.To bypass this check set the value to 0. - PollInterval (number): The interval in milliseconds the watch will be polled. Minimum value is 100ms. - - Selects (list(dict(from:str[None | /api/v1/sessions/1/ixnetwork//.../*],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(node:str,properties:list[str])]))): + - Selects (list(dict(from:str[None | /api/v1/sessions/1/ixnetwork/],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(node:str,properties:list[str])]))): - Token (number): - Topic (str): diff --git a/ixnetwork_restpy/testplatform/sessions/ixnetwork/watch/watch.py b/ixnetwork_restpy/testplatform/sessions/ixnetwork/watch/watch.py index 2f032de41..2126bfa23 100644 --- a/ixnetwork_restpy/testplatform/sessions/ixnetwork/watch/watch.py +++ b/ixnetwork_restpy/testplatform/sessions/ixnetwork/watch/watch.py @@ -245,7 +245,7 @@ def AddSelectWatch(self, *args, **kwargs): addSelectWatch(Selects=list, WatchTopic=string, async_operation=bool)object --------------------------------------------------------------------------- - - Selects (list(dict(from:str[None | /api/v1/sessions/1/ixnetwork//.../*],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(child:str,properties:list[str])]))): + - Selects (list(dict(from:str[None | /api/v1/sessions/1/ixnetwork/],properties:list[str],children:list[dict(child:str,properties:list[str],filters:list[dict(property:str,regex:str)])],inlines:list[dict(child:str,properties:list[str])]))): - WatchTopic (str): - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns dict(arg1:str,arg2:number): @@ -262,6 +262,28 @@ def AddSelectWatch(self, *args, **kwargs): payload[item[0]] = item[1] return self._execute("addSelectWatch", payload=payload, response_object=None) + def ClearScriptWatchMessages(self, *args, **kwargs): + # type: (*Any, **Any) -> None + """Executes the clearScriptWatchMessages operation on the server. + + clearScriptWatchMessages(async_operation=bool) + ---------------------------------------------- + - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. + + Raises + ------ + - NotFoundError: The requested resource does not exist on the server + - ServerError: The server has encountered an uncategorized error condition + """ + payload = {"Arg1": self.href} + for i in range(len(args)): + payload["Arg%s" % (i + 2)] = args[i] + for item in kwargs.items(): + payload[item[0]] = item[1] + return self._execute( + "clearScriptWatchMessages", payload=payload, response_object=None + ) + def RemoveWatches(self, *args, **kwargs): # type: (*Any, **Any) -> None """Executes the removeWatches operation on the server. diff --git a/uhd_restpy/assistants/batch/batchadd.py b/uhd_restpy/assistants/batch/batchadd.py index bbf9330f5..5f08a449e 100644 --- a/uhd_restpy/assistants/batch/batchadd.py +++ b/uhd_restpy/assistants/batch/batchadd.py @@ -196,7 +196,18 @@ def _make_xpath_json(self, node, config, child_list): elif "arg1" in element and isinstance( element["arg1"], Base ): - element["arg1"] = element["arg1"]._properties["xpath"] + if "href" in element["arg1"]._properties: + element["arg1"] = self._get_select_response( + element["arg1"]._properties["href"] + )[0]["xpath"] + elif "xpath" in element["arg1"]._properties: + element["arg1"] = element["arg1"]._properties[ + "xpath" + ] + else: + raise Exception( + "neither xpath nor href present, something went wrong!" + ) temp_list.append(element) else: temp_list.append(element) diff --git a/version.txt b/version.txt index ab679818c..a5ba93251 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.1.6 \ No newline at end of file +1.1.7 \ No newline at end of file