blob: f2e9e5f23744102c8bd93c4b0a748a20b07e75c9 [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.Request;
import org.jclouds.aliyun.ecs.domain.VPC;
import org.jclouds.aliyun.ecs.domain.VPCRequest;
import org.jclouds.aliyun.ecs.domain.internal.PaginatedCollection;
import org.jclouds.aliyun.ecs.domain.options.CreateVPCOptions;
import org.jclouds.aliyun.ecs.domain.options.ListVPCsOptions;
import org.jclouds.aliyun.ecs.domain.options.PaginationOptions;
import org.jclouds.aliyun.ecs.filters.FormSign;
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.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/35737.htm?spm=a2c63.p38356.b99.44.2554c880ZhTTkh
*/
@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 VPCApi {
@Named("vpc:list")
@GET
@QueryParams(keys = "Action", values = "DescribeVpcs")
@ResponseParser(ParseVPCs.class)
@Fallback(Fallbacks.EmptyIterableWithMarkerOnNotFoundOr404.class)
IterableWithMarker<VPC> list(@QueryParam("RegionId") String region, ListVPCsOptions options);
@Named("vpc:list")
@GET
@QueryParams(keys = "Action", values = "DescribeVpcs")
@ResponseParser(ParseVPCs.class)
@Transform(ParseVPCs.ToPagedIterable.class)
@Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
PagedIterable<VPC> list(@QueryParam("RegionId") String region);
@Singleton
final class ParseVPCs extends ParseJson<ParseVPCs.VPCs> {
private static class VPCs extends PaginatedCollection<VPC> {
@ConstructorProperties({ "Vpcs", "PageNumber", "TotalCount", "PageSize", "RegionId", "RequestId" })
public VPCs(Map<String, Iterable<VPC>> content, Integer pageNumber, Integer totalCount, Integer pageSize, String regionId, String requestId) {
super(content, pageNumber, totalCount, pageSize, regionId, requestId);
}
}
@Inject
ParseVPCs(final Json json) {
super(json, TypeLiteral.get(VPCs.class));
}
static class ToPagedIterable extends ArgsToPagedIterable<VPC, ToPagedIterable> {
private final ECSComputeServiceApi api;
@Inject
ToPagedIterable(ECSComputeServiceApi api) {
this.api = api;
}
@Override
protected Function<Object, IterableWithMarker<VPC>> 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 ListVPCsOptions original = (ListVPCsOptions) Iterables.tryFind(args, Predicates.instanceOf(ListVPCsOptions.class)).orNull();
return new Function<Object, IterableWithMarker<VPC>>() {
@Override
public IterableWithMarker<VPC> apply(Object input) {
ListVPCsOptions options = original == null ?
ListVPCsOptions.Builder.paginationOptions(PaginationOptions.class.cast(input)) :
original.paginationOptions(PaginationOptions.class.cast(input));
return api.vpcApi().list(regionId, options);
}
};
}
}
}
@Named("vpc:create")
@POST
@QueryParams(keys = "Action", values = "CreateVpc")
VPCRequest create(@QueryParam("RegionId") String region);
@Named("vpc:create")
@POST
@QueryParams(keys = "Action", values = "CreateVpc")
VPCRequest create(@QueryParam("RegionId") String region, CreateVPCOptions vpcOptions);
@Named("vpc:delete")
@POST
@QueryParams(keys = "Action", values = "DeleteVpc")
Request delete(@QueryParam("RegionId") String region,
@QueryParam("VpcId") String vpcId);
}