com.azure.resourcemanager.standbypool.implementation.StandbyVirtualMachinePoolRuntimeViewResourceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-standbypool Show documentation
Show all versions of azure-resourcemanager-standbypool Show documentation
This package contains Microsoft Azure SDK for Standby Pool Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-preview-2023-12.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) TypeSpec Code Generator.
package com.azure.resourcemanager.standbypool.implementation;
import com.azure.core.management.SystemData;
import com.azure.resourcemanager.standbypool.fluent.models.StandbyVirtualMachinePoolRuntimeViewResourceInner;
import com.azure.resourcemanager.standbypool.models.StandbyVirtualMachinePoolRuntimeViewResource;
import com.azure.resourcemanager.standbypool.models.StandbyVirtualMachinePoolRuntimeViewResourceProperties;
public final class StandbyVirtualMachinePoolRuntimeViewResourceImpl
implements StandbyVirtualMachinePoolRuntimeViewResource {
private StandbyVirtualMachinePoolRuntimeViewResourceInner innerObject;
private final com.azure.resourcemanager.standbypool.StandbyPoolManager serviceManager;
StandbyVirtualMachinePoolRuntimeViewResourceImpl(StandbyVirtualMachinePoolRuntimeViewResourceInner innerObject,
com.azure.resourcemanager.standbypool.StandbyPoolManager serviceManager) {
this.innerObject = innerObject;
this.serviceManager = serviceManager;
}
public String id() {
return this.innerModel().id();
}
public String name() {
return this.innerModel().name();
}
public String type() {
return this.innerModel().type();
}
public StandbyVirtualMachinePoolRuntimeViewResourceProperties properties() {
return this.innerModel().properties();
}
public SystemData systemData() {
return this.innerModel().systemData();
}
public StandbyVirtualMachinePoolRuntimeViewResourceInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.standbypool.StandbyPoolManager manager() {
return this.serviceManager;
}
}