All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ovirt.engine.sdk4.services.AssignedPermissionsService Maven / Gradle / Ivy

/*
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.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.PermissionBuilder;
import org.ovirt.engine.sdk4.types.Permission;

/**
 * Represents a permission sub-collection, scoped by user, group or some entity type.
 */
public interface AssignedPermissionsService extends Service {
    /**
     * Assign a new permission to a user or group for specific entity.
     * 
     * For example, to assign the `UserVmManager` role to the virtual machine with id `123` to the user with id `456`
     * send a request like this:
     * 
     * ....
     * POST /ovirt-engine/api/vms/123/permissions
     * ....
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     UserVmManager
     *   
     *   
     * 
     * ----
     * 
     * To assign the `SuperUser` role to the system to the user with id `456` send a request like this:
     * 
     * ....
     * POST /ovirt-engine/api/permissions
     * ....
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     SuperUser
     *   
     *   
     * 
     * ----
     * 
     * If you want to assign permission to the group instead of the user please replace the `user` element with the
     * `group` element with proper `id` of the group. For example to assign the `UserRole` role to the cluster with
     * id `123` to the group with id `789` send a request like this:
     * 
     * ....
     * POST /ovirt-engine/api/clusters/123/permissions
     * ....
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     UserRole
     *   
     *   
     * 
     * ----
     */
    public interface AddRequest extends Request {
        AddRequest permission(Permission permission);
        /**
         * The permission.
         */
        AddRequest permission(PermissionBuilder permission);
    }
    
    /**
     * Assign a new permission to a user or group for specific entity.
     * 
     * For example, to assign the `UserVmManager` role to the virtual machine with id `123` to the user with id `456`
     * send a request like this:
     * 
     * ....
     * POST /ovirt-engine/api/vms/123/permissions
     * ....
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     UserVmManager
     *   
     *   
     * 
     * ----
     * 
     * To assign the `SuperUser` role to the system to the user with id `456` send a request like this:
     * 
     * ....
     * POST /ovirt-engine/api/permissions
     * ....
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     SuperUser
     *   
     *   
     * 
     * ----
     * 
     * If you want to assign permission to the group instead of the user please replace the `user` element with the
     * `group` element with proper `id` of the group. For example to assign the `UserRole` role to the cluster with
     * id `123` to the group with id `789` send a request like this:
     * 
     * ....
     * POST /ovirt-engine/api/clusters/123/permissions
     * ....
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     UserRole
     *   
     *   
     * 
     * ----
     */
    public interface AddResponse extends Response {
        /**
         * The permission.
         */
        Permission permission();
    }
    
    /**
     * Assign a new permission to a user or group for specific entity.
     * 
     * For example, to assign the `UserVmManager` role to the virtual machine with id `123` to the user with id `456`
     * send a request like this:
     * 
     * ....
     * POST /ovirt-engine/api/vms/123/permissions
     * ....
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     UserVmManager
     *   
     *   
     * 
     * ----
     * 
     * To assign the `SuperUser` role to the system to the user with id `456` send a request like this:
     * 
     * ....
     * POST /ovirt-engine/api/permissions
     * ....
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     SuperUser
     *   
     *   
     * 
     * ----
     * 
     * If you want to assign permission to the group instead of the user please replace the `user` element with the
     * `group` element with proper `id` of the group. For example to assign the `UserRole` role to the cluster with
     * id `123` to the group with id `789` send a request like this:
     * 
     * ....
     * POST /ovirt-engine/api/clusters/123/permissions
     * ....
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     UserRole
     *   
     *   
     * 
     * ----
     */
    AddRequest add();
    
    /**
     * Add a new permission on the cluster to the group in the system.
     */
    public interface AddClusterPermissionRequest extends Request {
        AddClusterPermissionRequest permission(Permission permission);
        /**
         * The permission.
         */
        AddClusterPermissionRequest permission(PermissionBuilder permission);
    }
    
    /**
     * Add a new permission on the cluster to the group in the system.
     */
    public interface AddClusterPermissionResponse extends Response {
        /**
         * The permission.
         */
        Permission permission();
    }
    
    /**
     * Add a new permission on the cluster to the group in the system.
     */
    AddClusterPermissionRequest addClusterPermission();
    
    /**
     * Add a new permission on the data center to the group in the system.
     */
    public interface AddDataCenterPermissionRequest extends Request {
        AddDataCenterPermissionRequest permission(Permission permission);
        /**
         * The permission.
         */
        AddDataCenterPermissionRequest permission(PermissionBuilder permission);
    }
    
    /**
     * Add a new permission on the data center to the group in the system.
     */
    public interface AddDataCenterPermissionResponse extends Response {
        /**
         * The permission.
         */
        Permission permission();
    }
    
    /**
     * Add a new permission on the data center to the group in the system.
     */
    AddDataCenterPermissionRequest addDataCenterPermission();
    
    /**
     * Add a new group level permission for a given virtual machine.
     */
    public interface AddGroupLevelRequest extends Request {
        AddGroupLevelRequest permission(Permission permission);
        /**
         * The permission.
         */
        AddGroupLevelRequest permission(PermissionBuilder permission);
    }
    
    /**
     * Add a new group level permission for a given virtual machine.
     */
    public interface AddGroupLevelResponse extends Response {
        /**
         * The permission.
         */
        Permission permission();
    }
    
    /**
     * Add a new group level permission for a given virtual machine.
     */
    AddGroupLevelRequest addGroupLevel();
    
