com.huawei.openstack4j.api.identity.v3.IdentityService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openstack4j Show documentation
Show all versions of openstack4j Show documentation
Huawei Cloud Open API SDK for Java
/*******************************************************************************
* Copyright 2016 ContainX and OpenStack4j
*
* 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 com.huawei.openstack4j.api.identity.v3;
import java.util.List;
import com.huawei.openstack4j.common.RestService;
import com.huawei.openstack4j.model.common.Extension;
/**
* Identity v3 Service Operations API
*
*/
public interface IdentityService extends RestService {
/**
* Credential Service API
*
* @return the credential service
*/
//CredentialService credentials();
/**
* Domain Service API
*
* @return the domain service
*/
DomainService domains();
/**
* Projects Service API
*
* @return the project service
*/
ProjectService projects();
/**
* Users Service API
*
* @return the user service
*/
UserService users();
/**
* Role Service API
*
* @return the role service
*/
RoleService roles();
/**
* Group Service API
*
* @return the group service
*/
GroupService groups();
/**
* Token Service API
*
* @return the token service
*/
TokenService tokens();
/**
* Policy Service API
*
* @return the policy service
*/
//PolicyService policies();
/**
* ServiceEndpoint Service API
*
* @return the service and endpoint service
*/
ServiceEndpointService serviceEndpoints();
/**
* Region Service API
*
* @return the region service
*/
RegionService regions();
/**
* Version Service API
*
* @return the version service
*/
VersionService versions();
/**
* List extensions currently available on the OpenStack instance
*
* @return List of extensions
*/
List extends Extension> listExtensions();
}