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

com.huawei.openstack4j.openstack.trove.internal.TroveDatabaseParamService Maven / Gradle / Ivy

/*******************************************************************************
 * 	Copyright 2017 Huawei Technologies Co., Ltd.
 * 	                                                                                 
 * 	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.openstack.trove.internal;

import java.util.List;
import java.util.Map;

import com.google.common.base.Preconditions;
import com.google.common.base.Strings;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.huawei.openstack4j.openstack.trove.domain.DatabaseParam;
import com.huawei.openstack4j.openstack.trove.domain.DatabaseParam.Parameters;

/**
 * The implementation of manipulation of {@link DatabaseParam}
 *
 * @author QianBiao.NG
 * @date   2017-08-03 11:06:34
 */
public class TroveDatabaseParamService extends BaseTroveServices {

	/**
	 * list all configuration parameters of a specification version	 of datastore
	 * 
	 * @param dataStoreVersionId	datastore version identifier
	 * @return a list of {@link DatabaseParam} instances 
	 */
	public List list(String dataStoreVersionId) {
		Preconditions.checkArgument(!Strings.isNullOrEmpty(dataStoreVersionId),
				"parameter `dataStoreVersionId` should not be empty");
		return get(Parameters.class, uri("/datastores/versions/%s/parameters", dataStoreVersionId)).execute().getList();
	}

	/**
	 * 
	 * get the details of a configuration parameter
	 * 
	 * @param dataStoreVersionId	datastore version identifier
	 * @param paramName				datastore configuration parameter name
	 * @return an instance of {@link DatabaseParam}
	 */
	public DatabaseParam get(String dataStoreVersionId, String paramName) {
		Preconditions.checkArgument(!Strings.isNullOrEmpty(dataStoreVersionId),
				"parameter `dataStoreVersionId` should not be empty");
		Preconditions.checkArgument(!Strings.isNullOrEmpty(paramName), "parameter `paramName` should not be empty");
		return get(Parameters.class, uri("/datastores/versions/%s/parameters/%s", dataStoreVersionId, paramName))
				.execute().getList().get(0);
	}

	/**
	 * 
	 * @param instanceId
	 * @return
	 */
	public Map getDefaultParamsByInstance(String instanceId) {
		Preconditions.checkArgument(!Strings.isNullOrEmpty(instanceId), "parameter `instanceId` should not be empty");
		GetDefaultParamsResponse response = get(GetDefaultParamsResponse.class,
				uri("/instances/%s/configuration", instanceId)).execute();
		return response.getParams();
	}

	@JsonRootName("instance")
	static class GetDefaultParamsResponse {

		@JsonProperty("configuration")
		Map params;

		public Map getParams() {
			return params;
		}

		public void setParams(Map params) {
			this.params = params;
		}

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy