All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.sql.implementation.ServerMetricImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Sql Management 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.sql.implementation;

import com.azure.resourcemanager.resources.fluentcore.model.implementation.WrapperImpl;
import com.azure.resourcemanager.sql.models.ServerMetric;
import com.azure.resourcemanager.sql.fluent.models.ServerUsageInner;

/** Implementation for DatabaseMetric interface. */
class ServerMetricImpl extends WrapperImpl implements ServerMetric {

    protected ServerMetricImpl(ServerUsageInner innerObject) {
        super(innerObject);
    }

    @Override
    public String name() {
        return this.innerModel().name();
    }

    @Override
    public String displayName() {
        return this.innerModel().displayName();
    }

    @Override
    public double currentValue() {
        return this.innerModel().currentValue();
    }

    @Override
    public double limit() {
        return this.innerModel().limit();
    }

    @Override
    public String unit() {
        return this.innerModel().unit();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy