com.pulumi.azure.network.inputs.GetVirtualHubRouteTablePlainArgs 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.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetVirtualHubRouteTablePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetVirtualHubRouteTablePlainArgs Empty = new GetVirtualHubRouteTablePlainArgs();
/**
* The name of the Virtual Hub Route Table.
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return The name of the Virtual Hub Route Table.
*
*/
public String name() {
return this.name;
}
/**
* The Name of the Resource Group where the Virtual Hub Route Table exists.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The Name of the Resource Group where the Virtual Hub Route Table exists.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name which should be used for Virtual Hub Route Table.
*
*/
@Import(name="virtualHubName", required=true)
private String virtualHubName;
/**
* @return The name which should be used for Virtual Hub Route Table.
*
*/
public String virtualHubName() {
return this.virtualHubName;
}
private GetVirtualHubRouteTablePlainArgs() {}
private GetVirtualHubRouteTablePlainArgs(GetVirtualHubRouteTablePlainArgs $) {
this.name = $.name;
this.resourceGroupName = $.resourceGroupName;
this.virtualHubName = $.virtualHubName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetVirtualHubRouteTablePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetVirtualHubRouteTablePlainArgs $;
public Builder() {
$ = new GetVirtualHubRouteTablePlainArgs();
}
public Builder(GetVirtualHubRouteTablePlainArgs defaults) {
$ = new GetVirtualHubRouteTablePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the Virtual Hub Route Table.
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
/**
* @param resourceGroupName The Name of the Resource Group where the Virtual Hub Route Table exists.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param virtualHubName The name which should be used for Virtual Hub Route Table.
*
* @return builder
*
*/
public Builder virtualHubName(String virtualHubName) {
$.virtualHubName = virtualHubName;
return this;
}
public GetVirtualHubRouteTablePlainArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("GetVirtualHubRouteTablePlainArgs", "name");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetVirtualHubRouteTablePlainArgs", "resourceGroupName");
}
if ($.virtualHubName == null) {
throw new MissingRequiredPropertyException("GetVirtualHubRouteTablePlainArgs", "virtualHubName");
}
return $;
}
}
}