org.jclouds.rackspace.clouddns.us.CloudDNSUSProviderMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rackspace-clouddns-us Show documentation
Show all versions of rackspace-clouddns-us Show documentation
Rackspace Next Generation Cloud DNS US
/*
* 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.rackspace.clouddns.us;
import java.net.URI;
import java.util.Properties;
import org.jclouds.providers.ProviderMetadata;
import org.jclouds.providers.internal.BaseProviderMetadata;
import org.jclouds.rackspace.clouddns.v1.CloudDNSApiMetadata;
/**
* Implementation of {@link org.jclouds.types.ProviderMetadata} for Rackspace DNS US.
*
* @author Everett Toews
*/
public class CloudDNSUSProviderMetadata extends BaseProviderMetadata {
public static Builder builder() {
return new Builder();
}
@Override
public Builder toBuilder() {
return builder().fromProviderMetadata(this);
}
public CloudDNSUSProviderMetadata() {
super(builder());
}
public CloudDNSUSProviderMetadata(Builder builder) {
super(builder);
}
public static Properties defaultProperties() {
Properties properties = new Properties();
return properties;
}
public static class Builder extends BaseProviderMetadata.Builder {
protected Builder() {
id("rackspace-clouddns-us")
.name("Rackspace Cloud DNS US")
.apiMetadata(new CloudDNSApiMetadata().toBuilder()
.defaultEndpoint("https://identity.api.rackspacecloud.com/v2.0/")
.build())
.homepage(URI.create("http://www.rackspace.com/cloud/public/dns/"))
.console(URI.create("https://mycloud.rackspace.com"))
.linkedServices("rackspace-cloudidentity", "rackspace-cloudservers-us", "cloudfiles-us", "rackspace-cloudblockstorage-us", "rackspace-cloudloadbalancers-us")
.iso3166Codes("US-TX")
.endpoint("https://identity.api.rackspacecloud.com/v2.0/")
.defaultProperties(CloudDNSApiMetadata.defaultProperties());
}
@Override
public CloudDNSUSProviderMetadata build() {
return new CloudDNSUSProviderMetadata(this);
}
@Override
public Builder fromProviderMetadata(
ProviderMetadata in) {
super.fromProviderMetadata(in);
return this;
}
}
}