yaocloud / yao

Yet Another OpenStack API wrapper
MIT License
35 stars 12 forks source link

Add update/delete to instance method #192

Closed buty4649 closed 2 years ago

buty4649 commented 2 years ago

Yao::Resources::* に update/deleteインスタンスメソッドを追加します。 今までクラスメソッドを呼び出していましたが、インスタンスから直接update/deleteできるようになります。 ユースケースととしては以下のような感じです。

s = Yao::Server.get("example")

# nameを更新
s.update(name: "example-2")

# 削除
s.delete