com.azure.resourcemanager.qumulo.implementation.OperationImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-qumulo Show documentation
Show all versions of azure-resourcemanager-qumulo Show documentation
This package contains Microsoft Azure SDK for Qumulo Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2024-06-19.
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.qumulo.implementation;
import com.azure.resourcemanager.qumulo.fluent.models.OperationInner;
import com.azure.resourcemanager.qumulo.models.ActionType;
import com.azure.resourcemanager.qumulo.models.Operation;
import com.azure.resourcemanager.qumulo.models.OperationDisplay;
import com.azure.resourcemanager.qumulo.models.Origin;
public final class OperationImpl implements Operation {
private OperationInner innerObject;
private final com.azure.resourcemanager.qumulo.QumuloManager serviceManager;
OperationImpl(OperationInner innerObject, com.azure.resourcemanager.qumulo.QumuloManager 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 OperationInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.qumulo.QumuloManager manager() {
return this.serviceManager;
}
}