
com.pulumi.azurenative.network.inputs.GetExpressRoutePortAuthorizationPlainArgs Maven / Gradle / Ivy
// *** 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.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetExpressRoutePortAuthorizationPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetExpressRoutePortAuthorizationPlainArgs Empty = new GetExpressRoutePortAuthorizationPlainArgs();
/**
* The name of the authorization.
*
*/
@Import(name="authorizationName", required=true)
private String authorizationName;
/**
* @return The name of the authorization.
*
*/
public String authorizationName() {
return this.authorizationName;
}
/**
* The name of the express route port.
*
*/
@Import(name="expressRoutePortName", required=true)
private String expressRoutePortName;
/**
* @return The name of the express route port.
*
*/
public String expressRoutePortName() {
return this.expressRoutePortName;
}
/**
* The name of the resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetExpressRoutePortAuthorizationPlainArgs() {}
private GetExpressRoutePortAuthorizationPlainArgs(GetExpressRoutePortAuthorizationPlainArgs $) {
this.authorizationName = $.authorizationName;
this.expressRoutePortName = $.expressRoutePortName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetExpressRoutePortAuthorizationPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetExpressRoutePortAuthorizationPlainArgs $;
public Builder() {
$ = new GetExpressRoutePortAuthorizationPlainArgs();
}
public Builder(GetExpressRoutePortAuthorizationPlainArgs defaults) {
$ = new GetExpressRoutePortAuthorizationPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param authorizationName The name of the authorization.
*
* @return builder
*
*/
public Builder authorizationName(String authorizationName) {
$.authorizationName = authorizationName;
return this;
}
/**
* @param expressRoutePortName The name of the express route port.
*
* @return builder
*
*/
public Builder expressRoutePortName(String expressRoutePortName) {
$.expressRoutePortName = expressRoutePortName;
return this;
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetExpressRoutePortAuthorizationPlainArgs build() {
if ($.authorizationName == null) {
throw new MissingRequiredPropertyException("GetExpressRoutePortAuthorizationPlainArgs", "authorizationName");
}
if ($.expressRoutePortName == null) {
throw new MissingRequiredPropertyException("GetExpressRoutePortAuthorizationPlainArgs", "expressRoutePortName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetExpressRoutePortAuthorizationPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy