com.azure.resourcemanager.network.models.ExpressRouteCrossConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// 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.network.fluent.models.ExpressRouteCrossConnectionInner;
import com.azure.resourcemanager.resources.fluentcore.arm.models.GroupableResource;
import com.azure.resourcemanager.resources.fluentcore.arm.models.Resource;
import com.azure.resourcemanager.resources.fluentcore.model.Appliable;
import com.azure.resourcemanager.resources.fluentcore.model.Refreshable;
import com.azure.resourcemanager.resources.fluentcore.model.Updatable;
import java.util.Map;
/** Entry point for Express Route Cross Connection management API in Azure. */
@Fluent
public interface ExpressRouteCrossConnection
extends GroupableResource,
Refreshable,
Updatable,
UpdatableWithTags {
/** @return entry point to manage express route peerings associated with express route circuit */
ExpressRouteCrossConnectionPeerings peerings();
/** @return the name of the primary port */
String primaryAzurePort();
/** @return the name of the secondary port */
String secondaryAzurePort();
/** @return the identifier of the circuit traffic */
Integer stag();
/** @return the peering location of the ExpressRoute circuit */
String peeringLocation();
/** @return the circuit bandwidth In Mbps */
int bandwidthInMbps();
/** @return the ExpressRouteCircuit */
ExpressRouteCircuitReference expressRouteCircuit();
/** @return the provisioning state of the circuit in the connectivity provider system */
ServiceProviderProvisioningState serviceProviderProvisioningState();
/** @return additional read only notes set by the connectivity provider */
String serviceProviderNotes();
/** @return the provisioning state of the express route cross connection resource */
String provisioningState();
/** @return the peerings associated with this express route cross connection, indexed by name */
Map peeringsMap();
/** Grouping of express route cross connection update stages. */
interface UpdateStages {
/**
* The stage of express route cross connection update allowing to specify service provider provisioning state.
*/
interface WithServiceProviderProviosioningState {
/**
* Specifies the service provider provisioning state for the express route cross connection.
*
* @param state the service provider provisioning state
* @return next stage of update
*/
Update withServiceProviderProvisioningState(ServiceProviderProvisioningState state);
}
/** The stage of express route cross connection update allowing to specify service provider notes. */
interface WithServiceProviderNotes {
/**
* Specifies the service provider notes for the express route cross connection.
*
* @param notes the service provider notes
* @return next stage of update
*/
Update withServiceProviderNotes(String notes);
}
}
/**
* The template for a express route cross connection update operation, containing all the settings that can be
* modified.
*/
interface Update
extends Appliable,
Resource.UpdateWithTags,
UpdateStages.WithServiceProviderProviosioningState,
UpdateStages.WithServiceProviderNotes {
}
}