blob: 4a82f67e5f809acffac62695684878d8fb5bda07 [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.azurecompute;
import static org.jclouds.azurecompute.config.AzureComputeProperties.DEALLOCATE_WHEN_SUSPENDING;
import static org.jclouds.azurecompute.config.AzureComputeProperties.OPERATION_POLL_INITIAL_PERIOD;
import static org.jclouds.azurecompute.config.AzureComputeProperties.OPERATION_POLL_MAX_PERIOD;
import static org.jclouds.azurecompute.config.AzureComputeProperties.OPERATION_TIMEOUT;
import static org.jclouds.azurecompute.config.AzureComputeProperties.TCP_RULE_FORMAT;
import static org.jclouds.azurecompute.config.AzureComputeProperties.TCP_RULE_REGEXP;
import java.net.URI;
import java.util.Properties;
import org.jclouds.azurecompute.domain.Region;
import org.jclouds.providers.ProviderMetadata;
import org.jclouds.providers.internal.BaseProviderMetadata;
import com.google.auto.service.AutoService;
@AutoService(ProviderMetadata.class)
public class AzureComputeProviderMetadata extends BaseProviderMetadata {
public static Builder builder() {
return new Builder();
}
@Override
public Builder toBuilder() {
return builder().fromProviderMetadata(this);
}
public AzureComputeProviderMetadata() {
super(builder());
}
public static Properties defaultProperties() {
final Properties properties = AzureManagementApiMetadata.defaultProperties();
properties.setProperty(OPERATION_TIMEOUT, "60000");
properties.setProperty(OPERATION_POLL_INITIAL_PERIOD, "5");
properties.setProperty(OPERATION_POLL_MAX_PERIOD, "15");
properties.setProperty(TCP_RULE_FORMAT, "tcp_%s-%s");
properties.setProperty(TCP_RULE_REGEXP, "tcp_\\d{1,5}-\\d{1,5}");
properties.setProperty(DEALLOCATE_WHEN_SUSPENDING, "true");
return properties;
}
public AzureComputeProviderMetadata(final Builder builder) {
super(builder);
}
public static class Builder extends BaseProviderMetadata.Builder {
protected Builder() {
super();
id("azurecompute")
.name("Microsoft Azure Service Management Service")
.apiMetadata(new AzureManagementApiMetadata())
.endpoint("https://management.core.windows.net/SUBSCRIPTION_ID")
.homepage(URI.create("https://www.windowsazure.com/"))
.console(URI.create("https://windows.azure.com/default.aspx"))
.linkedServices("azureblob", "azurequeue", "azuretable")
.iso3166Codes(Region.iso3166Codes())
.defaultProperties(AzureComputeProviderMetadata.defaultProperties());
}
@Override
public AzureComputeProviderMetadata build() {
return new AzureComputeProviderMetadata(this);
}
@Override
public Builder fromProviderMetadata(final ProviderMetadata providerMetadata) {
super.fromProviderMetadata(providerMetadata);
return this;
}
}
}