com.pulumi.azure.network.inputs.GetVirtualHubRouteTableArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.network.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetVirtualHubRouteTableArgs extends com.pulumi.resources.InvokeArgs {
public static final GetVirtualHubRouteTableArgs Empty = new GetVirtualHubRouteTableArgs();
/**
* The name of the Virtual Hub Route Table.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the Virtual Hub Route Table.
*
*/
public Output name() {
return this.name;
}
/**
* The Name of the Resource Group where the Virtual Hub Route Table exists.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The Name of the Resource Group where the Virtual Hub Route Table exists.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name which should be used for Virtual Hub Route Table.
*
*/
@Import(name="virtualHubName", required=true)
private Output virtualHubName;
/**
* @return The name which should be used for Virtual Hub Route Table.
*
*/
public Output virtualHubName() {
return this.virtualHubName;
}
private GetVirtualHubRouteTableArgs() {}
private GetVirtualHubRouteTableArgs(GetVirtualHubRouteTableArgs $) {
this.name = $.name;
this.resourceGroupName = $.resourceGroupName;
this.virtualHubName = $.virtualHubName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetVirtualHubRouteTableArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetVirtualHubRouteTableArgs $;
public Builder() {
$ = new GetVirtualHubRouteTableArgs();
}
public Builder(GetVirtualHubRouteTableArgs defaults) {
$ = new GetVirtualHubRouteTableArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the Virtual Hub Route Table.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name The name of the Virtual Hub Route Table.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param resourceGroupName The Name of the Resource Group where the Virtual Hub Route Table exists.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The Name of the Resource Group where the Virtual Hub Route Table exists.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param virtualHubName The name which should be used for Virtual Hub Route Table.
*
* @return builder
*
*/
public Builder virtualHubName(Output virtualHubName) {
$.virtualHubName = virtualHubName;
return this;
}
/**
* @param virtualHubName The name which should be used for Virtual Hub Route Table.
*
* @return builder
*
*/
public Builder virtualHubName(String virtualHubName) {
return virtualHubName(Output.of(virtualHubName));
}
public GetVirtualHubRouteTableArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("GetVirtualHubRouteTableArgs", "name");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetVirtualHubRouteTableArgs", "resourceGroupName");
}
if ($.virtualHubName == null) {
throw new MissingRequiredPropertyException("GetVirtualHubRouteTableArgs", "virtualHubName");
}
return $;
}
}
}