Package org.jclouds.rackspace.autoscale.v1.features

Examples of org.jclouds.rackspace.autoscale.v1.features.PolicyApi


            HttpResponse.builder().statusCode(404).payload(payloadFromResource("/autoscale_policy_create_response.json")).build()
            ).getPolicyApiForGroupInZone("groupId1", "DFW");     

      List<ScalingPolicy> scalingPolicies = Lists.newArrayList();

      ScalingPolicy scalingPolicy = ScalingPolicy.builder()
            .cooldown(1800)
            .type(ScalingPolicyType.WEBHOOK)
            .name("scale up by one server")
            .targetType(ScalingPolicyTargetType.INCREMENTAL)
            .target("1")
View Full Code Here


            responseWithKeystoneAccess,
            authenticatedGET().method("PUT").endpoint(endpoint).payload(payloadFromResourceWithContentType("/autoscale_policy_update_request.json", MediaType.APPLICATION_JSON)).build(),
            HttpResponse.builder().statusCode(201).build()
            ).getPolicyApiForGroupInZone("groupId1", "DFW");

      ScalingPolicy scalingPolicy = ScalingPolicy.builder()
            .cooldown(6)
            .type(ScalingPolicyType.WEBHOOK)
            .name("scale down by 5 percent")
            .targetType(ScalingPolicyTargetType.PERCENT_CHANGE)
            .target("-5")
View Full Code Here

            responseWithKeystoneAccess,
            authenticatedGET().method("PUT").endpoint(endpoint).payload(payloadFromResourceWithContentType("/autoscale_policy_update_request.json", MediaType.APPLICATION_JSON)).build(),
            HttpResponse.builder().statusCode(404).build()
            ).getPolicyApiForGroupInZone("groupId1", "DFW");     

      ScalingPolicy scalingPolicy = ScalingPolicy.builder()
            .cooldown(6)
            .type(ScalingPolicyType.WEBHOOK)
            .name("scale down by 5 percent")
            .targetType(ScalingPolicyTargetType.PERCENT_CHANGE)
            .target("-5")
View Full Code Here

            HttpResponse.builder().statusCode(201).payload(payloadFromResource("/autoscale_policy_create_response.json")).build()
            ).getPolicyApiForZoneAndGroup("DFW", "groupId1");

      List<ScalingPolicy> scalingPolicies = Lists.newArrayList();

      ScalingPolicy scalingPolicy = ScalingPolicy.builder()
            .cooldown(1800)
            .type(ScalingPolicyType.WEBHOOK)
            .name("scale up by one server")
            .targetType(ScalingPolicyTargetType.INCREMENTAL)
            .target("1")
View Full Code Here

            HttpResponse.builder().statusCode(404).payload(payloadFromResource("/autoscale_policy_create_response.json")).build()
            ).getPolicyApiForZoneAndGroup("DFW", "groupId1");

      List<ScalingPolicy> scalingPolicies = Lists.newArrayList();

      ScalingPolicy scalingPolicy = ScalingPolicy.builder()
            .cooldown(1800)
            .type(ScalingPolicyType.WEBHOOK)
            .name("scale up by one server")
            .targetType(ScalingPolicyTargetType.INCREMENTAL)
            .target("1")
View Full Code Here

            responseWithKeystoneAccess,
            authenticatedGET().method("PUT").endpoint(endpoint).payload(payloadFromResourceWithContentType("/autoscale_policy_update_request.json", MediaType.APPLICATION_JSON)).build(),
            HttpResponse.builder().statusCode(201).build()
            ).getPolicyApiForZoneAndGroup("DFW", "groupId1");

      ScalingPolicy scalingPolicy = ScalingPolicy.builder()
            .cooldown(6)
            .type(ScalingPolicyType.WEBHOOK)
            .name("scale down by 5 percent")
            .targetType(ScalingPolicyTargetType.PERCENT_CHANGE)
            .target("-5")
View Full Code Here

            responseWithKeystoneAccess,
            authenticatedGET().method("PUT").endpoint(endpoint).payload(payloadFromResourceWithContentType("/autoscale_policy_update_request.json", MediaType.APPLICATION_JSON)).build(),
            HttpResponse.builder().statusCode(404).build()
            ).getPolicyApiForZoneAndGroup("DFW", "groupId1");

      ScalingPolicy scalingPolicy = ScalingPolicy.builder()
            .cooldown(6)
            .type(ScalingPolicyType.WEBHOOK)
            .name("scale down by 5 percent")
            .targetType(ScalingPolicyTargetType.PERCENT_CHANGE)
            .target("-5")
