All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jclouds.rackspace.cloudloadbalancers.v1.features.LoadBalancerApi Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.jclouds.rackspace.cloudloadbalancers.v1.features;

import java.util.Map;

import jakarta.inject.Named;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.DELETE;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.PUT;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.PathParam;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.QueryParam;
import jakarta.ws.rs.core.MediaType;

import org.jclouds.Fallbacks.EmptyMapOnNotFoundOr404;
import org.jclouds.Fallbacks.EmptyPagedIterableOnNotFoundOr404;
import org.jclouds.Fallbacks.FalseOnNotFoundOr404;
import org.jclouds.Fallbacks.NullOnNotFoundOr404;
import org.jclouds.Fallbacks.VoidOnNotFoundOr404;
import org.jclouds.collect.IterableWithMarker;
import org.jclouds.collect.PagedIterable;
import org.jclouds.openstack.keystone.auth.filters.AuthenticateRequest;
import org.jclouds.openstack.keystone.v2_0.KeystoneFallbacks.EmptyPaginatedCollectionOnNotFoundOr404;
import org.jclouds.openstack.v2_0.options.PaginationOptions;
import org.jclouds.rackspace.cloudloadbalancers.v1.binders.BindMetadataToJsonPayload;
import org.jclouds.rackspace.cloudloadbalancers.v1.domain.CreateLoadBalancer;
import org.jclouds.rackspace.cloudloadbalancers.v1.domain.LoadBalancer;
import org.jclouds.rackspace.cloudloadbalancers.v1.domain.Metadata;
import org.jclouds.rackspace.cloudloadbalancers.v1.domain.UpdateLoadBalancer;
import org.jclouds.rackspace.cloudloadbalancers.v1.functions.ParseLoadBalancer;
import org.jclouds.rackspace.cloudloadbalancers.v1.functions.ParseLoadBalancers;
import org.jclouds.rackspace.cloudloadbalancers.v1.functions.ParseMetadata;
import org.jclouds.rest.annotations.BinderParam;
import org.jclouds.rest.annotations.Fallback;
import org.jclouds.rest.annotations.Payload;
import org.jclouds.rest.annotations.PayloadParam;
import org.jclouds.rest.annotations.RequestFilters;
import org.jclouds.rest.annotations.ResponseParser;
import org.jclouds.rest.annotations.Transform;
import org.jclouds.rest.annotations.WrapWith;

/**
 * Provides access to CloudLoadBalancers LoadBalancer features.
 * 

*/ @RequestFilters(AuthenticateRequest.class) public interface LoadBalancerApi { /** * Create a new load balancer with the configuration defined by the request. * * @return The object will contain a unique identifier and status of the request. Using the * identifier, the caller can check on the progress of the operation by performing a * {@link LoadBalancerApi#get}. */ @Named("lb:create") @POST @ResponseParser(ParseLoadBalancer.class) @Consumes(MediaType.APPLICATION_JSON) @Fallback(NullOnNotFoundOr404.class) @Path("/loadbalancers") LoadBalancer create(@WrapWith("loadBalancer") CreateLoadBalancer createLB); /** * Update the properties of a load balancer. * * @return The object will contain a unique identifier and status of the request. Using the * identifier, the caller can check on the progress of the operation by performing a * {@link LoadBalancerApi#get}. */ @Named("lb:update") @PUT @ResponseParser(ParseLoadBalancer.class) @Consumes(MediaType.APPLICATION_JSON) @Path("/loadbalancers/{id}") void update(@PathParam("id") int id, @WrapWith("loadBalancer") UpdateLoadBalancer updateLB); /** * List the load balancers. */ @Named("lb:list") @GET @ResponseParser(ParseLoadBalancers.class) @Transform(ParseLoadBalancers.ToPagedIterable.class) @Consumes(MediaType.APPLICATION_JSON) @Path("/loadbalancers") @Fallback(EmptyPagedIterableOnNotFoundOr404.class) PagedIterable list(); /** * List the load balancers with full control of pagination. */ @Named("lb:list") @GET @ResponseParser(ParseLoadBalancers.class) @Consumes(MediaType.APPLICATION_JSON) @Fallback(EmptyPaginatedCollectionOnNotFoundOr404.class) @Path("/loadbalancers") IterableWithMarker list(PaginationOptions options); /** * Get a load balancer. */ @Named("lb:get") @GET @ResponseParser(ParseLoadBalancer.class) @Consumes(MediaType.APPLICATION_JSON) @Fallback(NullOnNotFoundOr404.class) @Path("/loadbalancers/{id}") LoadBalancer get(@PathParam("id") int id); /** * Delete a load balancer. */ @Named("lb:delete") @DELETE @Fallback(VoidOnNotFoundOr404.class) @Path("/loadbalancers/{id}") @Consumes("*/*") void delete(@PathParam("id") int id); /** * When a metadata item is added, it is assigned a unique identifier that can be used for mutating operations such * as changing the value attribute or removing it. Key and value must be 256 characters or less. * All UTF-8 characters are valid. */ @Named("lb:createmetadata") @POST @Consumes(MediaType.APPLICATION_JSON) @ResponseParser(ParseMetadata.class) @Fallback(EmptyMapOnNotFoundOr404.class) @Path("/loadbalancers/{id}/metadata") Metadata createMetadata(@PathParam("id") int id, @BinderParam(BindMetadataToJsonPayload.class) Map metadata); /** * List a load balancer's metadata. */ @Named("lb:getmetadata") @GET @Consumes(MediaType.APPLICATION_JSON) @ResponseParser(ParseMetadata.class) @Fallback(EmptyMapOnNotFoundOr404.class) @Path("/loadbalancers/{id}/metadata") Metadata getMetadata(@PathParam("id") int id); /** * Update metadatum. Key and value must be 256 characters or less. All UTF-8 characters are valid. * * @return true on a successful update, false if the metadatum was not found */ @Named("lb:updatemetadatum") @PUT @Produces(MediaType.APPLICATION_JSON) @Consumes("*/*") @Fallback(FalseOnNotFoundOr404.class) @Payload("%7B\"meta\":%7B\"value\":\"{value}\"%7D%7D") @Path("/loadbalancers/{id}/metadata/{metadatumId}") boolean updateMetadatum(@PathParam("id") int id, @PathParam("metadatumId") int metadatumId, @PayloadParam("value") String value); /** * Delete metadatum. * * @see LoadBalancerApi#deleteMetadata(int, Iterable) * * @return true on a successful removal, false if the metadatum was not found */ @Named("lb:deletemetadatum") @DELETE @Fallback(FalseOnNotFoundOr404.class) @Consumes("*/*") @Path("/loadbalancers/{id}/metadata/{metadatumId}") boolean deleteMetadatum(@PathParam("id") int id, @PathParam("metadatumId") int metadatumId); /** * Batch delete metadata given the specified ids. * * The current default limit is ten ids per request. Any and all configuration data is immediately purged and is * not recoverable. If one or more of the items in the list cannot be removed due to its current status, an * exception is thrown along with the ids of the ones the system identified as potential failures for this request. * * @return true on a successful removal, false if the metadata was not found */ @Named("lb:deletemetadata") @DELETE @Fallback(FalseOnNotFoundOr404.class) @Consumes("*/*") @Path("/loadbalancers/{id}/metadata") boolean deleteMetadata(@PathParam("id") int id, @QueryParam("id") Iterable metadataIds); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy