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

org.cloudfoundry.client.v3.securitygroups.SecurityGroupsV3 Maven / Gradle / Ivy

The newest version!
/*
 * 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.v3.securitygroups;

import reactor.core.publisher.Mono;

public interface SecurityGroupsV3 {

    /**
     * Makes the Creating
     * a Security Group request.
     *
     * @param request the Create Security Group request
     * @return the response from the Create Security Group request
     */
    Mono create(CreateSecurityGroupRequest request);

    /**
     * Makes the Get
     * a Security Group request.
     *
     * @param request the Get Security Group request
     * @return the response from the Get Security Group request
     */
    Mono get(GetSecurityGroupRequest request);

    /**
     * Makes the List
     * Security Groups request
     *
     * @param request the List Security Group request
     * @return the response from the List Security Group request
     */
    Mono list(ListSecurityGroupsRequest request);

    /**
     * Makes the Update
     * Security Groups request
     *
     * @param request the Update Security Group request
     * @return the response from the Update Security Group request
     */
    Mono update(UpdateSecurityGroupRequest request);

    /**
     * Makes the Delete
     * Security Groups request
     *
     * @param request the Delete Security Group request
     * @return the response from the Delete Security Group request
     */
    Mono delete(DeleteSecurityGroupRequest request);

    /**
     * Makes the Bind
     * Staging Security Group request
     *
     * @param request the Bind Staging Security Group request
     * @return the response from the Bind Staging Security Group request
     */
    Mono bindStagingSecurityGroup(
            BindStagingSecurityGroupRequest request);

    /**
     * Makes the Bind
     * Running Security Group request
     *
     * @param request the Bind Running Security Group request
     * @return the response from the Bind Running Security Group request
     */
    Mono bindRunningSecurityGroup(
            BindRunningSecurityGroupRequest request);

    /**
     * Makes the Unbind
     * Staging
     * Security Group request
     *
     * @param request the Unbind Staging Security Group request
     * @return the response from the Unbind staging Security Group request
     */
    Mono unbindStagingSecurityGroup(UnbindStagingSecurityGroupRequest request);

    /**
     * Makes the Unbind
     * Running
     * Security Groups request
     *
     * @param request the Unbind Staging Running Security Group request
     * @return the response from the Unbind Running Security Group request
     */
    Mono unbindRunningSecurityGroup(UnbindRunningSecurityGroupRequest request);

    /**
     * Makes the List
     * Running Security Groups request
     *
     * @param request the List Staging Security Group request
     * @return the response from the List Staging Security Group request
     */
    Mono listStaging(ListStagingSecurityGroupsRequest request);

    /**
     * Makes the List
     * Running Security Groups request
     *
     * @param request the List Staging Security Group request
     * @return the response from the List Running Security Group request
     */
    Mono listRunning(ListRunningSecurityGroupsRequest request);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy