
com.azure.resourcemanager.dashboard.implementation.OperationResultImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-dashboard Show documentation
Show all versions of azure-resourcemanager-dashboard Show documentation
This package contains Microsoft Azure SDK for Dashboard Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Microsoft.Dashboard Rest API spec. Package tag package-2021-09-01-preview.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.dashboard.implementation;
import com.azure.resourcemanager.dashboard.fluent.models.OperationResultInner;
import com.azure.resourcemanager.dashboard.models.ActionType;
import com.azure.resourcemanager.dashboard.models.OperationDisplay;
import com.azure.resourcemanager.dashboard.models.OperationResult;
import com.azure.resourcemanager.dashboard.models.Origin;
public final class OperationResultImpl implements OperationResult {
private OperationResultInner innerObject;
private final com.azure.resourcemanager.dashboard.DashboardManager serviceManager;
OperationResultImpl(
OperationResultInner innerObject, com.azure.resourcemanager.dashboard.DashboardManager 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 OperationResultInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.dashboard.DashboardManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy