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

com.azure.resourcemanager.network.models.NetworkPeerings 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

There is a newer version: 2.44.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.resourcemanager.network.models;

import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.network.NetworkManager;
import com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsDeletingByParent;
import com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingById;
import com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager;
import com.azure.resourcemanager.resources.fluentcore.collection.SupportsBatchCreation;
import com.azure.resourcemanager.resources.fluentcore.collection.SupportsCreating;
import com.azure.resourcemanager.resources.fluentcore.collection.SupportsDeletingById;
import com.azure.resourcemanager.resources.fluentcore.collection.SupportsListing;
import reactor.core.publisher.Mono;

/** Entry point to network peering management API. */
@Fluent
public interface NetworkPeerings
    extends SupportsCreating,
        SupportsDeletingById,
        SupportsGettingById,
        SupportsBatchCreation,
        SupportsDeletingByParent,
        SupportsListing,
        HasManager {

    /**
     * Finds the peering, if any, that is associated with the specified network.
     *
     * 

(Note that this makes a separate call to Azure.) * * @param network an existing network * @return a network peering, or null if none exists */ NetworkPeering getByRemoteNetwork(Network network); /** * Finds the peering, if any, that is associated with the specified network. * *

(Note that this makes a separate call to Azure.) * * @param remoteNetworkResourceId the resource ID of an existing network * @return a network peering, or null if none exists */ NetworkPeering getByRemoteNetwork(String remoteNetworkResourceId); /** * Asynchronously finds the peering, if any, that is associated with the specified network. * *

(Note that this makes a separate call to Azure.) * * @param network an existing network * @return a representation of the future computation of this call, evaluating to null if no such peering is found */ Mono getByRemoteNetworkAsync(Network network); /** * Asynchronously finds the peering, if any, that is associated with the specified network. * *

(Note that this makes a separate call to Azure.) * * @param remoteNetworkResourceId the resource ID of an existing network * @return a representation of the future computation of this call, evaluating to null if no such peering is found */ Mono getByRemoteNetworkAsync(String remoteNetworkResourceId); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy