From notifications-return-16161-archive-asf-public=cust-asf.ponee.io@libcloud.apache.org Fri Sep 13 10:45:00 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id C39B9180652 for ; Fri, 13 Sep 2019 12:44:59 +0200 (CEST) Received: (qmail 8524 invoked by uid 500); 13 Sep 2019 10:44:59 -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 8515 invoked by uid 500); 13 Sep 2019 10:44:59 -0000 Delivered-To: apmail-libcloud-commits@libcloud.apache.org Received: (qmail 8512 invoked by uid 99); 13 Sep 2019 10:44:59 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Sep 2019 10:44:59 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 0EFCE81586; Fri, 13 Sep 2019 10:44:59 +0000 (UTC) Date: Fri, 13 Sep 2019 10:44:58 +0000 To: "commits@libcloud.apache.org" Subject: [libcloud] branch trunk updated: finish #1323, add driver to list in types and providers MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156837149861.25239.17179024744481493434@gitbox.apache.org> From: tomaz@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: libcloud X-Git-Refname: refs/heads/trunk X-Git-Reftype: branch X-Git-Oldrev: 30f897e33d2e07ac1ee5edd9d5607559ad6ecfcc X-Git-Newrev: 4120528c71224ebed65fd207f3084e38d1fb59c4 X-Git-Rev: 4120528c71224ebed65fd207f3084e38d1fb59c4 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git The following commit(s) were added to refs/heads/trunk by this push: new 4120528 finish #1323, add driver to list in types and providers new a3334dc Merge pull request #1350 from zepheiryan/list-gandi-live-dns-driver 4120528 is described below commit 4120528c71224ebed65fd207f3084e38d1fb59c4 Author: Ryan Lee AuthorDate: Thu Sep 12 19:01:21 2019 -0700 finish #1323, add driver to list in types and providers --- libcloud/dns/providers.py | 2 ++ libcloud/dns/types.py | 1 + 2 files changed, 3 insertions(+) diff --git a/libcloud/dns/providers.py b/libcloud/dns/providers.py index d815047..cc1409c 100644 --- a/libcloud/dns/providers.py +++ b/libcloud/dns/providers.py @@ -40,6 +40,8 @@ DRIVERS = { ('libcloud.dns.drivers.route53', 'Route53DNSDriver'), Provider.GANDI: ('libcloud.dns.drivers.gandi', 'GandiDNSDriver'), + Provider.GANDI_LIVE: + ('libcloud.dns.drivers.gandi_live', 'GandiLiveDNSDriver'), Provider.GOOGLE: ('libcloud.dns.drivers.google', 'GoogleDNSDriver'), Provider.SOFTLAYER: ('libcloud.dns.drivers.softlayer', 'SoftLayerDNSDriver'), diff --git a/libcloud/dns/types.py b/libcloud/dns/types.py index 832f2de..72a6dbf 100644 --- a/libcloud/dns/types.py +++ b/libcloud/dns/types.py @@ -44,6 +44,7 @@ class Provider(object): DNSIMPLE = 'dnsimple' DURABLEDNS = 'durabledns' GANDI = 'gandi' + GANDI_LIVE = 'gandi_live' GODADDY = 'godaddy' GOOGLE = 'google' HOSTVIRTUAL = 'hostvirtual'