com.azure.resourcemanager.monitor.implementation.AutoscaleSettingsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-monitor Show documentation
Show all versions of azure-resourcemanager-monitor Show documentation
This package contains Microsoft Azure Monitor SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.monitor.implementation;
import com.azure.resourcemanager.monitor.MonitorManager;
import com.azure.resourcemanager.monitor.models.AutoscaleSetting;
import com.azure.resourcemanager.monitor.models.AutoscaleSettings;
import com.azure.resourcemanager.monitor.fluent.models.AutoscaleSettingResourceInner;
import com.azure.resourcemanager.monitor.fluent.AutoscaleSettingsClient;
import com.azure.resourcemanager.resources.fluentcore.arm.collection.implementation.TopLevelModifiableResourcesImpl;
/** Implementation for {@link AutoscaleSettings}. */
public class AutoscaleSettingsImpl extends
TopLevelModifiableResourcesImpl
implements AutoscaleSettings {
public AutoscaleSettingsImpl(final MonitorManager monitorManager) {
super(monitorManager.serviceClient().getAutoscaleSettings(), monitorManager);
}
@Override
protected AutoscaleSettingImpl wrapModel(String name) {
return new AutoscaleSettingImpl(name, new AutoscaleSettingResourceInner(), this.manager());
}
@Override
protected AutoscaleSettingImpl wrapModel(AutoscaleSettingResourceInner inner) {
if (inner == null) {
return null;
}
return new AutoscaleSettingImpl(inner.name(), inner, this.manager());
}
@Override
public AutoscaleSettingImpl define(String name) {
return wrapModel(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy