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

com.huawei.openstack4j.api.identity.v3.ServiceEndpointService Maven / Gradle / Ivy

There is a newer version: 1.0.26
Show newest version
/*******************************************************************************
 * 	Copyright 2016 ContainX and OpenStack4j                                          
 * 	                                                                                 
 * 	Licensed 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 com.huawei.openstack4j.api.identity.v3;

import java.net.URL;
import java.util.List;
import java.util.Map;

import com.huawei.openstack4j.api.types.Facing;
import com.huawei.openstack4j.common.RestService;
import com.huawei.openstack4j.model.common.ActionResponse;
import com.huawei.openstack4j.model.identity.v3.Endpoint;
import com.huawei.openstack4j.model.identity.v3.Service;

/**
 * Identity V3 ServiceManager
 *
 */
public interface ServiceEndpointService extends RestService {

    /**
     * Create a new service
     *
     * @param service the service
     * @return the created service
     */
    Service create(Service service);

    /**
     * Creates a new service
     *
     * @param type the type of the service
     * @param name the name of the service
     * @param description the description of the service
     * @param enabled the enabled status of the service
     * @return the created service
     */
    Service create(String type, String name, String description, boolean enabled);

    /**
     * Get details of a service by id
     *
     * @param serviceId the id of the service
     * @return the service
     */
    Service get(String serviceId);

    /**
     * Updates a service
     *
     * @param service the service set to update
     * @return the updated service
     */
    Service update(Service service);

    /**
     * Delete a service
     *
     * @param serviceId the id of the service
     * @return the ActionResponse
     */
    ActionResponse delete(String serviceId);

    /**
     * Lists services
     *
     * @return the list of services
     */
    List list();

    /**
     * Lists services with param
     *
     * @return the list of services
     */
    List list(Map filteringParams);



    /**
     * Lists available endpoints
     *
     * @return the list of endpoints
     */
    List listEndpoints();

    /**
     * Lists available endpoints with endpoints
     *
     * @return the list of endpoints
     */
    List listEndpoints(Map filteringParams);


    /**
     * Creates a new endpoint
     *
     * @param endpoint the endpoint
     * @return the created endpoint
     */
    Endpoint createEndpoint(Endpoint endpoint);

    /**
     * Creates a new endpoint
     *
     * @param name the name of the endpoint
     * @param url the url of the endpont
     * @param iface the interface type of the endpoint
     * @param regionId the region id of the region that contains the endpoint
     * @param serviceId the service id of the service the endpoint belongs to
     * @param enabled the enabled status of the endpoint
     * @return
     */
    Endpoint createEndpoint(String name, URL url, Facing iface, String regionId, String serviceId, boolean enabled);

    /**
     * Get details for an endpoint
     *
     * @param endpointId the endpoint id
     * @return the endpoint
     */
    Endpoint getEndpoint(String endpointId);

    /**
     * Updates a endpoint
     *
     * @param endpoint the endpoint set to update
     * @return the updated endpoint
     */
    Endpoint updateEndpoint(Endpoint endpoint);

    /**
     * Delete an Endpoint
     *
     * @param endpointId the endpoint identifier
     * @return the ActionResponse
     */
    ActionResponse deleteEndpoint(String endpointId);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy