
org.cloudfoundry.client.v2.users.Users 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.users;
import reactor.core.publisher.Mono;
public interface Users {
/**
* Makes the Associate Audited Organization with the User request
*
* @param request the Associate Audited Organization with the User request
* @return the response from the Associate Audited Organization with the User request
*/
Mono associateAuditedOrganization(
AssociateUserAuditedOrganizationRequest request);
/**
* Makes the Associate Audited Space with the User request
*
* @param request the Associate Audited Space with the User request
* @return the response from the Associate Audited Space with the User request
*/
Mono associateAuditedSpace(
AssociateUserAuditedSpaceRequest request);
/**
* Makes the Associate Billing Managed Organization with the User
* request
*
* @param request the Associate Billing Managed Organization with the User request
* @return the response from the Associate Billing Managed Organization with the User request
*/
Mono associateBillingManagedOrganization(
AssociateUserBillingManagedOrganizationRequest request);
/**
* Makes the Associate Managed Organization with the User request
*
* @param request the Associate Managed Organization with the User request
* @return the response from the Associate Managed Organization with the User request
*/
Mono associateManagedOrganization(
AssociateUserManagedOrganizationRequest request);
/**
* Makes the Associate Managed Space with the User request
*
* @param request the Associate Managed Space with the User request
* @return the response from the Associate Managed Space with the User request
*/
Mono associateManagedSpace(
AssociateUserManagedSpaceRequest request);
/**
* Makes the Associate Organization with the User request
*
* @param request the Associate Organization with the User request
* @return the response from the Associate Organization with the User request
*/
Mono associateOrganization(
AssociateUserOrganizationRequest request);
/**
* Makes the Associate Space with the User request
*
* @param request the Associate Space with the User request
* @return the response from the Associate Space with the User request
*/
Mono associateSpace(AssociateUserSpaceRequest request);
/**
* Makes the Creating a User request
*
* @param request the Creating a User request
* @return the response from the Creating a User request
*/
Mono create(CreateUserRequest request);
/**
* Makes the Delete a Particular User request
*
* @param request the Delete a Particular User request
* @return the response from the Delete a Particular User request
*/
Mono delete(DeleteUserRequest request);
/**
* Makes the Retrieve a Particular User request
*
* @param request the Retrieve a Particular User request
* @return the response from the Retrieve a Particular User request
*/
Mono get(GetUserRequest request);
/**
* Makes the List all Users request
*
* @param request the List all Users request
* @return the response from the List all Users request
*/
Mono list(ListUsersRequest request);
/**
* Makes the List all Audited Organizations for the User request
*
* @param request the List all Audited Organizations for the User request
* @return the response from the List all Audited Organizations for the User request
*/
Mono listAuditedOrganizations(
ListUserAuditedOrganizationsRequest request);
/**
* Makes the List all Audited Spaces for the User request
*
* @param request the List all Audited Spaces for the User request
* @return the response from the List all Audited Spaces for the User request
*/
Mono listAuditedSpaces(ListUserAuditedSpacesRequest request);
/**
* Makes the List all Billing Managed Organizations for the User request
*
* @param request the List all Billing Managed Organizations for the User request
* @return the response from the List all Billing Managed Organizations for the User request
*/
Mono listBillingManagedOrganizations(
ListUserBillingManagedOrganizationsRequest request);
/**
* Makes the List all Managed Organizations for the User request
*
* @param request the List all Managed Organizations for the User request
* @return the response from the List all Managed Organizations for the User request
*/
Mono listManagedOrganizations(
ListUserManagedOrganizationsRequest request);
/**
* Makes the List all Managed Spaces for the User request
*
* @param request the List all Managed Spaces for the User request
* @return the response from the List all Managed Spaces for the User request
*/
Mono listManagedSpaces(ListUserManagedSpacesRequest request);
/**
* Makes the List all Organizations for the User request
*
* @param request the List all Organizations for the User request
* @return the response from the List all Organizations for the User request
*/
Mono listOrganizations(ListUserOrganizationsRequest request);
/**
* Makes the List all Spaces for the User request
*
* @param request the List all Spaces for the User request
* @return the response from the List all Spaces for the User request
*/
Mono listSpaces(ListUserSpacesRequest request);
/**
* Makes the Remove Audited Organization from the User request
*
* @param request the Remove Audited Organization from the User request
* @return the response from the Remove Audited Organization from the User request
*/
Mono removeAuditedOrganization(RemoveUserAuditedOrganizationRequest request);
/**
* Makes the Remove Audited Space from the User request
*
* @param request the Remove Audited Space from the User request
* @return the response from the Remove Audited Space from the User request
*/
Mono removeAuditedSpace(RemoveUserAuditedSpaceRequest request);
/**
* Makes the Remove Managed Billing Organization from the User request
*
* @param request the Remove Billing Managed Organization from the User request
* @return the response from the Remove Billing Managed Organization from the User request
*/
Mono removeBillingManagedOrganization(
RemoveUserBillingManagedOrganizationRequest request);
/**
* Makes the Remove Managed Organization from the User request
*
* @param request the Remove Managed Organization from the User request
* @return the response from the Remove Managed Organization from the User request
*/
Mono removeManagedOrganization(RemoveUserManagedOrganizationRequest request);
/**
* Makes the Remove Managed Space from the User request
*
* @param request the Remove Managed Space from the User request
* @return the response from the Remove Managed Space from the User request
*/
Mono removeManagedSpace(RemoveUserManagedSpaceRequest request);
/**
* Makes the Remove Organization from the User request
*
* @param request the Remove Organization from the User request
* @return the response from the Remove Organization from the User request
*/
Mono removeOrganization(RemoveUserOrganizationRequest request);
/**
* Makes the Remove Space from the User request
*
* @param request the Remove Space from the User request
* @return the response from the Remove Space from the User request
*/
Mono removeSpace(RemoveUserSpaceRequest request);
/**
* Makes the Get User Summary request
*
* @param request the Get User summary request
* @return the response from the Get User summary request
*/
Mono summary(SummaryUserRequest request);
/**
* Makes the Updating a User request
*
* @param request the Updating a User request
* @return the response from the Updating a User request
*/
Mono update(UpdateUserRequest request);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy