| 1 | /** |
| 2 | * Licensed to jclouds, Inc. (jclouds) under one or more |
| 3 | * contributor license agreements. See the NOTICE file |
| 4 | * distributed with this work for additional information |
| 5 | * regarding copyright ownership. jclouds licenses this file |
| 6 | * to you under the Apache License, Version 2.0 (the |
| 7 | * "License"); you may not use this file except in compliance |
| 8 | * with the License. You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, |
| 13 | * software distributed under the License is distributed on an |
| 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | * KIND, either express or implied. See the License for the |
| 16 | * specific language governing permissions and limitations |
| 17 | * under the License. |
| 18 | */ |
| 19 | package org.jclouds.aws.s3; |
| 20 | |
| 21 | import com.google.common.collect.ImmutableSet; |
| 22 | |
| 23 | import java.net.URI; |
| 24 | import java.util.Set; |
| 25 | |
| 26 | import org.jclouds.providers.BaseProviderMetadata; |
| 27 | import org.jclouds.providers.ProviderMetadata; |
| 28 | |
| 29 | /** |
| 30 | * Implementation of {@link org.jclouds.types.ProviderMetadata} for Amazon's Simple Storage Service |
| 31 | * (S3) provider. |
| 32 | * |
| 33 | * @author Adrian Cole |
| 34 | */ |
| 35 | public class AWSS3ProviderMetadata extends BaseProviderMetadata { |
| 36 | |
| 37 | /** |
| 38 | * {@inheritDoc} |
| 39 | */ |
| 40 | @Override |
| 41 | public String getId() { |
| 42 | return "aws-s3"; |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * {@inheritDoc} |
| 47 | */ |
| 48 | @Override |
| 49 | public String getType() { |
| 50 | return ProviderMetadata.BLOBSTORE_TYPE; |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * {@inheritDoc} |
| 55 | */ |
| 56 | @Override |
| 57 | public String getName() { |
| 58 | return "Amazon Simple Storage Service (S3)"; |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * {@inheritDoc} |
| 63 | */ |
| 64 | @Override |
| 65 | public String getIdentityName() { |
| 66 | return "Access Key ID"; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * {@inheritDoc} |
| 71 | */ |
| 72 | @Override |
| 73 | public String getCredentialName() { |
| 74 | return "Secret Access Key"; |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * {@inheritDoc} |
| 79 | */ |
| 80 | @Override |
| 81 | public URI getHomepage() { |
| 82 | return URI.create("http://aws.amazon.com/s3/"); |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * {@inheritDoc} |
| 87 | */ |
| 88 | @Override |
| 89 | public URI getConsole() { |
| 90 | return URI.create("https://console.aws.amazon.com/s3/home"); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * {@inheritDoc} |
| 95 | */ |
| 96 | @Override |
| 97 | public URI getApiDocumentation() { |
| 98 | return URI.create("http://docs.amazonwebservices.com/AmazonS3/latest/API"); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * {@inheritDoc} |
| 103 | */ |
| 104 | @Override |
| 105 | public Set<String> getLinkedServices() { |
| 106 | return ImmutableSet.of("aws-s3", "aws-ec2", "aws-elb", "aws-simpledb"); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * {@inheritDoc} |
| 111 | */ |
| 112 | @Override |
| 113 | public Set<String> getIso3166Codes() { |
| 114 | return ImmutableSet.of("US", "US-CA", "IE", "SG", "JP-13"); |
| 115 | } |
| 116 | |
| 117 | } |