Re: [jclouds] Add vSphere support (#364)

2014-06-20 Thread igreenfield
Create separated pom and add vsphere api as dependency Original message From: lcheng61 notificati...@github.com Date: To: jclouds/jclouds jclo...@noreply.github.com Cc: Izek Greenfield (igreenfi) igree...@cisco.com Subject: Re: [jclouds] Add vSphere support (#364) Hi

Re: [jclouds] Fix for JSON parse error on createNodesInGroup (JCLOUDS-558) (#414)

2014-06-20 Thread Ignasi Barrera
@@ -122,7 +122,15 @@ public ServerWithSecurityGroups deserialize(JsonElement jsonElement, Type type, @Override public Server deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext context) throws JsonParseException { - Server

Re: [jclouds] Fix for JSON parse error on createNodesInGroup (JCLOUDS-558) (#414)

2014-06-20 Thread Ignasi Barrera
+import org.jclouds.openstack.nova.v2_0.domain.Server; +import org.jclouds.openstack.nova.v2_0.domain.Server.Status; +import org.jclouds.openstack.v2_0.domain.Link; +import org.jclouds.openstack.v2_0.domain.Link.Relation; +import org.jclouds.openstack.v2_0.domain.Resource; +import

Re: [jclouds] Fix for JSON parse error on createNodesInGroup (JCLOUDS-558) (#414)

2014-06-20 Thread Ignasi Barrera
Changes LGTM. Thanks @everett-toews! --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/414#issuecomment-46653446

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+ */ +package org.jclouds.openstack.neutron.v2.domain; + +import com.google.common.base.Objects; +import com.google.gson.annotations.SerializedName; + +/** + */ +public class AddressPair { + + @SerializedName(mac_address) + protected final String macAddress; +

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+ +import com.google.common.base.Objects; +import com.google.gson.annotations.SerializedName; + +/** + */ +public class AddressPair { + + @SerializedName(mac_address) + protected final String macAddress; + @SerializedName(ip_address) + protected final String ipAddress; + +

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+ @ResponseParser(ParseRouters.class) + @Fallback(EmptyRoutersFallback.class) + Routers list(PaginationOptions options); + + /** +* Returns a Routers collection that should contain a single router with the id requested. +* +* @param id the id of the router to return

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+ @GET + @Path(/{id}) + @ResponseParser(ParseRouters.class) + @Fallback(EmptyRoutersFallback.class) + Routers get(@PathParam(id) String id); + + /** +* Create a new router +* +* @param router Options for creating a router +* @return the newly created router

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+ @GET + @Path(/{id}) + @ResponseParser(ParseRouters.class) + @Fallback(EmptyRoutersFallback.class) + Routers get(@PathParam(id) String id); + + /** +* Create a new router +* +* @param router Options for creating a router +* @return the newly created router

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+ @Named(router:create) + @POST + @SelectJson(router) + @Fallback(Fallbacks.NullOnNotFoundOr404.class) + @Nullable + Router create(@WrapWith(router) CreateRouter router); + + /** +* Update a router +* +* @param id the id of the router to update +* @param

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +/** + * Provides synchronous access to Network operations on the openstack Neutron API. + * p/ + * Each tenant can define one or more networks. A network is a virtual isolated layer-2 broadcast domain reserved to the

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+ @Path(/{id}) + @SelectJson(network) + @Fallback(Fallbacks.NullOnNotFoundOr404.class) + @Nullable + Network get(@PathParam(id) String id); + + /** +* Create a new network with the specified type +* +* @param network Describes the network to be created. +*

Build failed in Jenkins: jclouds » Apache jclouds Project #2640

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds/org.apache.jclouds$jclouds-project/2640/ -- maven3-agent.jar already up to date maven3-interceptor.jar already up to date maven3-interceptor-commons.jar already up to date ===[JENKINS REMOTING CAPACITY]===

Build failed in Jenkins: jclouds #2640

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds/2640/ -- [...truncated 283 lines...] [INFO] jclouds ElasticHosts Hong Kong provider ... SKIPPED [INFO] jclouds ElasticHosts Sydney provider .. SKIPPED [INFO] jclouds Open Hosting East1

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Zack Shoylev
+ @Path(/{id}) + @SelectJson(network) + @Fallback(Fallbacks.NullOnNotFoundOr404.class) + @Nullable + Network get(@PathParam(id) String id); + + /** +* Create a new network with the specified type +* +* @param network Describes the network to be created. +*

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Zack Shoylev
+ */ +package org.jclouds.openstack.neutron.v2.domain; + +import com.google.common.base.Objects; +import com.google.gson.annotations.SerializedName; + +/** + */ +public class AddressPair { + + @SerializedName(mac_address) + protected final String macAddress; +

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Zack Shoylev
+ @ResponseParser(ParseRouters.class) + @Fallback(EmptyRoutersFallback.class) + Routers list(PaginationOptions options); + + /** +* Returns a Routers collection that should contain a single router with the id requested. +* +* @param id the id of the router to return

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Zack Shoylev
+ @GET + @Path(/{id}) + @ResponseParser(ParseRouters.class) + @Fallback(EmptyRoutersFallback.class) + Routers get(@PathParam(id) String id); + + /** +* Create a new router +* +* @param router Options for creating a router +* @return the newly created router

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Zack Shoylev
+ @GET + @Path(/{id}) + @ResponseParser(ParseRouters.class) + @Fallback(EmptyRoutersFallback.class) + Routers get(@PathParam(id) String id); + + /** +* Create a new router +* +* @param router Options for creating a router +* @return the newly created router

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Zack Shoylev
+ +import com.google.common.base.Objects; +import com.google.gson.annotations.SerializedName; + +/** + */ +public class AddressPair { + + @SerializedName(mac_address) + protected final String macAddress; + @SerializedName(ip_address) + protected final String ipAddress; + +

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+ */ +package org.jclouds.openstack.neutron.v2.domain; + +import com.google.common.base.Objects; +import com.google.gson.annotations.SerializedName; + +/** + */ +public class AddressPair { + + @SerializedName(mac_address) + protected final String macAddress; +

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+ @ResponseParser(ParseRouters.class) + @Fallback(EmptyRoutersFallback.class) + Routers list(PaginationOptions options); + + /** +* Returns a Routers collection that should contain a single router with the id requested. +* +* @param id the id of the router to return

[jira] [Commented] (JCLOUDS-603) CreateServerOptions.novaNetworks() does not work when using with Network.portUuid()

2014-06-20 Thread Zack Shoylev (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-603?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14038772#comment-14038772 ] Zack Shoylev commented on JCLOUDS-603: -- Interestingly enough, I cannot force neutron

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Zack Shoylev
+ @ResponseParser(ParseRouters.class) + @Fallback(EmptyRoutersFallback.class) + Routers list(PaginationOptions options); + + /** +* Returns a Routers collection that should contain a single router with the id requested. +* +* @param id the id of the router to return

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Zack Shoylev
+ @ResponseParser(ParseRouters.class) + @Fallback(EmptyRoutersFallback.class) + Routers list(PaginationOptions options); + + /** +* Returns a Routers collection that should contain a single router with the id requested. +* +* @param id the id of the router to return

[jira] [Commented] (JCLOUDS-588) Exception creating node rackspace with unlisted image

2014-06-20 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-588?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14038794#comment-14038794 ] ASF subversion and git services commented on JCLOUDS-588: - Commit

Re: [jclouds-labs-openstack] Neutron Refactoring (#111)

2014-06-20 Thread Ignasi Barrera
+ @ResponseParser(ParseRouters.class) + @Fallback(EmptyRoutersFallback.class) + Routers list(PaginationOptions options); + + /** +* Returns a Routers collection that should contain a single router with the id requested. +* +* @param id the id of the router to return

Re: [jclouds] JCLOUDS-588: Register discovered images in the image cache (#401)

2014-06-20 Thread Ignasi Barrera
Squashed, rebased, and pushed to [master]8https://git-wip-us.apache.org/repos/asf?p=jclouds.git;a=commit;h=b0250cfb4f7adcb8ed9ecb77bd8228d5f415bb50) and [1.7.x](https://git-wip-us.apache.org/repos/asf?p=jclouds.git;a=commit;h=3589c1475aa919e5a874b7082af748425a6b97b4) --- Reply to this email

Re: [jclouds] JCLOUDS-588: Register discovered images in the image cache (#401)

2014-06-20 Thread Ignasi Barrera
Closed #401. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/401#event-133508049

[jira] [Resolved] (JCLOUDS-588) Exception creating node rackspace with unlisted image

2014-06-20 Thread Ignasi Barrera (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-588?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ignasi Barrera resolved JCLOUDS-588. Resolution: Fixed Exception creating node rackspace with unlisted image

Jenkins build is back to normal : jclouds » Apache jclouds Project #2641

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds/org.apache.jclouds$jclouds-project/2641/

Jenkins build is back to normal : jclouds » jclouds atmos components #2641

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds/org.apache.jclouds.api$atmos/2641/

Jenkins build is back to normal : jclouds-1.7.x-branch #95

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-1.7.x-branch/95/changes

Build failed in Jenkins: jclouds-labs-google-1.7.x-branch » Apache jclouds labs google #100

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-google-1.7.x-branch/org.apache.jclouds.labs$jclouds-labs-google/100/ -- [...truncated 1902 lines...] Downloaded:

Build failed in Jenkins: jclouds-labs-1.7.x-branch » Apache jclouds labs #66

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-1.7.x-branch/org.apache.jclouds.labs$jclouds-labs/66/ -- [...truncated 2621 lines...] Downloaded:

Build failed in Jenkins: jclouds-labs-1.7.x-branch #66

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-1.7.x-branch/66/ -- [...truncated 2974 lines...] mvn install:install-file -DgroupId=org.apache.jclouds.labs -DartifactId=cloudsigma2 -Dversion=1.7.4-SNAPSHOT -Dclassifier=tests

Build failed in Jenkins: jclouds-labs-aws-1.7.x-branch » Apache jclouds labs aws #56

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-aws-1.7.x-branch/org.apache.jclouds.labs$jclouds-labs-aws/56/ -- [...truncated 2030 lines...] Downloading:

Build failed in Jenkins: jclouds-labs-aws-1.7.x-branch #56

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-aws-1.7.x-branch/56/ -- [...truncated 2356 lines...] [ERROR] central (http://repo.cloudbees.com/content/repositories/central, releases=true, snapshots=false), [ERROR]

Jenkins build is back to stable : jclouds-1.7.x-branch » jclouds compute core #95

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-1.7.x-branch/org.apache.jclouds$jclouds-compute/95/changes

Build failed in Jenkins: jclouds-labs-google-1.7.x-branch #100

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-google-1.7.x-branch/100/ -- [...truncated 2209 lines...] [ERROR] [ERROR] Path to dependency: [ERROR] 1) org.apache.jclouds.labs:google-compute-engine:jar:1.7.4-SNAPSHOT [ERROR] 2)

Build failed in Jenkins: jclouds-labs-aws-1.7.x-branch #56

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-aws-1.7.x-branch/56/ -- [...truncated 2355 lines...] [ERROR] from the specified remote repositories: [ERROR] central (http://repo.cloudbees.com/content/repositories/central, releases=true,

Jenkins build is back to normal : jclouds-labs-openstack #373

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-openstack/373/

Jenkins build is back to normal : jclouds-labs » jclouds virtualbox api #499

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs/org.apache.jclouds.labs$virtualbox/499/

Re: [jclouds] JCLOUDS-582: Enhancements to availability zones api (#409)

2014-06-20 Thread Jeremy Daggett
Merged to 1.7.x `6d9af2b` --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/409#issuecomment-46690239

Re: [jclouds] JCLOUDS-582: Enhancements to availability zones api (#409)

2014-06-20 Thread Jeremy Daggett
Closed #409. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/409#event-133549522

[jira] [Commented] (JCLOUDS-582) Enhancements to availability zones api

2014-06-20 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-582?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14038910#comment-14038910 ] ASF subversion and git services commented on JCLOUDS-582: - Commit

Jenkins build is back to normal : jclouds » jclouds-karaf #1048

2014-06-20 Thread BuildHive
See https://buildhive.cloudbees.com/job/jclouds/job/jclouds-karaf/1048/

[jira] [Commented] (JCLOUDS-583) Update HP Cloud compute provider

2014-06-20 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-583?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14038961#comment-14038961 ] ASF subversion and git services commented on JCLOUDS-583: - Commit

[jira] [Updated] (JCLOUDS-582) Enhancements to availability zones api

2014-06-20 Thread Jeremy Daggett (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-582?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jeremy Daggett updated JCLOUDS-582: --- Fix Version/s: 1.7.4 Enhancements to availability zones api

Re: [jclouds] JCLOUDS-583: Updates HP Cloud compute provider to work with 13.5 release (#410)

2014-06-20 Thread Ignasi Barrera
Closed #410. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/410#event-133571583

Re: [jclouds] JCLOUDS-583: Updates HP Cloud compute provider to work with 13.5 release (#410)

2014-06-20 Thread Ignasi Barrera
Merged to [1.7.x](https://git-wip-us.apache.org/repos/asf?p=jclouds.git;a=commit;h=bfc000b171c97f307fa3ae39e5b658b1184c9a62). --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/410#issuecomment-46696485

Build failed in Jenkins: jclouds-labs-google-1.7.x-branch » Apache jclouds labs google #101

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-google-1.7.x-branch/org.apache.jclouds.labs$jclouds-labs-google/101/ -- [...truncated 1898 lines...] Downloading:

Build failed in Jenkins: jclouds-labs-google-1.7.x-branch #101

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-google-1.7.x-branch/101/ -- [...truncated 2212 lines...] [ERROR] 1) org.apache.jclouds.labs:google-compute-engine:jar:1.7.4-SNAPSHOT [ERROR] 2) org.apache.jclouds.labs:oauth:jar:1.7.4-SNAPSHOT [ERROR]

Build failed in Jenkins: jclouds-labs-aws-1.7.x-branch #57

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-aws-1.7.x-branch/57/ -- [...truncated 2359 lines...] [ERROR] central (http://repo.cloudbees.com/content/repositories/central, releases=true, snapshots=false), [JENKINS] Archiving

[jira] [Resolved] (JCLOUDS-582) Enhancements to availability zones api

2014-06-20 Thread Jeremy Daggett (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-582?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jeremy Daggett resolved JCLOUDS-582. Resolution: Fixed Enhancements to availability zones api

Build failed in Jenkins: jclouds-labs-aws-1.7.x-branch » Apache jclouds labs aws #57

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-aws-1.7.x-branch/org.apache.jclouds.labs$jclouds-labs-aws/57/ -- [...truncated 2030 lines...] Downloading:

Build failed in Jenkins: jclouds-labs-aws-1.7.x-branch #58

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-aws-1.7.x-branch/58/ -- [...truncated 2360 lines...] [ERROR] from the specified remote repositories: [ERROR] central (http://repo.cloudbees.com/content/repositories/central, releases=true,

Build failed in Jenkins: jclouds-labs-google-1.7.x-branch #102

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-google-1.7.x-branch/102/ -- [...truncated 2213 lines...] [ERROR] [ERROR] Path to dependency: [ERROR] 1) org.apache.jclouds.labs:google-compute-engine:jar:1.7.4-SNAPSHOT [ERROR] 2)

Build failed in Jenkins: jclouds-labs-aws-1.7.x-branch » Apache jclouds labs aws #58

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-aws-1.7.x-branch/org.apache.jclouds.labs$jclouds-labs-aws/58/ -- [...truncated 2030 lines...] Downloading:

Build failed in Jenkins: jclouds-labs-aws-1.7.x-branch #58

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-aws-1.7.x-branch/58/ -- [...truncated 2359 lines...] [ERROR] [ERROR] from the specified remote repositories: [ERROR] central (http://repo.cloudbees.com/content/repositories/central, releases=true,

Build failed in Jenkins: jclouds-labs-google-1.7.x-branch » Apache jclouds labs google #102

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-google-1.7.x-branch/org.apache.jclouds.labs$jclouds-labs-google/102/ -- [...truncated 1898 lines...] Downloading:

Build failed in Jenkins: jclouds-labs-1.7.x-branch » Apache jclouds labs #68

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-1.7.x-branch/org.apache.jclouds.labs$jclouds-labs/68/ -- [...truncated 787 lines...] Downloaded:

Build failed in Jenkins: jclouds-labs-1.7.x-branch #68

2014-06-20 Thread jenkins-no-reply
See https://jclouds.ci.cloudbees.com/job/jclouds-labs-1.7.x-branch/68/ -- [...truncated 1146 lines...] mvn install:install-file -DgroupId=org.apache.jclouds.labs -DartifactId=cloudsigma2 -Dversion=1.7.4-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file

Re: [jclouds] Adds get() method to KeyPairApi (#391)

2014-06-20 Thread CloudBees pull request builder plugin
[jclouds-pull-requests #916](https://jclouds.ci.cloudbees.com/job/jclouds-pull-requests/916/) SUCCESS This pull request looks good --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/391#issuecomment-46708254

Re: [jclouds] Adds get() method to KeyPairApi (#391)

2014-06-20 Thread CloudBees pull request builder plugin
[jclouds-java-7-pull-requests #1387](https://jclouds.ci.cloudbees.com/job/jclouds-java-7-pull-requests/1387/) SUCCESS This pull request looks good --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/391#issuecomment-46708566

Re: [jclouds] Adds get() method to KeyPairApi (#391)

2014-06-20 Thread Zack Shoylev
+1 --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/391#issuecomment-46708892

Re: [jclouds] Adds get() method to KeyPairApi (#391)

2014-06-20 Thread Jeremy Daggett
Merged to master `da50cd6` --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/391#issuecomment-46709241

[jira] [Commented] (JCLOUDS-455) The OpenStack KeyPairApi is missing get()

2014-06-20 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-455?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14039120#comment-14039120 ] ASF subversion and git services commented on JCLOUDS-455: - Commit

Re: [jclouds] Adds get() method to KeyPairApi (#391)

2014-06-20 Thread Jeremy Daggett
Closed #391. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/391#event-133631452

Re: [jclouds] Adds get() method to KeyPairApi (#391)

2014-06-20 Thread BuildHive
[jclouds » jclouds #1258](https://buildhive.cloudbees.com/job/jclouds/job/jclouds/1258/) SUCCESS This pull request looks good [(what's this?)](https://www.cloudbees.com/what-is-buildhive) --- Reply to this email directly or view it on GitHub:

[jclouds] Backport #391 to 1.7.x branch (#415)

2014-06-20 Thread Jeremy Daggett
This PR backports #391 to the 1.7.x branch. JIRA: https://issues.apache.org/jira/browse/JCLOUDS-455 You can merge this Pull Request by running: git pull https://github.com/rackspace/jclouds backport-455-1.7.x Or you can view, comment on it, or merge it online at:

Re: [jclouds] Backport #391 to 1.7.x branch (#415)

2014-06-20 Thread CloudBees pull request builder plugin
[jclouds-pull-requests #917](https://jclouds.ci.cloudbees.com/job/jclouds-pull-requests/917/) FAILURE Looks like there's a problem with this pull request --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/415#issuecomment-46712779

Re: [jclouds] Fix for JSON parse error on createNodesInGroup (JCLOUDS-558) (#414)

2014-06-20 Thread Everett Toews
@@ -122,7 +122,15 @@ public ServerWithSecurityGroups deserialize(JsonElement jsonElement, Type type, @Override public Server deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext context) throws JsonParseException { - Server

Re: [jclouds] Fix for JSON parse error on createNodesInGroup (JCLOUDS-558) (#414)

2014-06-20 Thread Everett Toews
+import org.jclouds.openstack.nova.v2_0.domain.Server; +import org.jclouds.openstack.nova.v2_0.domain.Server.Status; +import org.jclouds.openstack.v2_0.domain.Link; +import org.jclouds.openstack.v2_0.domain.Link.Relation; +import org.jclouds.openstack.v2_0.domain.Resource; +import

Re: [jclouds] Fix for JSON parse error on createNodesInGroup (JCLOUDS-558) (#414)

2014-06-20 Thread CloudBees pull request builder plugin
[jclouds-java-7-pull-requests #1389](https://jclouds.ci.cloudbees.com/job/jclouds-java-7-pull-requests/1389/) FAILURE Looks like there's a problem with this pull request --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/414#issuecomment-46715950

Re: [jclouds] Fix for JSON parse error on createNodesInGroup (JCLOUDS-558) (#414)

2014-06-20 Thread CloudBees pull request builder plugin
[jclouds-pull-requests #918](https://jclouds.ci.cloudbees.com/job/jclouds-pull-requests/918/) FAILURE Looks like there's a problem with this pull request --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/414#issuecomment-46715953

Re: [jclouds] Backport #391 to 1.7.x branch (#415)

2014-06-20 Thread CloudBees pull request builder plugin
[jclouds-java-7-pull-requests #1388](https://jclouds.ci.cloudbees.com/job/jclouds-java-7-pull-requests/1388/) FAILURE Looks like there's a problem with this pull request --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/415#issuecomment-46716135

Re: [jclouds] JCLOUDS-594: ComputeService.suspendNodesMatching throwing UnsupportedOpe... (#403)

2014-06-20 Thread Christopher Dancy
Any idea when this is getting pulled? I've got a PR I'd like to send in that's dependent on this working ;) --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/403#issuecomment-46718075

Re: [jclouds] Backport #391 to 1.7.x branch (#415)

2014-06-20 Thread BuildHive
[jclouds » jclouds #1260](https://buildhive.cloudbees.com/job/jclouds/job/jclouds/1260/) SUCCESS This pull request looks good [(what's this?)](https://www.cloudbees.com/what-is-buildhive) --- Reply to this email directly or view it on GitHub:

[jclouds] Backport JCLOUDS-602 to 1.7.x (#416)

2014-06-20 Thread Andrew Bayer
You can merge this Pull Request by running: git pull https://github.com/abayer/jclouds-1 jclouds-602-for-1.7.x Or you can view, comment on it, or merge it online at: https://github.com/jclouds/jclouds/pull/416 -- Commit Summary -- * JCLOUDS-602 - Add support for volumeType, iops and

Re: [jclouds] Backport JCLOUDS-602 to 1.7.x (#416)

2014-06-20 Thread CloudBees pull request builder plugin
[jclouds-pull-requests #919](https://jclouds.ci.cloudbees.com/job/jclouds-pull-requests/919/) FAILURE Looks like there's a problem with this pull request --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/416#issuecomment-46722244

Re: [jclouds] Backport JCLOUDS-602 to 1.7.x (#416)

2014-06-20 Thread Andrew Bayer
Transient noise on that failure, I'm pretty sure. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/416#issuecomment-46722397

Re: [jclouds] JCLOUDS-594: ComputeService.suspendNodesMatching throwing UnsupportedOpe... (#403)

2014-06-20 Thread Chris Custine
@cdancy I needed to add some specific test coverage as stated above by @demobox but I am on vacation since early this week. I can probably add some test code Monday and I'm sure the guys will merge it after that. --- Reply to this email directly or view it on GitHub:

Re: [jclouds] JCLOUDS-594: ComputeService.suspendNodesMatching throwing UnsupportedOpe... (#403)

2014-06-20 Thread Christopher Dancy
Sorry to bother you on vacation! Hope it's a good one! I'll be patient a while longer. It just appeared that this was lost in the mix of things and I wanted to send another PR. --- Reply to this email directly or view it on GitHub:

Re: [jclouds] Upgrade 1.7.x to rat 0.10 (#412)

2014-06-20 Thread Andrew Gaul
@ccustine I am willing to root cause this with you. Can you reproduce your symptoms on an EC2 instance with some known configuration? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/412#issuecomment-46723086

Re: [jclouds] Upgrade 1.7.x to rat 0.10 (#412)

2014-06-20 Thread Chris Custine
@andrewgaul I'm sure this is something to do with my local Mac / mvn / java build environment so I doubt it will repro. I just thought since you upgraded 1.8 builds to 0.10 for some 0.9 specific issue (https://github.com/jclouds/jclouds/commit/285bc03e975a861e8da9fc5b6a1a779a8abc245c) that

Re: [jclouds] Backport JCLOUDS-602 to 1.7.x (#416)

2014-06-20 Thread CloudBees pull request builder plugin
[jclouds-java-7-pull-requests #1390](https://jclouds.ci.cloudbees.com/job/jclouds-java-7-pull-requests/1390/) SUCCESS This pull request looks good --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/416#issuecomment-46724611

[jira] [Commented] (JCLOUDS-602) Add support for Iops, Encrypted and VolumeType fields for EC2 BlockDeviceMapping

2014-06-20 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-602?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14039339#comment-14039339 ] ASF subversion and git services commented on JCLOUDS-602: - Commit

[jira] [Commented] (JCLOUDS-602) Add support for Iops, Encrypted and VolumeType fields for EC2 BlockDeviceMapping

2014-06-20 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-602?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14039338#comment-14039338 ] ASF subversion and git services commented on JCLOUDS-602: - Commit

Re: [jclouds] Fix for JSON parse error on createNodesInGroup (JCLOUDS-558) (#414)

2014-06-20 Thread BuildHive
[jclouds » jclouds #1261](https://buildhive.cloudbees.com/job/jclouds/job/jclouds/1261/) SUCCESS This pull request looks good [(what's this?)](https://www.cloudbees.com/what-is-buildhive) --- Reply to this email directly or view it on GitHub:

Re: [jclouds] JCLOUDS-602 - Add support for volumeType, iops and encrypted to EC2 volumes (#408)

2014-06-20 Thread BuildHive
[jclouds » jclouds #1262](https://buildhive.cloudbees.com/job/jclouds/job/jclouds/1262/) FAILURE Looks like there's a problem with this pull request [(what's this?)](https://www.cloudbees.com/what-is-buildhive) --- Reply to this email directly or view it on GitHub:

Re: [jclouds-labs-aws] JCLOUDS-457: Added completeMultipartUpload and abortMultipartUplod. (#21)

2014-06-20 Thread Andrew Gaul
@@ -271,4 +273,36 @@ public void testUploadPartMaxSize() throws InterruptedException { assertEquals(request.getHeader(HttpHeaders.CONTENT_RANGE), range.buildHeader()); assertEquals(request.getHeader(HttpHeaders.CONTENT_LENGTH),

Re: [jclouds-labs-aws] JCLOUDS-457: Added completeMultipartUpload and abortMultipartUplod. (#21)

2014-06-20 Thread Andrew Gaul
Amended commit, tested locally, and pushed to master. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-aws/pull/21#issuecomment-46731419

Re: [jclouds-labs-aws] JCLOUDS-457: Added completeMultipartUpload and abortMultipartUplod. (#21)

2014-06-20 Thread Andrew Gaul
Closed #21. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-aws/pull/21#event-133715907

[jira] [Commented] (JCLOUDS-457) Amazon Glacier support

2014-06-20 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-457?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14039433#comment-14039433 ] ASF subversion and git services commented on JCLOUDS-457: - Commit

Jenkins build is back to normal : jclouds » jclouds #1263

2014-06-20 Thread BuildHive
See https://buildhive.cloudbees.com/job/jclouds/job/jclouds/1263/changes

Re: [jclouds] Backport JCLOUDS-602 to 1.7.x (#416)

2014-06-20 Thread BuildHive
[jclouds » jclouds #1263](https://buildhive.cloudbees.com/job/jclouds/job/jclouds/1263/) SUCCESS This pull request looks good [(what's this?)](https://www.cloudbees.com/what-is-buildhive) --- Reply to this email directly or view it on GitHub:

[jira] [Commented] (JCLOUDS-602) Add support for Iops, Encrypted and VolumeType fields for EC2 BlockDeviceMapping

2014-06-20 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-602?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14039452#comment-14039452 ] ASF subversion and git services commented on JCLOUDS-602: - Commit

[jira] [Resolved] (JCLOUDS-602) Add support for Iops, Encrypted and VolumeType fields for EC2 BlockDeviceMapping

2014-06-20 Thread Andrew Bayer (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-602?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Bayer resolved JCLOUDS-602. -- Resolution: Fixed Committed to master and 1.7.x Add support for Iops, Encrypted and

[jira] [Commented] (JCLOUDS-602) Add support for Iops, Encrypted and VolumeType fields for EC2 BlockDeviceMapping

2014-06-20 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-602?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14039453#comment-14039453 ] ASF subversion and git services commented on JCLOUDS-602: - Commit

  1   2   >