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

org.cloudfoundry.client.v2.userprovidedserviceinstances.UserProvidedServiceInstances Maven / Gradle / Ivy

/*
 * Copyright 2013-2021 the original author or authors.
 *
 * 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 org.cloudfoundry.client.v2.userprovidedserviceinstances;

import reactor.core.publisher.Mono;

/**
 * Main entry point to the Cloud Foundry User Provided Service Instances Client API
 */
public interface UserProvidedServiceInstances {

    /**
     * Makes the Associate Route with the User
     * Provided Service Instance request
     *
     * @param request the Associate Route With User Provided Service Instance request
     * @return the response from the Associate Route With User Provided Service Instance request
     */
    Mono associateRoute(
            AssociateUserProvidedServiceInstanceRouteRequest request);

    /**
     * Makes the Create User Provided Service Instance
     * request
     *
     * @param request the Create User Provided Service Instance request
     * @return the response from the Create User Provided Service Instance request
     */
    Mono create(
            CreateUserProvidedServiceInstanceRequest request);

    /**
     * Makes the Delete the User Provided Service
     * Instance request
     *
     * @param request the Delete User Provided Service Instance request
     * @return the response from the Delete User Provided Service Instance request
     */
    Mono delete(DeleteUserProvidedServiceInstanceRequest request);

    /**
     * Makes the Retrieve a Particular User Provided
     * Service Instance request
     *
     * @param request the Get User Provided Service Instance request
     * @return the response from the Get User Provided Service Instance request
     */
    Mono get(GetUserProvidedServiceInstanceRequest request);

    /**
     * Makes the List User Provided Service Instances
     * request
     *
     * @param request the List User Provided Service Instances request
     * @return the response from the List User Provided Service Instances request
     */
    Mono list(
            ListUserProvidedServiceInstancesRequest request);

    /**
     * Makes the List all Routes for the User
     * Provided Service Instance request
     *
     * @param request the List User Provided Service Instance Routes request
     * @return the response from the List User Provided Service Instance Routes request
     */
    Mono listRoutes(
            ListUserProvidedServiceInstanceRoutesRequest request);

    /**
     * Makes the List all Service
     * Bindings for the User Provided Service Instance request
     *
     * @param request the List Service Bindings request
     * @return the response from the List Service Bindings request
     */
    Mono listServiceBindings(
            ListUserProvidedServiceInstanceServiceBindingsRequest request);

    /**
     * Makes the Remove Route from the User Provided
     * Service Instance request
     *
     * @param request the Remove Route from the User Provided Service Instance request
     * @return the response from the Remove Route from the User Provided Service Instance request
     */
    Mono removeRoute(RemoveUserProvidedServiceInstanceRouteRequest request);

    /**
     * Makes the Update User Provided Service Instance
     * request
     *
     * @param request the Update User Provided Service Instance request
     * @return the response from the Update User Provided Service Instance request
     */
    Mono update(
            UpdateUserProvidedServiceInstanceRequest request);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy