com.azure.resourcemanager.storagecache.implementation.ResourceSkuImpl 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.resourcemanager.storagecache.fluent.models.ResourceSkuInner;
import com.azure.resourcemanager.storagecache.models.ResourceSku;
import com.azure.resourcemanager.storagecache.models.ResourceSkuCapabilities;
import com.azure.resourcemanager.storagecache.models.ResourceSkuLocationInfo;
import com.azure.resourcemanager.storagecache.models.Restriction;
import java.util.Collections;
import java.util.List;
public final class ResourceSkuImpl implements ResourceSku {
private ResourceSkuInner innerObject;
private final com.azure.resourcemanager.storagecache.StorageCacheManager serviceManager;
ResourceSkuImpl(ResourceSkuInner innerObject,
com.azure.resourcemanager.storagecache.StorageCacheManager serviceManager) {
this.innerObject = innerObject;
this.serviceManager = serviceManager;
}
public String resourceType() {
return this.innerModel().resourceType();
}
public List capabilities() {
List inner = this.innerModel().capabilities();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public List locations() {
List inner = this.innerModel().locations();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public List locationInfo() {
List inner = this.innerModel().locationInfo();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public String name() {
return this.innerModel().name();
}
public List restrictions() {
List inner = this.innerModel().restrictions();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public ResourceSkuInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.storagecache.StorageCacheManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy