com.azure.resourcemanager.redis.implementation.RedisPatchScheduleImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-redis Show documentation
Show all versions of azure-resourcemanager-redis Show documentation
This package contains Microsoft Azure Redis Cache SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.redis.implementation;
import com.azure.resourcemanager.redis.fluent.models.RedisPatchScheduleInner;
import com.azure.resourcemanager.redis.models.DefaultName;
import com.azure.resourcemanager.redis.models.RedisCache;
import com.azure.resourcemanager.redis.models.RedisPatchSchedule;
import com.azure.resourcemanager.redis.models.ScheduleEntry;
import com.azure.resourcemanager.resources.fluentcore.arm.models.implementation.ExternalChildResourceImpl;
import java.util.Collections;
import java.util.List;
import reactor.core.publisher.Mono;
/** The Azure {@link RedisPatchSchedule} wrapper class implementation. */
class RedisPatchScheduleImpl
extends ExternalChildResourceImpl
implements RedisPatchSchedule {
RedisPatchScheduleImpl(String name, RedisCacheImpl parent, RedisPatchScheduleInner innerObject) {
super(getChildName(name, parent.name()), parent, innerObject);
}
@Override
public String id() {
return this.innerModel().id();
}
@Override
public List scheduleEntries() {
return Collections.unmodifiableList(this.innerModel().scheduleEntries());
}
@Override
public Mono createResourceAsync() {
final RedisPatchScheduleImpl self = this;
return this
.parent()
.manager()
.serviceClient()
.getPatchSchedules()
.createOrUpdateAsync(
this.parent().resourceGroupName(),
this.parent().name(),
DefaultName.DEFAULT,
new RedisPatchScheduleInner().withScheduleEntries(this.innerModel().scheduleEntries()))
.map(
patchScheduleInner -> {
self.setInner(patchScheduleInner);
return self;
});
}
@Override
public Mono updateResourceAsync() {
return this.createResourceAsync();
}
@Override
public Mono deleteResourceAsync() {
return this
.parent()
.manager()
.serviceClient()
.getPatchSchedules()
.deleteAsync(this.parent().resourceGroupName(), this.parent().name(), DefaultName.DEFAULT);
}
@Override
protected Mono getInnerAsync() {
return this
.parent()
.manager()
.serviceClient()
.getPatchSchedules()
.getAsync(this.parent().resourceGroupName(), this.parent().name(), DefaultName.DEFAULT);
}
private static String getChildName(String name, String parentName) {
if (name != null && name.contains("/")) {
// Patch Schedule 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;
}
}