Giter VIP home page Giter VIP logo

Comments (3)

ajbalogh avatar ajbalogh commented on August 18, 2024
from ixnetwork_restpy.testplatform.testplatform import TestPlatform


testplatform = TestPlatform('127.0.0.1')
sessions = testplatform.Sessions.add()
ixnetwork = sessions.Ixnetwork
traffic = ixnetwork.Traffic

# the TrafficItem class is a container class and 
# will encapsulate all server side resources that are "found"
#
# some notes on the Find() method
# the main premise of the package is based around the .find() method
# it offers named parameters for all properties in the class
# each named parameter supports a regex to allow for finding specific instances
# this allows the encapsulated data to be reduced to specific instances that you are interested in
# some examples:
# traffic.TrafficItem.find(Name='^TrafficItem 1$') 
#   - uses regex on the server to find the a traffic item whose name exactly matches TrafficItem 1
# traffic.TrafficItem.find(Name='^(TrafficItem 1|TrafficItem 2)$') 
#   - uses regex on the server to find traffic items whose name exactly matches TrafficItem 1 and/or TrafficItem 2
#
trafficitem = traffic.TrafficItem.find()

# the Generate operation will generate across all "found" encapsulated traffic items
trafficitem.Generate()

from ixnetwork_restpy.

ajbalogh avatar ajbalogh commented on August 18, 2024

Fix auto generated code to determine if signature takes multiple args and build the arg1 list accordingly.

from ixnetwork_restpy.

ajbalogh avatar ajbalogh commented on August 18, 2024

available in version 1.0.44

from ixnetwork_restpy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.