    /**
     * Add a new permission on the host to the group in the system.
     */
    public interface AddHostPermissionRequest extends Request {
        AddHostPermissionRequest permission(Permission permission);
        /**
         * The permission.
         */
        AddHostPermissionRequest permission(PermissionBuilder permission);
    }
    
    /**
     * Add a new permission on the host to the group in the system.
     */
    public interface AddHostPermissionResponse extends Response {
        /**
         * The permission.
         */
        Permission permission();
    }
    
    /**
     * Add a new permission on the host to the group in the system.
     */
    AddHostPermissionRequest addHostPermission();
    
    /**
     * List all the permissions of the specific entity.
     * 
     * For example to list all the permissions of the cluster with id `123` send a request like this:
     * 
     * ....
     * GET /ovirt-engine/api/clusters/123/permissions
     * ....
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     
     *     
     *     
     *   
     *   
     *     
     *     
     *     
     *   
     * 
     * ----
     * 
     * The order of the returned permissions isn't guaranteed.
     */
    public interface ListRequest extends Request {
        /**
         * Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part
         * of the current request. See <> for details.
         */
        ListRequest follow(String follow);
    }
    
    /**
     * List all the permissions of the specific entity.
     * 
     * For example to list all the permissions of the cluster with id `123` send a request like this:
     * 
     * ....
     * GET /ovirt-engine/api/clusters/123/permissions
     * ....
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     
     *     
     *     
     *   
     *   
     *     
     *     
     *     
     *   
     * 
     * ----
     * 
     * The order of the returned permissions isn't guaranteed.
     */
    public interface ListResponse extends Response {
        /**
         * The list of permissions.
         */
        List permissions();
    }
    
    /**
     * List all the permissions of the specific entity.
     * 
     * For example to list all the permissions of the cluster with id `123` send a request like this:
     * 
     * ....
     * GET /ovirt-engine/api/clusters/123/permissions
     * ....
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     
     *     
     *     
     *   
     *   
     *     
     *     
     *     
     *   
     * 
     * ----
     * 
     * The order of the returned permissions isn't guaranteed.
     */
    ListRequest list();
    
    /**
     * Add a new permission on the storage domain to the group in the system.
     */
    public interface AddStorageDomainPermissionRequest extends Request {
        AddStorageDomainPermissionRequest permission(Permission permission);
        /**
         * The permission.
         */
        AddStorageDomainPermissionRequest permission(PermissionBuilder permission);
    }
    
    /**
     * Add a new permission on the storage domain to the group in the system.
     */
    public interface AddStorageDomainPermissionResponse extends Response {
        /**
         * The permission.
         */
        Permission permission();
    }
    
    /**
     * Add a new permission on the storage domain to the group in the system.
     */
    AddStorageDomainPermissionRequest addStorageDomainPermission();
    
    /**
     * Add a new permission on the template to the group in the system.
     */
    public interface AddTemplatePermissionRequest extends Request {
        AddTemplatePermissionRequest permission(Permission permission);
        /**
         * The permission.
         */
        AddTemplatePermissionRequest permission(PermissionBuilder permission);
    }
    
    /**
     * Add a new permission on the template to the group in the system.
     */
    public interface AddTemplatePermissionResponse extends Response {
        /**
         * The permission.
         */
        Permission permission();
    }
    
    /**
     * Add a new permission on the template to the group in the system.
     */
    AddTemplatePermissionRequest addTemplatePermission();
    
    /**
     * Add a new user level permission for a given virtual machine.
     */
    public interface AddUserLevelRequest extends Request {
        AddUserLevelRequest permission(Permission permission);
        /**
         * The permission.
         */
        AddUserLevelRequest permission(PermissionBuilder permission);
    }
    
    /**
     * Add a new user level permission for a given virtual machine.
     */
    public interface AddUserLevelResponse extends Response {
        /**
         * The permission.
         */
        Permission permission();
    }
    
    /**
     * Add a new user level permission for a given virtual machine.
     */
    AddUserLevelRequest addUserLevel();
    
    /**
     * Add a new permission on the vm to the group in the system.
     */
    public interface AddVmPermissionRequest extends Request {
        AddVmPermissionRequest permission(Permission permission);
        /**
         * The permission.
         */
        AddVmPermissionRequest permission(PermissionBuilder permission);
    }
    
    /**
     * Add a new permission on the vm to the group in the system.
     */
    public interface AddVmPermissionResponse extends Response {
        /**
         * The permission.
         */
        Permission permission();
    }
    
    /**
     * Add a new permission on the vm to the group in the system.
     */
    AddVmPermissionRequest addVmPermission();
    
    /**
     * Add a new permission on the vm pool to the group in the system.
     */
    public interface AddVmPoolPermissionRequest extends Request {
        AddVmPoolPermissionRequest permission(Permission permission);
        /**
         * The permission.
         */
        AddVmPoolPermissionRequest permission(PermissionBuilder permission);
    }
    
    /**
     * Add a new permission on the vm pool to the group in the system.
     */
    public interface AddVmPoolPermissionResponse extends Response {
        /**
         * The permission.
         */
        Permission permission();
    }
    
    /**
     * Add a new permission on the vm pool to the group in the system.
     */
    AddVmPoolPermissionRequest addVmPoolPermission();
    
    /**
     * Sub-resource locator method, returns individual permission resource on which the remainder of the URI is
     * dispatched.
     */
    PermissionService permissionService(String id);
    /**
     * Service locator method, returns individual service on which the URI is dispatched.
     */
    Service service(String path);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy