From notifications-return-14262-archive-asf-public=cust-asf.ponee.io@libcloud.apache.org Fri Jan 26 19:08:06 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 5D710180657 for ; Fri, 26 Jan 2018 19:08:06 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 4D130160C3E; Fri, 26 Jan 2018 18:08:06 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 96015160C2E for ; Fri, 26 Jan 2018 19:08:05 +0100 (CET) Received: (qmail 95039 invoked by uid 500); 26 Jan 2018 18:08:04 -0000 Mailing-List: contact notifications-help@libcloud.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@libcloud.apache.org Delivered-To: mailing list notifications@libcloud.apache.org Received: (qmail 95030 invoked by uid 99); 26 Jan 2018 18:08:04 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Jan 2018 18:08:04 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 65B201A1471 for ; Fri, 26 Jan 2018 18:08:04 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -101.511 X-Spam-Level: X-Spam-Status: No, score=-101.511 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id evga-LaecGk4 for ; Fri, 26 Jan 2018 18:08:03 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 4154D60EF7 for ; Fri, 26 Jan 2018 18:08:02 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id E99B4E0F78 for ; Fri, 26 Jan 2018 18:08:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 5169B240FA for ; Fri, 26 Jan 2018 18:08:00 +0000 (UTC) Date: Fri, 26 Jan 2018 18:08:00 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: notifications@libcloud.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (LIBCLOUD-977) Implement DigitalOcean's rebuild and resize commands MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LIBCLOUD-977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16341372#comment-16341372 ] ASF GitHub Bot commented on LIBCLOUD-977: ----------------------------------------- GitHub user adamwight opened a pull request: https://github.com/apache/libcloud/pull/1169 [LIBCLOUD-977] Adds rebuild and resize commands for DigitalOcean Implement the following DigitalOcean APIs as driver-specific extensions, * https://developers.digitalocean.com/documentation/v2/#rebuild-a-droplet * https://developers.digitalocean.com/documentation/v2/#resize-a-droplet Smoke tests locally. ## Changes Title (replace this with a logical title for your changes) ### Description Replace this with the PR description (mention the changes you have made, why you have made them, provide some background and any references to the provider documentation if needed, etc.). For more information on contributing, please see [Contributing](http://libcloud.readthedocs.org/en/latest/development.html#contributing) section of our documentation. ### Status Replace this: describe the PR status. Examples: - work in progress - done, ready for review ### Checklist (tick everything that applies) - [ ] [Code linting](http://libcloud.readthedocs.org/en/latest/development.html#code-style-guide) (required, can be done after the PR checks) - [ ] Documentation - [ ] [Tests](http://libcloud.readthedocs.org/en/latest/testing.html) - [ ] [ICLA](http://libcloud.readthedocs.org/en/latest/development.html#contributing-bigger-changes) (required for bigger changes) You can merge this pull request into a Git repository by running: $ git pull https://github.com/adamwight/libcloud do_rebuild_resize Alternatively you can review and apply these changes as the patch at: https://github.com/apache/libcloud/pull/1169.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #1169 ---- commit 64c485b20cc73d32cfcd19296734f521ce6b78d5 Author: Adam Wight Date: 2018-01-26T18:02:41Z Adds rebuild and resize commands for DigitalOcean Implement the following DigitalOcean APIs as driver-specific extensions, * https://developers.digitalocean.com/documentation/v2/#rebuild-a-droplet * https://developers.digitalocean.com/documentation/v2/#resize-a-droplet Smoke tests locally. ---- > Implement DigitalOcean's rebuild and resize commands > ---------------------------------------------------- > > Key: LIBCLOUD-977 > URL: https://issues.apache.org/jira/browse/LIBCLOUD-977 > Project: Libcloud > Issue Type: New Feature > Components: Compute > Affects Versions: 0.15.1 > Reporter: Adam Wight > Priority: Minor > Original Estimate: 4h > Remaining Estimate: 4h > > I'd like to add "ex_" driver functions for DigitalOcean's rebuild and resize APIs, because I've switched to using libcloud and these are part of my workflow. -- This message was sent by Atlassian JIRA (v7.6.3#76005)