Giter Club home page Giter Club logo

Comments (3)

koalalorenzo avatar koalalorenzo commented on July 28, 2024

Actually this is possible.
Every Action object has the wait() method.

https://github.com/koalalorenzo/python-digitalocean/blob/master/digitalocean/Action.py

This will allow you to wait until the action is completed. Just let the method (reboot, start, destroy) return an action object, not the dictionary, and use the method wait()

So as described in the other issue #112 , it should be different.

from python-digitalocean.

moyamo avatar moyamo commented on July 28, 2024

@koalalorenzo droplet.create() and droplet.destroy() do not return Actions or dictionaries so it is not possible to use the wait() method. The DigitalOcean API does not return an Action for the destroy command. However, for the create command, it sends something that looks like an Action ID. This fact is not well documented so I'm not sure if this is a Droplet Action that can be queried at /droplets/DROPLET_ID/actions/ACTION_ID or just an Action which needs to be queried at /actions/ACTION_ID.

@artfullyContrived You can try to do this so long

 droplet.create()
 action = Action(id=droplet.action_ids[0], token=droplet.token, droplet_id=droplet.id)
 action.wait()

I doubt that this will work, but you can try it.

from python-digitalocean.

robreiss avatar robreiss commented on July 28, 2024

@moyamo your example almost worked for me, I needed to add a "load" call to the action before waiting for it. Thanks, your comment helped me out.

droplet.create()
action = Action(id=droplet.action_ids[0], token=droplet.token, droplet_id=droplet.id)
action.load()
action.wait(5)
# now the droplet has been created, therefore I can use it to attach a floatingip
fip = digitalocean.FloatingIP(ip='45.55.xxx.xxx', token=droplet.token)
fip.assign(droplet_id=droplet.id)

from python-digitalocean.

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.