use of com.microsoft.azure.toolkit.intellij.common.component.RegionComboBox in project azure-tools-for-java by Microsoft.
the class ApplicationInsightsNewDialog method createUIComponents.
private void createUIComponents() {
this.comboSub = new SubscriptionComboBox();
this.comboReg = new RegionComboBox();
}
use of com.microsoft.azure.toolkit.intellij.common.component.RegionComboBox in project azure-tools-for-java by Microsoft.
the class CreateRedisCacheForm method createUIComponents.
private void createUIComponents() {
this.cbSubs = new SubscriptionComboBox();
this.cbLocations = new RegionComboBox();
}
use of com.microsoft.azure.toolkit.intellij.common.component.RegionComboBox in project azure-tools-for-java by Microsoft.
the class RedisCreationDialog method createUIComponents.
private void createUIComponents() {
this.subscriptionComboBox = new SubscriptionComboBox();
this.resourceGroupComboBox = new ResourceGroupComboBox();
this.regionComboBox = new RegionComboBox() {
protected List<? extends Region> loadItems() {
if (Objects.nonNull(this.subscription)) {
return Azure.az(AzureRedis.class).listSupportedRegions(subscription.getId());
}
return Collections.emptyList();
}
};
this.redisNameTextField = new ValidationDebouncedTextInput();
this.pricingComboBox = new AzureComboBoxSimple<>(PricingTier::values);
}
use of com.microsoft.azure.toolkit.intellij.common.component.RegionComboBox in project azure-tools-for-java by Microsoft.
the class CreateDeploymentForm method createUIComponents.
private void createUIComponents() {
this.subscriptionCb = new SubscriptionComboBox();
this.regionCb = new RegionComboBox();
}
Aggregations