Git Product home page Git Product logo

Comments (3)

swalberg avatar swalberg commented on August 28, 2024

Hi there Jimmy,

The commit message for 4182f7d says

Methods like /foo-bar/ can be called with foo_bar

So I made the (rather incorrect) assumption that people were like us and used dashes.

Can you give me a quick code sample to show what you're doing please? I need to go read up on this as it's been a while.

from f5-icontrol.

jimbodragon avatar jimbodragon commented on August 28, 2024

Actually, I just try to list the members of a pool as we have several F5 system in our infrastructure, I need to made some clean up that I planned to do it later.

Here my code:

f5 = F5::Icontrol::RAPI.new username: 'admin', password: 'password', host: 'big_ip_system'

pools = f5.mgmt.tm.ltm.pool.get_collection

pools_hash = Hash.new
pools.each do |pool|
  pools_hash[pool.name] = Hash.new
  pools_hash[pool.name]["pool"] = pool
  pools_hash[pool.name]["members"] = pool.members.load
  pools_hash[pool.name]["members"].each do |member|
    puts "#{pool.name}, #{member.name}"
  end
end

from f5-icontrol.

mattlqx avatar mattlqx commented on August 28, 2024

Bummer, we're using underscores in our pool names as well.

(sorry for the push spam below)

from f5-icontrol.

Related Issues (9)

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.