com.azure.resourcemanager.hdinsight.implementation.BillingResponseListResultImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hdinsight Show documentation
Show all versions of azure-resourcemanager-hdinsight Show documentation
This package contains Microsoft Azure SDK for HDInsight Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. HDInsight Management Client. Package tag package-2024-08-preview.
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.hdinsight.implementation;
import com.azure.resourcemanager.hdinsight.fluent.models.BillingResponseListResultInner;
import com.azure.resourcemanager.hdinsight.models.BillingResources;
import com.azure.resourcemanager.hdinsight.models.BillingResponseListResult;
import com.azure.resourcemanager.hdinsight.models.VmSizeCompatibilityFilterV2;
import com.azure.resourcemanager.hdinsight.models.VmSizeProperty;
import java.util.Collections;
import java.util.List;
public final class BillingResponseListResultImpl implements BillingResponseListResult {
private BillingResponseListResultInner innerObject;
private final com.azure.resourcemanager.hdinsight.HDInsightManager serviceManager;
BillingResponseListResultImpl(BillingResponseListResultInner innerObject,
com.azure.resourcemanager.hdinsight.HDInsightManager serviceManager) {
this.innerObject = innerObject;
this.serviceManager = serviceManager;
}
public List vmSizes() {
List inner = this.innerModel().vmSizes();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public List vmSizesWithEncryptionAtHost() {
List inner = this.innerModel().vmSizesWithEncryptionAtHost();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public List vmSizeFilters() {
List inner = this.innerModel().vmSizeFilters();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public List vmSizeProperties() {
List inner = this.innerModel().vmSizeProperties();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public List billingResources() {
List inner = this.innerModel().billingResources();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public BillingResponseListResultInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.hdinsight.HDInsightManager manager() {
return this.serviceManager;
}
}