com.microsoft.azure.management.redis.implementation.RedisFirewallRuleImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-redis Show documentation
Show all versions of azure-mgmt-redis Show documentation
This package contains Microsoft Azure Redis Cache SDK.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.management.redis.implementation;
import com.microsoft.azure.management.apigeneration.LangDefinition;
import com.microsoft.azure.management.redis.RedisCache;
import com.microsoft.azure.management.redis.RedisFirewallRule;
import com.microsoft.azure.management.redis.RedisFirewallRuleCreateParameters;
import com.microsoft.azure.management.resources.fluentcore.arm.models.implementation.ExternalChildResourceImpl;
import rx.Observable;
import rx.functions.Func1;
/**
* The Azure {@link RedisFirewallRule} wrapper class implementation.
*/
@LangDefinition
class RedisFirewallRuleImpl extends
ExternalChildResourceImpl
implements RedisFirewallRule {
RedisFirewallRuleImpl(String name, RedisCacheImpl parent, RedisFirewallRuleInner innerObject) {
super(getChildName(name, parent.name()), parent, innerObject);
}
@Override
public String id() {
return this.inner().id();
}
@Override
public String startIP() {
return this.inner().startIP();
}
@Override
public String endIP() {
return this.inner().endIP();
}
@Override
public Observable createResourceAsync() {
final RedisFirewallRuleImpl self = this;
RedisFirewallRuleCreateParameters parameters = new RedisFirewallRuleCreateParameters()
.withStartIP(this.startIP())
.withEndIP(this.endIP());
return this.parent().manager().inner().firewallRules().createOrUpdateAsync(
this.parent().resourceGroupName(),
this.parent().name(),
this.name(),
parameters)
.map(new Func1() {
@Override
public RedisFirewallRule call(RedisFirewallRuleInner redisFirewallRuleInner) {
self.setInner(redisFirewallRuleInner);
return self;
}
});
}
@Override
public Observable updateResourceAsync() {
return this.createResourceAsync();
}
@Override
public Observable deleteResourceAsync() {
return this.parent().manager().inner().firewallRules().deleteAsync(this.parent().resourceGroupName(),
this.parent().name(),
this.name());
}
@Override
protected Observable getInnerAsync() {
return this.parent().manager().inner().firewallRules().getAsync(this.parent().resourceGroupName(),
this.parent().name(),
this.name());
}
private static String getChildName(String name, String parentName) {
if (name != null
&& name.indexOf("/") != -1) {
// rule name consist of "parent/child" name syntax but delete/update/get should be called only on child name
return name.substring(parentName.length() + 1);
}
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy