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 java.math.BigInteger;
import java.util.List;
import org.ovirt.engine.sdk4.Request;
import org.ovirt.engine.sdk4.Response;
import org.ovirt.engine.sdk4.Service;
import org.ovirt.engine.sdk4.builders.StorageDomainBuilder;
import org.ovirt.engine.sdk4.types.StorageDomain;
public interface StorageDomainsService extends Service {
/**
* Adds a new storage domain.
*
* Creation of a new <> requires the `name`, `type`, `host` and `storage`
* attributes. Identify the `host` attribute with the `id` or `name` attributes. In oVirt 3.6 and later you can
* enable the wipe after delete option by default on the storage domain. To configure this, specify
* `wipe_after_delete` in the POST request. This option can be edited after the domain is created, but doing so will
* not change the wipe after delete property of disks that already exist.
*
* To add a new storage domain with specified `name`, `type`, `storage.type`, `storage.address` and `storage.path`
* and by using a host with an id `123`, send a request as follows:
*
* [source]
* ----
* POST /ovirt-engine/api/storagedomains
* ----
*
* With a request body as follows:
*
* [source,xml]
* ----
*
* mydata
* data
*
* nfs
* mynfs.example.com
* /exports/mydata
*
*
* myhost
*
*
* ----
*
* To create a new NFS ISO storage domain send a request like this:
*
* [source,xml]
* ----
*
* myisos
* iso
*
* nfs
* mynfs.example.com
* /export/myisos
*
*
* myhost
*
*
* ----
*
* To create a new iSCSI storage domain send a request like this:
*
* [source,xml]
* ----
*
* myiscsi
* data
*
* iscsi
*
*
*
*
*
*
* myhost
*
*
* ----
*/
public interface AddRequest extends Request {
AddRequest storageDomain(StorageDomain storageDomain);
AddRequest storageDomain(StorageDomainBuilder storageDomain);
}
/**
* Adds a new storage domain.
*
* Creation of a new <> requires the `name`, `type`, `host` and `storage`
* attributes. Identify the `host` attribute with the `id` or `name` attributes. In oVirt 3.6 and later you can
* enable the wipe after delete option by default on the storage domain. To configure this, specify
* `wipe_after_delete` in the POST request. This option can be edited after the domain is created, but doing so will
* not change the wipe after delete property of disks that already exist.
*
* To add a new storage domain with specified `name`, `type`, `storage.type`, `storage.address` and `storage.path`
* and by using a host with an id `123`, send a request as follows:
*
* [source]
* ----
* POST /ovirt-engine/api/storagedomains
* ----
*
* With a request body as follows:
*
* [source,xml]
* ----
*
* mydata
* data
*
* nfs
* mynfs.example.com
* /exports/mydata
*
*
* myhost
*
*
* ----
*
* To create a new NFS ISO storage domain send a request like this:
*
* [source,xml]
* ----
*
* myisos
* iso
*
* nfs
* mynfs.example.com
* /export/myisos
*
*
* myhost
*
*
* ----
*
* To create a new iSCSI storage domain send a request like this:
*
* [source,xml]
* ----
*
* myiscsi
* data
*
* iscsi
*
*
*
*
*
*
* myhost
*
*
* ----
*/
public interface AddResponse extends Response {
StorageDomain storageDomain();
}
/**
* Adds a new storage domain.
*
* Creation of a new <> requires the `name`, `type`, `host` and `storage`
* attributes. Identify the `host` attribute with the `id` or `name` attributes. In oVirt 3.6 and later you can
* enable the wipe after delete option by default on the storage domain. To configure this, specify
* `wipe_after_delete` in the POST request. This option can be edited after the domain is created, but doing so will
* not change the wipe after delete property of disks that already exist.
*
* To add a new storage domain with specified `name`, `type`, `storage.type`, `storage.address` and `storage.path`
* and by using a host with an id `123`, send a request as follows:
*
* [source]
* ----
* POST /ovirt-engine/api/storagedomains
* ----
*
* With a request body as follows:
*
* [source,xml]
* ----
*
* mydata
* data
*
* nfs
* mynfs.example.com
* /exports/mydata
*
*
* myhost
*
*
* ----
*
* To create a new NFS ISO storage domain send a request like this:
*
* [source,xml]
* ----
*
* myisos
* iso
*
* nfs
* mynfs.example.com
* /export/myisos
*
*
* myhost
*
*
* ----
*
* To create a new iSCSI storage domain send a request like this:
*
* [source,xml]
* ----
*
* myiscsi
* data
*
* iscsi
*
*
*
*
*
*
* myhost
*
*
* ----
*/
AddRequest add();
public interface ListRequest extends Request {
/**
* Indicates if the search performed using the `search` parameter should be performed taking case into
* account. The default value is `true`, which means that case is taken into account. If you want to search
* ignoring case set it to `false`.
*/
ListRequest caseSensitive(Boolean caseSensitive);
/**
* Indicates if the results should be filtered according to the permissions of the user.
*/
ListRequest filter(Boolean filter);
/**
* Sets the maximum number of storage domains to return. If not specified all the storage domains are returned.
*/
ListRequest max(Integer max);
/**
* Sets the maximum number of storage domains to return. If not specified all the storage domains are returned.
*/
ListRequest max(Long max);
/**
* Sets the maximum number of storage domains to return. If not specified all the storage domains are returned.
*/
ListRequest max(BigInteger max);
/**
* A query string used to restrict the returned storage domains.
*/
ListRequest search(String search);
}
public interface ListResponse extends Response {
List storageDomains();
}
ListRequest list();
StorageDomainService storageDomainService(String id);
/**
* Service locator method, returns individual service on which the URI is dispatched.
*/
Service service(String path);
}