com.azure.resourcemanager.migrationdiscoverysap.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-migrationdiscoverysap Show documentation
Show all versions of azure-resourcemanager-migrationdiscoverysap Show documentation
This package contains Microsoft Azure SDK for MigrationDiscoverySap Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Migration Discovery SAP Client. Package tag package-preview-2023-10.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.migrationdiscoverysap.implementation;
import com.azure.resourcemanager.migrationdiscoverysap.fluent.models.OperationInner;
import com.azure.resourcemanager.migrationdiscoverysap.models.ActionType;
import com.azure.resourcemanager.migrationdiscoverysap.models.Operation;
import com.azure.resourcemanager.migrationdiscoverysap.models.OperationDisplay;
import com.azure.resourcemanager.migrationdiscoverysap.models.Origin;
public final class OperationImpl implements Operation {
private OperationInner innerObject;
private final com.azure.resourcemanager.migrationdiscoverysap.MigrationDiscoverySapManager serviceManager;
OperationImpl(OperationInner innerObject,
com.azure.resourcemanager.migrationdiscoverysap.MigrationDiscoverySapManager 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.migrationdiscoverysap.MigrationDiscoverySapManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy