All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.network.implementation.VirtualMachineScaleSetNicIpConfigurationImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.resourcemanager.network.implementation;

import com.azure.resourcemanager.network.NetworkManager;
import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNetworkInterface;
import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNicIpConfiguration;
import com.azure.resourcemanager.network.fluent.models.NetworkInterfaceIpConfigurationInner;

/** Implementation for NicIPConfiguration for network interfaces associated with virtual machine scale set. */
class VirtualMachineScaleSetNicIpConfigurationImpl
    extends NicIpConfigurationBaseImpl<
        VirtualMachineScaleSetNetworkInterfaceImpl, VirtualMachineScaleSetNetworkInterface>
    implements VirtualMachineScaleSetNicIpConfiguration {
    VirtualMachineScaleSetNicIpConfigurationImpl(
        NetworkInterfaceIpConfigurationInner inner,
        VirtualMachineScaleSetNetworkInterfaceImpl parent,
        NetworkManager networkManager) {
        super(inner, parent, networkManager);
    }

    // Note: The inner ipConfig contains a property with name 'publicIPAddress'
    // which is valid only when the inner is explicitly created i.e. the one
    // associated with normal virtual machines. In VMSS case the inner ipConfig
    // is implicitly created for the scale set vm instances and 'publicIPAddress'
    // property is null.
    //
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy