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

com.azure.resourcemanager.costmanagement.implementation.CostManagementOperationImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for CostManagement Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. CostManagement management client provides access to CostManagement resources for Azure Enterprise Subscriptions. Package tag package-2022-10.

The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.costmanagement.implementation;

import com.azure.resourcemanager.costmanagement.fluent.models.CostManagementOperationInner;
import com.azure.resourcemanager.costmanagement.models.ActionType;
import com.azure.resourcemanager.costmanagement.models.CostManagementOperation;
import com.azure.resourcemanager.costmanagement.models.OperationDisplay;
import com.azure.resourcemanager.costmanagement.models.Origin;

public final class CostManagementOperationImpl implements CostManagementOperation {
    private CostManagementOperationInner innerObject;

    private final com.azure.resourcemanager.costmanagement.CostManagementManager serviceManager;

    CostManagementOperationImpl(
        CostManagementOperationInner innerObject,
        com.azure.resourcemanager.costmanagement.CostManagementManager serviceManager) {
        this.innerObject = innerObject;
        this.serviceManager = serviceManager;
    }

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

    public Boolean isDataAction() {
        return this.innerModel().isDataAction();
    }

    public OperationDisplay display() {
        return this.innerModel().display();
    }

    public Origin origin() {
        return this.innerModel().origin();
    }

    public ActionType actionType() {
        return this.innerModel().actionType();
    }

    public String id() {
        return this.innerModel().id();
    }

    public CostManagementOperationInner innerModel() {
        return this.innerObject;
    }

    private com.azure.resourcemanager.costmanagement.CostManagementManager manager() {
        return this.serviceManager;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy