com.pulumi.azurenative.network.ExpressRouteCircuit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.network;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.network.ExpressRouteCircuitArgs;
import com.pulumi.azurenative.network.outputs.ExpressRouteCircuitAuthorizationResponse;
import com.pulumi.azurenative.network.outputs.ExpressRouteCircuitPeeringResponse;
import com.pulumi.azurenative.network.outputs.ExpressRouteCircuitServiceProviderPropertiesResponse;
import com.pulumi.azurenative.network.outputs.ExpressRouteCircuitSkuResponse;
import com.pulumi.azurenative.network.outputs.SubResourceResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.Boolean;
import java.lang.Double;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* ExpressRouteCircuit resource.
* Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.
*
* Other available API versions: 2015-05-01-preview, 2018-12-01, 2019-06-01, 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01, 2024-01-01, 2024-03-01.
*
* ## Example Usage
* ### Create ExpressRouteCircuit
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.network.ExpressRouteCircuit;
* import com.pulumi.azurenative.network.ExpressRouteCircuitArgs;
* import com.pulumi.azurenative.network.inputs.ExpressRouteCircuitServiceProviderPropertiesArgs;
* import com.pulumi.azurenative.network.inputs.ExpressRouteCircuitSkuArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
*
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
*
* public static void stack(Context ctx) {
* var expressRouteCircuit = new ExpressRouteCircuit("expressRouteCircuit", ExpressRouteCircuitArgs.builder()
* .allowClassicOperations(false)
* .authorizations()
* .circuitName("circuitName")
* .location("Brazil South")
* .peerings()
* .resourceGroupName("rg1")
* .serviceProviderProperties(ExpressRouteCircuitServiceProviderPropertiesArgs.builder()
* .bandwidthInMbps(200)
* .peeringLocation("Silicon Valley")
* .serviceProviderName("Equinix")
* .build())
* .sku(ExpressRouteCircuitSkuArgs.builder()
* .family("MeteredData")
* .name("Standard_MeteredData")
* .tier("Standard")
* .build())
* .build());
*
* }
* }
*
* }
*
* ### Create ExpressRouteCircuit on ExpressRoutePort
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.network.ExpressRouteCircuit;
* import com.pulumi.azurenative.network.ExpressRouteCircuitArgs;
* import com.pulumi.azurenative.network.inputs.SubResourceArgs;
* import com.pulumi.azurenative.network.inputs.ExpressRouteCircuitSkuArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
*
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
*
* public static void stack(Context ctx) {
* var expressRouteCircuit = new ExpressRouteCircuit("expressRouteCircuit", ExpressRouteCircuitArgs.builder()
* .authorizationKey("b0be57f5-1fba-463b-adec-ffe767354cdd")
* .bandwidthInGbps(10)
* .circuitName("expressRouteCircuit1")
* .expressRoutePort(SubResourceArgs.builder()
* .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/expressRoutePorts/portName")
* .build())
* .location("westus")
* .resourceGroupName("rg1")
* .sku(ExpressRouteCircuitSkuArgs.builder()
* .family("MeteredData")
* .name("Premium_MeteredData")
* .tier("Premium")
* .build())
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:network:ExpressRouteCircuit expressRouteCircuit1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}
* ```
*
*/
@ResourceType(type="azure-native:network:ExpressRouteCircuit")
public class ExpressRouteCircuit extends com.pulumi.resources.CustomResource {
/**
* Allow classic operations.
*
*/
@Export(name="allowClassicOperations", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> allowClassicOperations;
/**
* @return Allow classic operations.
*
*/
public Output> allowClassicOperations() {
return Codegen.optional(this.allowClassicOperations);
}
/**
* The authorizationKey.
*
*/
@Export(name="authorizationKey", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> authorizationKey;
/**
* @return The authorizationKey.
*
*/
public Output> authorizationKey() {
return Codegen.optional(this.authorizationKey);
}
/**
* The authorization status of the Circuit.
*
*/
@Export(name="authorizationStatus", refs={String.class}, tree="[0]")
private Output authorizationStatus;
/**
* @return The authorization status of the Circuit.
*
*/
public Output authorizationStatus() {
return this.authorizationStatus;
}
/**
* The list of authorizations.
*
*/
@Export(name="authorizations", refs={List.class,ExpressRouteCircuitAuthorizationResponse.class}, tree="[0,1]")
private Output* @Nullable */ List> authorizations;
/**
* @return The list of authorizations.
*
*/
public Output>> authorizations() {
return Codegen.optional(this.authorizations);
}
/**
* The bandwidth of the circuit when the circuit is provisioned on an ExpressRoutePort resource.
*
*/
@Export(name="bandwidthInGbps", refs={Double.class}, tree="[0]")
private Output* @Nullable */ Double> bandwidthInGbps;
/**
* @return The bandwidth of the circuit when the circuit is provisioned on an ExpressRoutePort resource.
*
*/
public Output> bandwidthInGbps() {
return Codegen.optional(this.bandwidthInGbps);
}
/**
* The CircuitProvisioningState state of the resource.
*
*/
@Export(name="circuitProvisioningState", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> circuitProvisioningState;
/**
* @return The CircuitProvisioningState state of the resource.
*
*/
public Output> circuitProvisioningState() {
return Codegen.optional(this.circuitProvisioningState);
}
/**
* A unique read-only string that changes whenever the resource is updated.
*
*/
@Export(name="etag", refs={String.class}, tree="[0]")
private Output etag;
/**
* @return A unique read-only string that changes whenever the resource is updated.
*
*/
public Output etag() {
return this.etag;
}
/**
* The reference to the ExpressRoutePort resource when the circuit is provisioned on an ExpressRoutePort resource.
*
*/
@Export(name="expressRoutePort", refs={SubResourceResponse.class}, tree="[0]")
private Output* @Nullable */ SubResourceResponse> expressRoutePort;
/**
* @return The reference to the ExpressRoutePort resource when the circuit is provisioned on an ExpressRoutePort resource.
*
*/
public Output> expressRoutePort() {
return Codegen.optional(this.expressRoutePort);
}
/**
* The GatewayManager Etag.
*
*/
@Export(name="gatewayManagerEtag", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> gatewayManagerEtag;
/**
* @return The GatewayManager Etag.
*
*/
public Output> gatewayManagerEtag() {
return Codegen.optional(this.gatewayManagerEtag);
}
/**
* Flag denoting global reach status.
*
*/
@Export(name="globalReachEnabled", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> globalReachEnabled;
/**
* @return Flag denoting global reach status.
*
*/
public Output> globalReachEnabled() {
return Codegen.optional(this.globalReachEnabled);
}
/**
* Resource location.
*
*/
@Export(name="location", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> location;
/**
* @return Resource location.
*
*/
public Output> location() {
return Codegen.optional(this.location);
}
/**
* Resource name.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return Resource name.
*
*/
public Output name() {
return this.name;
}
/**
* The list of peerings.
*
*/
@Export(name="peerings", refs={List.class,ExpressRouteCircuitPeeringResponse.class}, tree="[0,1]")
private Output* @Nullable */ List> peerings;
/**
* @return The list of peerings.
*
*/
public Output>> peerings() {
return Codegen.optional(this.peerings);
}
/**
* The provisioning state of the express route circuit resource.
*
*/
@Export(name="provisioningState", refs={String.class}, tree="[0]")
private Output provisioningState;
/**
* @return The provisioning state of the express route circuit resource.
*
*/
public Output provisioningState() {
return this.provisioningState;
}
/**
* The ServiceKey.
*
*/
@Export(name="serviceKey", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> serviceKey;
/**
* @return The ServiceKey.
*
*/
public Output> serviceKey() {
return Codegen.optional(this.serviceKey);
}
/**
* The ServiceProviderNotes.
*
*/
@Export(name="serviceProviderNotes", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> serviceProviderNotes;
/**
* @return The ServiceProviderNotes.
*
*/
public Output> serviceProviderNotes() {
return Codegen.optional(this.serviceProviderNotes);
}
/**
* The ServiceProviderProperties.
*
*/
@Export(name="serviceProviderProperties", refs={ExpressRouteCircuitServiceProviderPropertiesResponse.class}, tree="[0]")
private Output* @Nullable */ ExpressRouteCircuitServiceProviderPropertiesResponse> serviceProviderProperties;
/**
* @return The ServiceProviderProperties.
*
*/
public Output> serviceProviderProperties() {
return Codegen.optional(this.serviceProviderProperties);
}
/**
* The ServiceProviderProvisioningState state of the resource.
*
*/
@Export(name="serviceProviderProvisioningState", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> serviceProviderProvisioningState;
/**
* @return The ServiceProviderProvisioningState state of the resource.
*
*/
public Output> serviceProviderProvisioningState() {
return Codegen.optional(this.serviceProviderProvisioningState);
}
/**
* The SKU.
*
*/
@Export(name="sku", refs={ExpressRouteCircuitSkuResponse.class}, tree="[0]")
private Output* @Nullable */ ExpressRouteCircuitSkuResponse> sku;
/**
* @return The SKU.
*
*/
public Output> sku() {
return Codegen.optional(this.sku);
}
/**
* The identifier of the circuit traffic. Outer tag for QinQ encapsulation.
*
*/
@Export(name="stag", refs={Integer.class}, tree="[0]")
private Output stag;
/**
* @return The identifier of the circuit traffic. Outer tag for QinQ encapsulation.
*
*/
public Output stag() {
return this.stag;
}
/**
* Resource tags.
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
/**
* @return Resource tags.
*
*/
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
* Resource type.
*
*/
@Export(name="type", refs={String.class}, tree="[0]")
private Output type;
/**
* @return Resource type.
*
*/
public Output type() {
return this.type;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public ExpressRouteCircuit(java.lang.String name) {
this(name, ExpressRouteCircuitArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public ExpressRouteCircuit(java.lang.String name, ExpressRouteCircuitArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public ExpressRouteCircuit(java.lang.String name, ExpressRouteCircuitArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:network:ExpressRouteCircuit", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private ExpressRouteCircuit(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:network:ExpressRouteCircuit", name, null, makeResourceOptions(options, id), false);
}
private static ExpressRouteCircuitArgs makeArgs(ExpressRouteCircuitArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? ExpressRouteCircuitArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.aliases(List.of(
Output.of(Alias.builder().type("azure-native:network/v20150501preview:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20150615:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20160330:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20160601:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20160901:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20161201:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20170301:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20170601:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20170801:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20170901:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20171001:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20171101:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20180101:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20180201:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20180401:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20180601:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20180701:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20180801:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20181001:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20181101:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20181201:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20190201:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20190401:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20190601:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20190701:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20190801:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20190901:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20191101:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20191201:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20200301:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20200401:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20200501:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20200601:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20200701:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20200801:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20201101:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20210201:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20210301:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20210501:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20210801:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20220101:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20220501:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20220701:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20220901:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20221101:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20230201:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20230401:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20230501:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20230601:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20230901:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20231101:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20240101:ExpressRouteCircuit").build()),
Output.of(Alias.builder().type("azure-native:network/v20240301:ExpressRouteCircuit").build())
))
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static ExpressRouteCircuit get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new ExpressRouteCircuit(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy