com.azure.resourcemanager.storagecache.implementation.AscOperationsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storagecache Show documentation
Show all versions of azure-resourcemanager-storagecache Show documentation
This package contains Microsoft Azure SDK for StorageCache Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Managed Lustre provides a fully managed Lustre® file system, integrated with Blob storage, for use on demand. These operations create and manage Azure Managed Lustre file systems. Package tag package-2024-03.
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.storagecache.implementation;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.SimpleResponse;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.storagecache.fluent.AscOperationsClient;
import com.azure.resourcemanager.storagecache.fluent.models.AscOperationInner;
import com.azure.resourcemanager.storagecache.models.AscOperation;
import com.azure.resourcemanager.storagecache.models.AscOperations;
public final class AscOperationsImpl implements AscOperations {
private static final ClientLogger LOGGER = new ClientLogger(AscOperationsImpl.class);
private final AscOperationsClient innerClient;
private final com.azure.resourcemanager.storagecache.StorageCacheManager serviceManager;
public AscOperationsImpl(AscOperationsClient innerClient,
com.azure.resourcemanager.storagecache.StorageCacheManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public Response getWithResponse(String location, String operationId, Context context) {
Response inner = this.serviceClient().getWithResponse(location, operationId, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new AscOperationImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public AscOperation get(String location, String operationId) {
AscOperationInner inner = this.serviceClient().get(location, operationId);
if (inner != null) {
return new AscOperationImpl(inner, this.manager());
} else {
return null;
}
}
private AscOperationsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.storagecache.StorageCacheManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy