com.azure.resourcemanager.storagecache.implementation.AscUsagesImpl 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.PagedIterable;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.storagecache.fluent.AscUsagesClient;
import com.azure.resourcemanager.storagecache.fluent.models.ResourceUsageInner;
import com.azure.resourcemanager.storagecache.models.AscUsages;
import com.azure.resourcemanager.storagecache.models.ResourceUsage;
public final class AscUsagesImpl implements AscUsages {
private static final ClientLogger LOGGER = new ClientLogger(AscUsagesImpl.class);
private final AscUsagesClient innerClient;
private final com.azure.resourcemanager.storagecache.StorageCacheManager serviceManager;
public AscUsagesImpl(AscUsagesClient innerClient,
com.azure.resourcemanager.storagecache.StorageCacheManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable list(String location) {
PagedIterable inner = this.serviceClient().list(location);
return ResourceManagerUtils.mapPage(inner, inner1 -> new ResourceUsageImpl(inner1, this.manager()));
}
public PagedIterable list(String location, Context context) {
PagedIterable inner = this.serviceClient().list(location, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new ResourceUsageImpl(inner1, this.manager()));
}
private AscUsagesClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.storagecache.StorageCacheManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy