com.azure.resourcemanager.avs.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-avs Show documentation
Show all versions of azure-resourcemanager-avs Show documentation
This package contains Microsoft Azure SDK for Avs Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure VMware Solution API. Package tag package-2023-09-01.
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.avs.implementation;
import com.azure.resourcemanager.avs.fluent.models.OperationInner;
import com.azure.resourcemanager.avs.models.ActionType;
import com.azure.resourcemanager.avs.models.Operation;
import com.azure.resourcemanager.avs.models.OperationDisplay;
import com.azure.resourcemanager.avs.models.Origin;
public final class OperationImpl implements Operation {
private OperationInner innerObject;
private final com.azure.resourcemanager.avs.AvsManager serviceManager;
OperationImpl(OperationInner innerObject, com.azure.resourcemanager.avs.AvsManager 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.avs.AvsManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy