/* * 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.aws.elb; import static org.jclouds.aws.domain.Region.AP_NORTHEAST_1; import static org.jclouds.aws.domain.Region.AP_SOUTHEAST_1; import static org.jclouds.aws.domain.Region.AP_SOUTHEAST_2; import static org.jclouds.aws.domain.Region.EU_WEST_1; import static org.jclouds.aws.domain.Region.SA_EAST_1; import static org.jclouds.aws.domain.Region.US_EAST_1; import static org.jclouds.aws.domain.Region.US_WEST_1; import static org.jclouds.aws.domain.Region.US_WEST_2; import static org.jclouds.aws.reference.AWSConstants.PROPERTY_ZONECLIENT_ENDPOINT; import static org.jclouds.location.reference.LocationConstants.PROPERTY_REGION; import java.net.URI; import java.util.Properties; import org.jclouds.aws.domain.Region; import org.jclouds.elb.ELBApiMetadata; import org.jclouds.providers.ProviderMetadata; import org.jclouds.providers.internal.BaseProviderMetadata; import com.google.auto.service.AutoService; /** * Implementation of {@link ProviderMetadata} for Amazon's Elastic Load Balancing provider. */ @AutoService(ProviderMetadata.class) public class AWSELBProviderMetadata extends BaseProviderMetadata { public static Builder builder() { return new Builder(); } @Override public Builder toBuilder() { return Builder.class.cast(builder().fromProviderMetadata(this)); } public AWSELBProviderMetadata() { super(builder()); } public AWSELBProviderMetadata(Builder builder) { super(builder); } public static Properties defaultProperties() { Properties properties = new Properties(); properties.putAll(Region.regionProperties()); properties.setProperty(PROPERTY_REGION + "." + US_EAST_1 + ".endpoint", "https://elasticloadbalancing.us-east-1.amazonaws.com"); properties.setProperty(PROPERTY_REGION + "." + US_WEST_1 + ".endpoint", "https://elasticloadbalancing.us-west-1.amazonaws.com"); properties.setProperty(PROPERTY_REGION + "." + US_WEST_2 + ".endpoint", "https://elasticloadbalancing.us-west-2.amazonaws.com"); properties.setProperty(PROPERTY_REGION + "." + SA_EAST_1 + ".endpoint", "https://elasticloadbalancing.sa-east-1.amazonaws.com"); properties.setProperty(PROPERTY_REGION + "." + EU_WEST_1 + ".endpoint", "https://elasticloadbalancing.eu-west-1.amazonaws.com"); properties.setProperty(PROPERTY_REGION + "." + AP_SOUTHEAST_1 + ".endpoint", "https://elasticloadbalancing.ap-southeast-1.amazonaws.com"); properties.setProperty(PROPERTY_REGION + "." + AP_SOUTHEAST_2 + ".endpoint", "https://elasticloadbalancing.ap-southeast-2.amazonaws.com"); properties.setProperty(PROPERTY_REGION + "." + AP_NORTHEAST_1 + ".endpoint", "https://elasticloadbalancing.ap-northeast-1.amazonaws.com"); properties.setProperty(PROPERTY_ZONECLIENT_ENDPOINT, "https://ec2.us-east-1.amazonaws.com"); return properties; } public static class Builder extends BaseProviderMetadata.Builder { protected Builder(){ id("aws-elb") .name("Amazon Elastic Load Balancing") .endpoint("https://elasticloadbalancing.us-east-1.amazonaws.com") .homepage(URI.create("http://aws.amazon.com/elasticloadbalancing")) .console(URI.create("https://console.aws.amazon.com/ec2/home")) .linkedServices("aws-ec2", "aws-elb", "aws-cloudwatch", "aws-s3", "aws-simpledb") .iso3166Codes("US-VA", "US-CA", "BR-SP", "US-OR", "IE", "SG", "AU-NSW", "JP-13") .apiMetadata(new ELBApiMetadata()) .defaultProperties(AWSELBProviderMetadata.defaultProperties()); } @Override public Builder fromProviderMetadata( ProviderMetadata in) { super.fromProviderMetadata(in); return this; } } }