Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
Copyright (c) 2015 Red Hat, Inc.
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.ovirt.engine.sdk4.services;
import java.io.IOException;
import org.ovirt.engine.sdk4.Request;
import org.ovirt.engine.sdk4.Response;
import org.ovirt.engine.sdk4.Service;
import org.ovirt.engine.sdk4.builders.OpenStackNetworkProviderBuilder;
import org.ovirt.engine.sdk4.types.OpenStackNetworkProvider;
/**
* This service manages OpenStack network provider.
*/
public interface OpenstackNetworkProviderService extends Service {
/**
* Returns the representation of the object managed by this service.
*
* For example, to get the OpenStack network provider with identifier `1234`, send a request like this:
*
* [source]
* ----
* GET /ovirt-engine/api/openstacknetworkproviders/1234
* ----
*/
public interface GetRequest extends Request {
}
/**
* Returns the representation of the object managed by this service.
*
* For example, to get the OpenStack network provider with identifier `1234`, send a request like this:
*
* [source]
* ----
* GET /ovirt-engine/api/openstacknetworkproviders/1234
* ----
*/
public interface GetResponse extends Response {
OpenStackNetworkProvider provider();
}
/**
* Returns the representation of the object managed by this service.
*
* For example, to get the OpenStack network provider with identifier `1234`, send a request like this:
*
* [source]
* ----
* GET /ovirt-engine/api/openstacknetworkproviders/1234
* ----
*/
GetRequest get();
/**
* Removes the provider.
*
* For example, to remove the OpenStack network provider with identifier `1234`, send a request like this:
*
* [source]
* ----
* DELETE /ovirt-engine/api/openstacknetworkproviders/1234
* ----
*/
public interface RemoveRequest extends Request {
/**
* Indicates if the remove should be performed asynchronously.
*/
RemoveRequest async(Boolean async);
}
/**
* Removes the provider.
*
* For example, to remove the OpenStack network provider with identifier `1234`, send a request like this:
*
* [source]
* ----
* DELETE /ovirt-engine/api/openstacknetworkproviders/1234
* ----
*/
public interface RemoveResponse extends Response {
}
/**
* Removes the provider.
*
* For example, to remove the OpenStack network provider with identifier `1234`, send a request like this:
*
* [source]
* ----
* DELETE /ovirt-engine/api/openstacknetworkproviders/1234
* ----
*/
RemoveRequest remove();
/**
* Updates the provider.
*
* For example, to update `provider_name`, `requires_authentication`, `url`, `tenant_name` and `type` properties,
* for the OpenStack network provider with identifier `1234`, send a request like this:
*
* [source]
* ----
* PUT /ovirt-engine/api/openstacknetworkproviders/1234
* ----
*
* With a request body like this:
*
* [source,xml]
* ----
*
* ovn-network-provider
* false
* http://some_server_url.domain.com:9696
* oVirt
* external
*
* ----
*/
public interface UpdateRequest extends Request {
/**
* Indicates if the update should be performed asynchronously.
*/
UpdateRequest async(Boolean async);
UpdateRequest provider(OpenStackNetworkProvider provider);
/**
* The provider to update.
*/
UpdateRequest provider(OpenStackNetworkProviderBuilder provider);
}
/**
* Updates the provider.
*
* For example, to update `provider_name`, `requires_authentication`, `url`, `tenant_name` and `type` properties,
* for the OpenStack network provider with identifier `1234`, send a request like this:
*
* [source]
* ----
* PUT /ovirt-engine/api/openstacknetworkproviders/1234
* ----
*
* With a request body like this:
*
* [source,xml]
* ----
*
* ovn-network-provider
* false
* http://some_server_url.domain.com:9696
* oVirt
* external
*
* ----
*/
public interface UpdateResponse extends Response {
/**
* The provider to update.
*/
OpenStackNetworkProvider provider();
}
/**
* Updates the provider.
*
* For example, to update `provider_name`, `requires_authentication`, `url`, `tenant_name` and `type` properties,
* for the OpenStack network provider with identifier `1234`, send a request like this:
*
* [source]
* ----
* PUT /ovirt-engine/api/openstacknetworkproviders/1234
* ----
*
* With a request body like this:
*
* [source,xml]
* ----
*
* ovn-network-provider
* false
* http://some_server_url.domain.com:9696
* oVirt
* external
*
* ----
*/
UpdateRequest update();
/**
* Reference to OpenStack networks service.
*/
OpenstackNetworksService networksService();
/**
* Service locator method, returns individual service on which the URI is dispatched.
*/
Service service(String path);
}