View Full Code Here

      // A lot of the complexity is expected to go away

      Map<String, Object> singleMap = json.apply(from);
      Map<String, Object> scalingPolicyMap = (Map<String, Object>) singleMap.get("policy");

      ScalingPolicyTargetType targetType = null;
      for(String key : scalingPolicyMap.keySet()) {
         if(ScalingPolicyTargetType.getByValue(key).isPresent()) {
            targetType = ScalingPolicyTargetType.getByValue(key).get();
            break;
        
      }

      ImmutableList.Builder<Link> links = ImmutableList.builder();
      for(Map<String, String> linkMap : (List<Map<String, String>>) scalingPolicyMap.get("links")) {
         Link link = Link.builder().href(URI.create(linkMap.get("href"))).relation(Relation.fromValue(linkMap.get("rel"))).build();
         links.add(link);
      }

      Double d = (Double)scalingPolicyMap.get(targetType.toString()); // GSON only knows double now
      ScalingPolicyResponse scalingPolicyResponse =
            new ScalingPolicyResponse(
                  (String)scalingPolicyMap.get("name"),
                  ScalingPolicyType.getByValue((String)scalingPolicyMap.get("type")).get(),
                  ((Double)scalingPolicyMap.get("cooldown")).intValue(),
View Full Code Here

      Map<String, List<Map<String, Object>>> singleMap = (Map<String, List<Map<String, Object>>>) json.apply(from);
      List<Map<String, Object>> result = singleMap.get("policies");
      ImmutableList.Builder<ScalingPolicyResponse> scalingPoliciesList = ImmutableList.builder();

      for(Map<String, Object> scalingPolicyMap : result) {
         ScalingPolicyTargetType targetType = null;
         for(String key : scalingPolicyMap.keySet()) {
            if(ScalingPolicyTargetType.getByValue(key).isPresent()) {
               targetType = ScalingPolicyTargetType.getByValue(key).get();
               break;
           
         }

         ImmutableList.Builder<Link> links = ImmutableList.builder();
         for(Map<String, String> linkMap : (List<Map<String, String>>) scalingPolicyMap.get("links")) {
            Link link = Link.builder().href(URI.create(linkMap.get("href"))).relation(Relation.fromValue(linkMap.get("rel"))).build();
            links.add(link);
         }

         Double d = (Double)scalingPolicyMap.get(targetType.toString()); // GSON only knows double now
         ScalingPolicyResponse scalingPolicyResponse =
               new ScalingPolicyResponse(
                     (String)scalingPolicyMap.get("name"),
                     ScalingPolicyType.getByValue((String)scalingPolicyMap.get("type")).get(),
                     ((Double)scalingPolicyMap.get("cooldown")).intValue(),
View Full Code Here

            .name((String) groupConfigurationMap.get("name"))
            .metadata((Map<String, String>) groupConfigurationMap.get("metadata"))
            .build();

      for(Map<String, Object> scalingPolicyMap : (List<Map<String, Object>>) group.get("scalingPolicies")) {
         ScalingPolicyTargetType targetType = null;
         for(String key : scalingPolicyMap.keySet()) {
            if(ScalingPolicyTargetType.getByValue(key).isPresent()) {
               targetType = ScalingPolicyTargetType.getByValue(key).get();
               break;
           
         }

         ImmutableList.Builder<Link> links = ImmutableList.builder();
         for(Map<String, String> linkMap : (List<Map<String, String>>) scalingPolicyMap.get("links")) {
            Link link = Link.builder().href(URI.create(linkMap.get("href"))).relation(Relation.fromValue(linkMap.get("rel"))).build();
            links.add(link);
         }

         Double d = (Double)scalingPolicyMap.get(targetType.toString()); // GSON only knows double now

         ScalingPolicyResponse scalingPolicyResponse =
               new ScalingPolicyResponse(
                     (String)scalingPolicyMap.get("name"),
                     ScalingPolicyType.getByValue((String)scalingPolicyMap.get("type")).get(),
View Full Code Here

TOP

Related Classes of org.jclouds.rackspace.autoscale.v1.features.PolicyApi

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.