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

com.huawei.openstack4j.openstack.dns.v2.internal.PTRServiceImpl Maven / Gradle / Ivy

 /*******************************************************************************
 * 	Copyright 2018 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.dns.v2.internal;

import static com.google.common.base.Preconditions.*;
import static com.huawei.openstack4j.core.transport.ClientConstants.*;

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

import com.huawei.openstack4j.api.dns.v2.PTRService;
import com.huawei.openstack4j.model.common.ActionResponse;
import com.huawei.openstack4j.model.dns.v2.PTR;
import com.huawei.openstack4j.openstack.dns.v2.domain.DesignatePTR;

/**
 *
 * @author QianBiao.NG
 * @date   2017-06-16 10:40:24
 */
public class PTRServiceImpl extends BaseDNSServices implements PTRService {

	/*
	 * {@inheritDoc}
	 */
	@Override
	public DesignatePTR setup(DesignatePTR record) {
		checkNotNull(record, "The PTR record is Null.");
		checkNotNull(record.getPtrdname());
		checkArgument(record.getTtl() >= 300 && record.getTtl() <= 2147483647, "TTL value shold equal or bigger than 300, and equal or less than 2147483647");
		return patch(DesignatePTR.class, PATH_PTR, "/", record.getRegion(), ":", record.getFloatingIpId()).entity(record).execute();
	}

	/*
	 * {@inheritDoc}
	 */
	@Override
	public DesignatePTR get(String region, String floatingIpId) {
		checkNotNull(region, "The region info is Null.");
		checkNotNull(floatingIpId, "The floating Ip ID is Null.");
		return get(DesignatePTR.class, PATH_PTR, "/", region, ":", floatingIpId).execute();
	}

	/*
	 * {@inheritDoc}
	 */
	@Override
	public List list() {
		return get(DesignatePTR.PTRList.class, uri(PATH_PTR)).execute().getList();
	}

	/*
	 * {@inheritDoc}
	 */
	@Override
	public List list(Map filters) {
		Invocation invocation = get(DesignatePTR.PTRList.class, uri(PATH_PTR));
		invocation.params(filters);
		return invocation.execute().getList();
	}

	/*
	 * {@inheritDoc}
	 */
	@Override
	public ActionResponse restore(String region, String floatingIpId) {
		checkNotNull(region, "The region is Null.");
		checkNotNull(floatingIpId, "The floating Ip Id is Null.");
		DesignatePTR.DesignatePTRBuilder builder = DesignatePTR.builder().ptrdname(null);
		DesignatePTR ptrRecord = builder.build();
		return patchWithResponse(PATH_PTR, "/", region, ":", floatingIpId).entity(ptrRecord).execute();
	}

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy