
org.cloudfoundry.client.v2.spacequotadefinitions.SpaceQuotaDefinitions 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.spacequotadefinitions;
import reactor.core.publisher.Mono;
/**
* Main entry point to the Cloud Foundry Space Quota Definitions Client API
*/
public interface SpaceQuotaDefinitions {
/**
* Makes the Associate a Space with a Space Quota
* Definition request
*
* @param request the Associate a Space with a Space Quota Definition request
* @return the response from the Associate a Space with a Space Quota Definition request
*/
Mono associateSpace(
AssociateSpaceQuotaDefinitionRequest request);
/**
* Makes the Creating a Space Quota Definition request
*
* @param request the Create a Space Quota Definition request
* @return the response from the Create a Space Quota Definition request
*/
Mono create(CreateSpaceQuotaDefinitionRequest request);
/**
* Makes the Delete a Particular Space Quota Definition request
*
* @param request the Delete a Particular Space Quota Definition request
* @return the response from the Delete a Particular Space Quota Definition request
*/
Mono delete(DeleteSpaceQuotaDefinitionRequest request);
/**
* Makes the Retrieve a Particular Space Quota Definition
* request
*
* @param request the Retrieve a Particular Space Quota Definition request
* @return the response from the Retrieve a Particular Space Quota Definition request
*/
Mono get(GetSpaceQuotaDefinitionRequest request);
/**
* Makes the List all Space Quota Definitions request
*
* @param request the List Space Quota Definitions request
* @return the response from the List Space Quota Definitions request
*/
Mono list(ListSpaceQuotaDefinitionsRequest request);
/**
* Makes the List all Spaces for the Space Quota Definition
* request
*
* @param request the List all Spaces for the Space Quota Definition request
* @return the response from the List all Spaces for the Space Quota Definition request
*/
Mono listSpaces(
ListSpaceQuotaDefinitionSpacesRequest request);
/**
* Makes the Remove a Space from a Space Quota Definition
* request
*
* @param request the Remove a Space from a Space Quota Definition request
* @return the response from the Remove a Space from a Space Quota Definition request
*/
Mono removeSpace(RemoveSpaceQuotaDefinitionRequest request);
/**
* Makes the Updating a Space Quota Definition request
*
* @param request the Update Space Quota Definitions request
* @return the response from the Update Space Quota Definitions request
*/
Mono update(UpdateSpaceQuotaDefinitionRequest request);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy