blob: 41e9937ad41efc9c301a4aeadbe91d7c6ba4d120 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.jclouds.aliyun.ecs.features;
import com.google.common.base.Function;
import com.google.common.base.Predicates;
import com.google.common.collect.Iterables;
import com.google.inject.TypeLiteral;
import org.jclouds.Constants;
import org.jclouds.Fallbacks;
import org.jclouds.aliyun.ecs.ECSComputeServiceApi;
import org.jclouds.aliyun.ecs.domain.KeyPair;
import org.jclouds.aliyun.ecs.domain.KeyPairRequest;
import org.jclouds.aliyun.ecs.domain.Request;
import org.jclouds.aliyun.ecs.domain.internal.PaginatedCollection;
import org.jclouds.aliyun.ecs.domain.options.ListKeyPairsOptions;
import org.jclouds.aliyun.ecs.domain.options.PaginationOptions;
import org.jclouds.aliyun.ecs.filters.FormSign;
import org.jclouds.aliyun.ecs.functions.ArrayToCommaSeparatedString;
import org.jclouds.collect.IterableWithMarker;
import org.jclouds.collect.PagedIterable;
import org.jclouds.collect.internal.ArgsToPagedIterable;
import org.jclouds.http.functions.ParseJson;
import org.jclouds.json.Json;
import org.jclouds.rest.annotations.Fallback;
import org.jclouds.rest.annotations.ParamParser;
import org.jclouds.rest.annotations.QueryParams;
import org.jclouds.rest.annotations.RequestFilters;
import org.jclouds.rest.annotations.ResponseParser;
import org.jclouds.rest.annotations.Transform;
import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Singleton;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import java.beans.ConstructorProperties;
import java.util.List;
import java.util.Map;
/**
* https://www.alibabacloud.com/help/doc-detail/51771.htm?spm=a2c63.p38356.b99.338.1da53569DqQAVv
*/
@Consumes(MediaType.APPLICATION_JSON)
@RequestFilters(FormSign.class)
@QueryParams(keys = { "Version", "Format", "SignatureVersion", "ServiceCode", "SignatureMethod" },
values = {"{" + Constants.PROPERTY_API_VERSION + "}", "JSON", "1.0", "ecs", "HMAC-SHA1"})
public interface SshKeyPairApi {
@Named("sshKeyPair:list")
@GET
@QueryParams(keys = "Action", values = "DescribeKeyPairs")
@ResponseParser(ParseKeyPairs.class)
@Fallback(Fallbacks.EmptyIterableWithMarkerOnNotFoundOr404.class)
IterableWithMarker<KeyPair> list(@QueryParam("RegionId") String region, ListKeyPairsOptions options);
@Named("sshKeyPair:list")
@GET
@QueryParams(keys = "Action", values = "DescribeKeyPairs")
@ResponseParser(ParseKeyPairs.class)
@Transform(ParseKeyPairs.ToPagedIterable.class)
@Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
PagedIterable<KeyPair> list(@QueryParam("RegionId") String region);
@Singleton
final class ParseKeyPairs extends ParseJson<ParseKeyPairs.KeyPairs> {
@Inject
ParseKeyPairs(final Json json) {
super(json, TypeLiteral.get(KeyPairs.class));
}
private static class KeyPairs extends PaginatedCollection<KeyPair> {
@ConstructorProperties({ "KeyPairs", "PageNumber", "TotalCount", "PageSize", "RegionId", "RequestId" })
public KeyPairs(Map<String, Iterable<KeyPair>> content, Integer pageNumber, Integer totalCount, Integer pageSize, String regionId, String requestId) {
super(content, pageNumber, totalCount, pageSize, regionId, requestId);
}
}
private static class ToPagedIterable extends ArgsToPagedIterable<KeyPair, ToPagedIterable> {
private final ECSComputeServiceApi api;
@Inject
ToPagedIterable(ECSComputeServiceApi api) {
this.api = api;
}
@Override
protected Function<Object, IterableWithMarker<KeyPair>> markerToNextForArgs(List<Object> args) {
if (args == null || args.isEmpty()) throw new IllegalStateException("Can't advance the PagedIterable");
final String regionId = args.get(0).toString();
final ListKeyPairsOptions original = (ListKeyPairsOptions) Iterables.tryFind(args, Predicates.instanceOf(ListKeyPairsOptions.class)).orNull();
return new Function<Object, IterableWithMarker<KeyPair>>() {
@Override
public IterableWithMarker<KeyPair> apply(Object input) {
ListKeyPairsOptions options = original == null ?
ListKeyPairsOptions.Builder.paginationOptions(PaginationOptions.class.cast(input)) :
original.paginationOptions(PaginationOptions.class.cast(input));
return api.sshKeyPairApi().list(regionId, options);
}
};
}
}
}
@Named("sshKeyPair:create")
@POST
@QueryParams(keys = "Action", values = "CreateKeyPair")
KeyPairRequest create(@QueryParam("RegionId") String region, @QueryParam("KeyPairName") String keyPairName);
@Named("sshKeyPair:import")
@POST
@QueryParams(keys = "Action", values = "ImportKeyPair")
KeyPair importKeyPair(@QueryParam("RegionId") String region,
@QueryParam("PublicKeyBody") String publicKeyBody,
@QueryParam("KeyPairName") String keyPairName);
@Named("sshKeyPair:delete")
@POST
@QueryParams(keys = "Action", values = "DeleteKeyPairs")
@Fallback(Fallbacks.NullOnNotFoundOr404.class)
Request delete(@QueryParam("RegionId") String region,
@ParamParser(ArrayToCommaSeparatedString.class) @QueryParam("KeyPairNames") String... keyPairNames);
}