com.pulumi.azurenative.network.VirtualHub 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.VirtualHubArgs;
import com.pulumi.azurenative.network.outputs.SubResourceResponse;
import com.pulumi.azurenative.network.outputs.VirtualHubRouteTableResponse;
import com.pulumi.azurenative.network.outputs.VirtualHubRouteTableV2Response;
import com.pulumi.azurenative.network.outputs.VirtualRouterAutoScaleConfigurationResponse;
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.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* VirtualHub Resource.
* Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.
*
* Other available API versions: 2018-07-01, 2020-04-01, 2020-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
* ### VirtualHubPut
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.network.VirtualHub;
* import com.pulumi.azurenative.network.VirtualHubArgs;
* import com.pulumi.azurenative.network.inputs.SubResourceArgs;
* 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 virtualHub = new VirtualHub("virtualHub", VirtualHubArgs.builder()
* .addressPrefix("10.168.0.0/24")
* .location("West US")
* .resourceGroupName("rg1")
* .sku("Basic")
* .tags(Map.of("key1", "value1"))
* .virtualHubName("virtualHub2")
* .virtualWan(SubResourceArgs.builder()
* .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualWans/virtualWan1")
* .build())
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:network:VirtualHub virtualHub2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}
* ```
*
*/
@ResourceType(type="azure-native:network:VirtualHub")
public class VirtualHub extends com.pulumi.resources.CustomResource {
/**
* Address-prefix for this VirtualHub.
*
*/
@Export(name="addressPrefix", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> addressPrefix;
/**
* @return Address-prefix for this VirtualHub.
*
*/
public Output> addressPrefix() {
return Codegen.optional(this.addressPrefix);
}
/**
* Flag to control transit for VirtualRouter hub.
*
*/
@Export(name="allowBranchToBranchTraffic", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> allowBranchToBranchTraffic;
/**
* @return Flag to control transit for VirtualRouter hub.
*
*/
public Output> allowBranchToBranchTraffic() {
return Codegen.optional(this.allowBranchToBranchTraffic);
}
/**
* The azureFirewall associated with this VirtualHub.
*
*/
@Export(name="azureFirewall", refs={SubResourceResponse.class}, tree="[0]")
private Output* @Nullable */ SubResourceResponse> azureFirewall;
/**
* @return The azureFirewall associated with this VirtualHub.
*
*/
public Output> azureFirewall() {
return Codegen.optional(this.azureFirewall);
}
/**
* List of references to Bgp Connections.
*
*/
@Export(name="bgpConnections", refs={List.class,SubResourceResponse.class}, tree="[0,1]")
private Output> bgpConnections;
/**
* @return List of references to Bgp Connections.
*
*/
public Output> bgpConnections() {
return this.bgpConnections;
}
/**
* 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 expressRouteGateway associated with this VirtualHub.
*
*/
@Export(name="expressRouteGateway", refs={SubResourceResponse.class}, tree="[0]")
private Output* @Nullable */ SubResourceResponse> expressRouteGateway;
/**
* @return The expressRouteGateway associated with this VirtualHub.
*
*/
public Output> expressRouteGateway() {
return Codegen.optional(this.expressRouteGateway);
}
/**
* The hubRoutingPreference of this VirtualHub.
*
*/
@Export(name="hubRoutingPreference", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> hubRoutingPreference;
/**
* @return The hubRoutingPreference of this VirtualHub.
*
*/
public Output> hubRoutingPreference() {
return Codegen.optional(this.hubRoutingPreference);
}
/**
* List of references to IpConfigurations.
*
*/
@Export(name="ipConfigurations", refs={List.class,SubResourceResponse.class}, tree="[0,1]")
private Output> ipConfigurations;
/**
* @return List of references to IpConfigurations.
*
*/
public Output> ipConfigurations() {
return this.ipConfigurations;
}
/**
* Kind of service virtual hub. This is metadata used for the Azure portal experience for Route Server.
*
*/
@Export(name="kind", refs={String.class}, tree="[0]")
private Output kind;
/**
* @return Kind of service virtual hub. This is metadata used for the Azure portal experience for Route Server.
*
*/
public Output kind() {
return this.kind;
}
/**
* Resource location.
*
*/
@Export(name="location", refs={String.class}, tree="[0]")
private Output location;
/**
* @return Resource location.
*
*/
public Output location() {
return 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 P2SVpnGateway associated with this VirtualHub.
*
*/
@Export(name="p2SVpnGateway", refs={SubResourceResponse.class}, tree="[0]")
private Output* @Nullable */ SubResourceResponse> p2SVpnGateway;
/**
* @return The P2SVpnGateway associated with this VirtualHub.
*
*/
public Output> p2SVpnGateway() {
return Codegen.optional(this.p2SVpnGateway);
}
/**
* The preferred gateway to route on-prem traffic
*
*/
@Export(name="preferredRoutingGateway", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> preferredRoutingGateway;
/**
* @return The preferred gateway to route on-prem traffic
*
*/
public Output> preferredRoutingGateway() {
return Codegen.optional(this.preferredRoutingGateway);
}
/**
* The provisioning state of the virtual hub resource.
*
*/
@Export(name="provisioningState", refs={String.class}, tree="[0]")
private Output provisioningState;
/**
* @return The provisioning state of the virtual hub resource.
*
*/
public Output provisioningState() {
return this.provisioningState;
}
/**
* List of references to RouteMaps.
*
*/
@Export(name="routeMaps", refs={List.class,SubResourceResponse.class}, tree="[0,1]")
private Output> routeMaps;
/**
* @return List of references to RouteMaps.
*
*/
public Output> routeMaps() {
return this.routeMaps;
}
/**
* The routeTable associated with this virtual hub.
*
*/
@Export(name="routeTable", refs={VirtualHubRouteTableResponse.class}, tree="[0]")
private Output* @Nullable */ VirtualHubRouteTableResponse> routeTable;
/**
* @return The routeTable associated with this virtual hub.
*
*/
public Output> routeTable() {
return Codegen.optional(this.routeTable);
}
/**
* The routing state.
*
*/
@Export(name="routingState", refs={String.class}, tree="[0]")
private Output routingState;
/**
* @return The routing state.
*
*/
public Output routingState() {
return this.routingState;
}
/**
* The securityPartnerProvider associated with this VirtualHub.
*
*/
@Export(name="securityPartnerProvider", refs={SubResourceResponse.class}, tree="[0]")
private Output* @Nullable */ SubResourceResponse> securityPartnerProvider;
/**
* @return The securityPartnerProvider associated with this VirtualHub.
*
*/
public Output> securityPartnerProvider() {
return Codegen.optional(this.securityPartnerProvider);
}
/**
* The Security Provider name.
*
*/
@Export(name="securityProviderName", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> securityProviderName;
/**
* @return The Security Provider name.
*
*/
public Output> securityProviderName() {
return Codegen.optional(this.securityProviderName);
}
/**
* The sku of this VirtualHub.
*
*/
@Export(name="sku", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> sku;
/**
* @return The sku of this VirtualHub.
*
*/
public Output> sku() {
return Codegen.optional(this.sku);
}
/**
* 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;
}
/**
* List of all virtual hub route table v2s associated with this VirtualHub.
*
*/
@Export(name="virtualHubRouteTableV2s", refs={List.class,VirtualHubRouteTableV2Response.class}, tree="[0,1]")
private Output* @Nullable */ List> virtualHubRouteTableV2s;
/**
* @return List of all virtual hub route table v2s associated with this VirtualHub.
*
*/
public Output>> virtualHubRouteTableV2s() {
return Codegen.optional(this.virtualHubRouteTableV2s);
}
/**
* VirtualRouter ASN.
*
*/
@Export(name="virtualRouterAsn", refs={Double.class}, tree="[0]")
private Output* @Nullable */ Double> virtualRouterAsn;
/**
* @return VirtualRouter ASN.
*
*/
public Output> virtualRouterAsn() {
return Codegen.optional(this.virtualRouterAsn);
}
/**
* The VirtualHub Router autoscale configuration.
*
*/
@Export(name="virtualRouterAutoScaleConfiguration", refs={VirtualRouterAutoScaleConfigurationResponse.class}, tree="[0]")
private Output* @Nullable */ VirtualRouterAutoScaleConfigurationResponse> virtualRouterAutoScaleConfiguration;
/**
* @return The VirtualHub Router autoscale configuration.
*
*/
public Output> virtualRouterAutoScaleConfiguration() {
return Codegen.optional(this.virtualRouterAutoScaleConfiguration);
}
/**
* VirtualRouter IPs.
*
*/
@Export(name="virtualRouterIps", refs={List.class,String.class}, tree="[0,1]")
private Output* @Nullable */ List> virtualRouterIps;
/**
* @return VirtualRouter IPs.
*
*/
public Output>> virtualRouterIps() {
return Codegen.optional(this.virtualRouterIps);
}
/**
* The VirtualWAN to which the VirtualHub belongs.
*
*/
@Export(name="virtualWan", refs={SubResourceResponse.class}, tree="[0]")
private Output* @Nullable */ SubResourceResponse> virtualWan;
/**
* @return The VirtualWAN to which the VirtualHub belongs.
*
*/
public Output> virtualWan() {
return Codegen.optional(this.virtualWan);
}
/**
* The VpnGateway associated with this VirtualHub.
*
*/
@Export(name="vpnGateway", refs={SubResourceResponse.class}, tree="[0]")
private Output* @Nullable */ SubResourceResponse> vpnGateway;
/**
* @return The VpnGateway associated with this VirtualHub.
*
*/
public Output> vpnGateway() {
return Codegen.optional(this.vpnGateway);
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public VirtualHub(java.lang.String name) {
this(name, VirtualHubArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public VirtualHub(java.lang.String name, VirtualHubArgs 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 VirtualHub(java.lang.String name, VirtualHubArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:network:VirtualHub", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private VirtualHub(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:network:VirtualHub", name, null, makeResourceOptions(options, id), false);
}
private static VirtualHubArgs makeArgs(VirtualHubArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? VirtualHubArgs.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/v20180401:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20180601:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20180701:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20180801:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20181001:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20181101:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20181201:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20190201:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20190401:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20190601:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20190701:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20190801:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20190901:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20191101:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20191201:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20200301:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20200401:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20200501:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20200601:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20200701:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20200801:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20201101:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20210201:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20210301:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20210501:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20210801:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20220101:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20220501:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20220701:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20220901:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20221101:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20230201:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20230401:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20230501:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20230601:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20230901:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20231101:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20240101:VirtualHub").build()),
Output.of(Alias.builder().type("azure-native:network/v20240301:VirtualHub").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 VirtualHub get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new VirtualHub(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy