Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.network; import com.fasterxml.jackson.annotation.JsonProperty;
Reference to an express route circuit.
/** * Reference to an express route circuit. */
public class ExpressRouteCircuitReference {
Corresponding Express Route Circuit Id.
/** * Corresponding Express Route Circuit Id. */
@JsonProperty(value = "id") private String id;
Get corresponding Express Route Circuit Id.
Returns:the id value
/** * Get corresponding Express Route Circuit Id. * * @return the id value */
public String id() { return this.id; }
Set corresponding Express Route Circuit Id.
Params:
  • id – the id value to set
Returns:the ExpressRouteCircuitReference object itself.
/** * Set corresponding Express Route Circuit Id. * * @param id the id value to set * @return the ExpressRouteCircuitReference object itself. */
public ExpressRouteCircuitReference withId(String id) { this.id = id; return this; } }