blob: a1bfe8d0e666250d6dd0f1acdd622b16bdad5e9d [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.iam;
import static org.jclouds.aws.reference.AWSConstants.PROPERTY_AUTH_TAG;
import static org.jclouds.aws.reference.AWSConstants.PROPERTY_HEADER_TAG;
import java.net.URI;
import java.util.Properties;
import org.jclouds.apis.ApiMetadata;
import org.jclouds.iam.config.IAMHttpApiModule;
import org.jclouds.rest.internal.BaseHttpApiMetadata;
import com.google.auto.service.AutoService;
/**
* Implementation of {@link ApiMetadata} for Amazon's IAM api.
*/
@AutoService(ApiMetadata.class)
public class IAMApiMetadata extends BaseHttpApiMetadata<IAMApi> {
@Override
public Builder toBuilder() {
return new Builder().fromApiMetadata(this);
}
public IAMApiMetadata() {
this(new Builder());
}
protected IAMApiMetadata(Builder builder) {
super(Builder.class.cast(builder));
}
public static Properties defaultProperties() {
Properties properties = BaseHttpApiMetadata.defaultProperties();
properties.setProperty(PROPERTY_AUTH_TAG, "AWS");
properties.setProperty(PROPERTY_HEADER_TAG, "amz");
return properties;
}
public static class Builder extends BaseHttpApiMetadata.Builder<IAMApi, Builder> {
protected Builder() {
id("iam")
.name("Amazon IAM Api")
.identityName("Access Key ID")
.credentialName("Secret Access Key")
.version("2010-05-08")
.documentation(URI.create("http://docs.amazonwebservices.com/IAM/latest/APIReference/"))
.defaultEndpoint("https://iam.amazonaws.com")
.defaultProperties(IAMApiMetadata.defaultProperties())
.defaultModule(IAMHttpApiModule.class);
}
@Override
public IAMApiMetadata build() {
return new IAMApiMetadata(this);
}
@Override
protected Builder self() {
return this;
}
}
}