org.cloudfoundry.client.v3.isolationsegments.IsolationSegments 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.isolationsegments;
import reactor.core.publisher.Mono;
/**
* Main entry point to the Cloud Foundry Isolation Zones Client API
*/
public interface IsolationSegments {
/**
* Makes the
* Add an Isolation Segment Organization Entitlement request
*
* @param request the Add an Isolation Segment Organization Entitlement request
* @return the response from the Add an Isolation Segment Organization Entitlement request
*/
Mono addOrganizationEntitlement(
AddIsolationSegmentOrganizationEntitlementRequest request);
/**
* Makes the Create an Isolation Segment request
*
* @param request the Create Isolation Segment request
* @return the response from the Create Isolation Segment request
*/
Mono create(CreateIsolationSegmentRequest request);
/**
* Makes the Delete an Isolation Segment request
*
* @param request the Delete Isolation Segment request
* @return the response from the Delete Isolation Segment request
*/
Mono delete(DeleteIsolationSegmentRequest request);
/**
* Makes the Get an Isolation Segment request
*
* @param request the Get Isolation Segment request
* @return the response from the Get Isolation Segment request
*/
Mono get(GetIsolationSegmentRequest request);
/**
* Makes the List Isolation Segments request
*
* @param request the List Isolation Segments request
* @return the response from the List Isolation Segments request
*/
Mono list(ListIsolationSegmentsRequest request);
/**
* Makes the List Organizations for Isolation Segment request
*
* @param request the List Organizations for Isolation Segment request
* @return the response from the List Organizations for Isolation Segment request
*/
Mono listEntitledOrganizations(
ListIsolationSegmentEntitledOrganizationsRequest request);
/**
* Makes the List Organizations Relationship request
*
* @param request the List Organizations Relationship request
* @return the response from the List Organizations Relationship request
*/
Mono listOrganizationsRelationship(
ListIsolationSegmentOrganizationsRelationshipRequest request);
/**
* Makes the List Spaces Relationship request
*
* @param request the List Spaces Relationship request
* @return the response from the List Spaces Relationship request
*/
Mono listSpacesRelationship(
ListIsolationSegmentSpacesRelationshipRequest request);
/**
* Makes the
* Remove an Isolation Segment Organization Entitlement request
*
* @param request the Remove an Isolation Segment Organization Entitlement request
* @return the response from the Remove an Isolation Segment Organization Entitlement request
*/
Mono removeOrganizationEntitlement(
RemoveIsolationSegmentOrganizationEntitlementRequest request);
/**
* Makes the Update an Isolation Segment request
*
* @param request the Update Isolation Segment request
* @return the response from the Update Isolation Segment request
*/
Mono update(UpdateIsolationSegmentRequest request);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy