[GitHub] libcloud pull request #937: DimensionData - Add support to specify api versi...

2016-11-01 Thread samuelchong
Github user samuelchong closed the pull request at:

https://github.com/apache/libcloud/pull/937


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] libcloud pull request #937: DimensionData - Add support to specify api versi...

2016-11-01 Thread samuelchong
GitHub user samuelchong opened a pull request:

https://github.com/apache/libcloud/pull/937

DimensionData - Add support to specify api version and add new api endpoint 
for QA env

## 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/samuelchong/libcloud upgrade_caas_2_4

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/libcloud/pull/937.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 #937


commit c0ecfe65330130c9465b5757c7781e371fead9a1
Author: Samuel Chong 
Date:   2016-11-02T03:57:49Z

Add support for api version selection and new api endpoint for QA env




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Updated] (LIBCLOUD-873) Updated ProfitBricks Compute Driver (REST api v3)

2016-11-01 Thread Matt Finucane (JIRA)

 [ 
https://issues.apache.org/jira/browse/LIBCLOUD-873?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Finucane updated LIBCLOUD-873:
---
Description: 
Updated the compute driver for the ProfitBricks platform.

This update removes the SOAP api calls and replaces them with REST calls.

All functions documented in v3 of the ProfitBricks Cloud API are included with 
this driver.

This is also related to the issue 
https://issues.apache.org/jira/browse/LIBCLOUD-866?filter=-2

  was:
Updating the compute driver for the ProfitBricks platform.

This update removes the SOAP api calls and replaces them with REST calls.

All functions documented in v3 of the ProfitBricks Cloud API are included with 
this driver.


> Updated ProfitBricks Compute Driver (REST api v3)
> -
>
> Key: LIBCLOUD-873
> URL: https://issues.apache.org/jira/browse/LIBCLOUD-873
> Project: Libcloud
>  Issue Type: Improvement
>  Components: Compute
>Affects Versions: 0.13.3
> Environment: Linux, Windows
>Reporter: Matt Finucane
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Updated the compute driver for the ProfitBricks platform.
> This update removes the SOAP api calls and replaces them with REST calls.
> All functions documented in v3 of the ProfitBricks Cloud API are included 
> with this driver.
> This is also related to the issue 
> https://issues.apache.org/jira/browse/LIBCLOUD-866?filter=-2



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (LIBCLOUD-873) Updated ProfitBricks Compute Driver (REST api v3)

2016-11-01 Thread Matt Finucane (JIRA)
Matt Finucane created LIBCLOUD-873:
--

 Summary: Updated ProfitBricks Compute Driver (REST api v3)
 Key: LIBCLOUD-873
 URL: https://issues.apache.org/jira/browse/LIBCLOUD-873
 Project: Libcloud
  Issue Type: Improvement
  Components: Compute
Affects Versions: 0.13.3
 Environment: Linux, Windows
Reporter: Matt Finucane


Updating the compute driver for the ProfitBricks platform.

This update removes the SOAP api calls and replaces them with REST calls.

All functions documented in v3 of the ProfitBricks Cloud API are included with 
this driver.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (LIBCLOUD-869) Implement get methods for AWS ALB driver

2016-11-01 Thread Anton Kozyrev (JIRA)

[ 
https://issues.apache.org/jira/browse/LIBCLOUD-869?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15625762#comment-15625762
 ] 

Anton Kozyrev commented on LIBCLOUD-869:


PR:
https://github.com/apache/libcloud/pull/936/

> Implement get methods for AWS ALB driver
> 
>
> Key: LIBCLOUD-869
> URL: https://issues.apache.org/jira/browse/LIBCLOUD-869
> Project: Libcloud
>  Issue Type: Sub-task
>  Components: LoadBalancer
>Reporter: Anton Kozyrev
>
> Implement get methods in AWS ALB driver:
> - list_balancers;
> - get_balancer.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[GitHub] libcloud pull request #936: [LIBCLOUD-869] Implement get methods for AWS ALB...

2016-11-01 Thread lrvan
GitHub user lrvan opened a pull request:

https://github.com/apache/libcloud/pull/936

[LIBCLOUD-869] Implement get methods for AWS ALB driver

## AWS ALB Driver - get methods.

### Description

AWS has introduced new type of load balancer - Application Load Balancer 
(ALB). 

http://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/Welcome.html

It's supported in APIv2 (2015-12-01) whereas current libcloud AWS load 
balancer driver implementation works with APIv1 (2012-06-01). API versions 
aren't compatible - it's impossible to operate with classic load balancer (ELB) 
using v2 API and vice versa. So separate driver for ALB needs to be implemented.

This change implements Provider.ALB driver with basic read functionality 
provided by the following methods:
- list_balancers;
- get_balancer;
- balancer_list_members;
- ex_balancer_list_listeners.

### Status
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/lrvan/libcloud LIBCLOUD-869

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/libcloud/pull/936.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 #936


commit c53331f60094c8600e29b6e145cf3216abb218cf
Author: Anton Kozyrev 
Date:   2016-10-28T13:58:58Z

[LIBCLOUD-869] - AWS ALB driver with basic get methods

commit fc883f8f451eb58df18354dbf4f0b2cef45a2fbe
Author: Anton Kozyrev 
Date:   2016-11-01T15:35:26Z

[LIBCLOUD-869] - AWS ALB driver tests for get methods




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Commented] (LIBCLOUD-869) Implement get methods for AWS ALB driver

2016-11-01 Thread Anton Kozyrev (JIRA)

[ 
https://issues.apache.org/jira/browse/LIBCLOUD-869?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15625723#comment-15625723
 ] 

Anton Kozyrev commented on LIBCLOUD-869:


Tests:
https://github.com/lrvan/libcloud/commit/fc883f8f451eb58df18354dbf4f0b2cef45a2fbe

> Implement get methods for AWS ALB driver
> 
>
> Key: LIBCLOUD-869
> URL: https://issues.apache.org/jira/browse/LIBCLOUD-869
> Project: Libcloud
>  Issue Type: Sub-task
>  Components: LoadBalancer
>Reporter: Anton Kozyrev
>
> Implement get methods in AWS ALB driver:
> - list_balancers;
> - get_balancer.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[GitHub] libcloud pull request #910: Updating README.rst as README.md

2016-11-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/910


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] libcloud pull request #927: 0.13.x

2016-11-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/927


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] libcloud pull request #911: Update and rename CONTRIBUTING.rst to CONTRIBUTI...

2016-11-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/911


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] libcloud pull request #935: 0.12.x

2016-11-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/935


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] libcloud pull request #934: Update LICENSE

2016-11-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/934


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] libcloud pull request #928: Update example_compute.py

2016-11-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/928


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] libcloud pull request #929: 0.6.x

2016-11-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/929


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


libcloud git commit: Closing Hacktoberfest spam

2016-11-01 Thread anthonyshaw
Repository: libcloud
Updated Branches:
  refs/heads/trunk 627b97243 -> 3b515f4ef


Closing Hacktoberfest spam

Closes #935
Closes #934
Closes #933
Closes #932
Closes #930
Closes #929
Closes #928
Closes #927
Closes #924
Closes #911
Closes #910


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/3b515f4e
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/3b515f4e
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/3b515f4e

Branch: refs/heads/trunk
Commit: 3b515f4ef6c7171ccb117867d12768042865ebfd
Parents: 627b972
Author: Anthony Shaw 
Authored: Tue Nov 1 11:41:07 2016 +0100
Committer: Anthony Shaw 
Committed: Tue Nov 1 11:41:07 2016 +0100

--
 docs/other/hacktoberfest.txt | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/libcloud/blob/3b515f4e/docs/other/hacktoberfest.txt
--
diff --git a/docs/other/hacktoberfest.txt b/docs/other/hacktoberfest.txt
index 97c54fa..6465de0 100644
--- a/docs/other/hacktoberfest.txt
+++ b/docs/other/hacktoberfest.txt
@@ -9,4 +9,11 @@ Accounts raising spam pull requests as part of hacktoberfest:
 @go4st
 @ShyamW
 @lin31504
-@blusoul12
\ No newline at end of file
+@blusoul12
+@ghost
+@thejonnyhall
+@bguru
+@haucke
+@vilnitskiy
+@htrueman
+@thomas104



[GitHub] libcloud pull request #924: 0.11.x

2016-11-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/924


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] libcloud pull request #930: 0.20.1

2016-11-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/930


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] libcloud pull request #932: 0.12.x

2016-11-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/932


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---