com.azure.resourcemanager.servicefabricmanagedclusters.implementation.OperationResultsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-servicefabricmanagedclusters Show documentation
Show all versions of azure-resourcemanager-servicefabricmanagedclusters Show documentation
This package contains Microsoft Azure SDK for Service Fabric Managed Clusters Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Service Fabric Managed Clusters Management Client. Package tag package-2024-04.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.servicefabricmanagedclusters.implementation;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.servicefabricmanagedclusters.fluent.OperationResultsClient;
import com.azure.resourcemanager.servicefabricmanagedclusters.models.OperationResults;
import com.azure.resourcemanager.servicefabricmanagedclusters.models.OperationResultsGetResponse;
public final class OperationResultsImpl implements OperationResults {
private static final ClientLogger LOGGER = new ClientLogger(OperationResultsImpl.class);
private final OperationResultsClient innerClient;
private final com.azure.resourcemanager.servicefabricmanagedclusters.ServiceFabricManagedClustersManager serviceManager;
public OperationResultsImpl(OperationResultsClient innerClient,
com.azure.resourcemanager.servicefabricmanagedclusters.ServiceFabricManagedClustersManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public OperationResultsGetResponse getWithResponse(String location, String operationId, Context context) {
return this.serviceClient().getWithResponse(location, operationId, context);
}
public void get(String location, String operationId) {
this.serviceClient().get(location, operationId);
}
private OperationResultsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.servicefabricmanagedclusters.ServiceFabricManagedClustersManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy