com.pulumi.azurenative.network.inputs.GetRulesEngineArgs 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.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 GetRulesEngineArgs extends com.pulumi.resources.InvokeArgs {
public static final GetRulesEngineArgs Empty = new GetRulesEngineArgs();
/**
* Name of the Front Door which is globally unique.
*
*/
@Import(name="frontDoorName", required=true)
private Output frontDoorName;
/**
* @return Name of the Front Door which is globally unique.
*
*/
public Output frontDoorName() {
return this.frontDoorName;
}
/**
* Name of the Resource group within the Azure subscription.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return Name of the Resource group within the Azure subscription.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* Name of the Rules Engine which is unique within the Front Door.
*
*/
@Import(name="rulesEngineName", required=true)
private Output rulesEngineName;
/**
* @return Name of the Rules Engine which is unique within the Front Door.
*
*/
public Output rulesEngineName() {
return this.rulesEngineName;
}
private GetRulesEngineArgs() {}
private GetRulesEngineArgs(GetRulesEngineArgs $) {
this.frontDoorName = $.frontDoorName;
this.resourceGroupName = $.resourceGroupName;
this.rulesEngineName = $.rulesEngineName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetRulesEngineArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetRulesEngineArgs $;
public Builder() {
$ = new GetRulesEngineArgs();
}
public Builder(GetRulesEngineArgs defaults) {
$ = new GetRulesEngineArgs(Objects.requireNonNull(defaults));
}
/**
* @param frontDoorName Name of the Front Door which is globally unique.
*
* @return builder
*
*/
public Builder frontDoorName(Output frontDoorName) {
$.frontDoorName = frontDoorName;
return this;
}
/**
* @param frontDoorName Name of the Front Door which is globally unique.
*
* @return builder
*
*/
public Builder frontDoorName(String frontDoorName) {
return frontDoorName(Output.of(frontDoorName));
}
/**
* @param resourceGroupName Name of the Resource group within the Azure subscription.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName Name of the Resource group within the Azure subscription.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param rulesEngineName Name of the Rules Engine which is unique within the Front Door.
*
* @return builder
*
*/
public Builder rulesEngineName(Output rulesEngineName) {
$.rulesEngineName = rulesEngineName;
return this;
}
/**
* @param rulesEngineName Name of the Rules Engine which is unique within the Front Door.
*
* @return builder
*
*/
public Builder rulesEngineName(String rulesEngineName) {
return rulesEngineName(Output.of(rulesEngineName));
}
public GetRulesEngineArgs build() {
if ($.frontDoorName == null) {
throw new MissingRequiredPropertyException("GetRulesEngineArgs", "frontDoorName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetRulesEngineArgs", "resourceGroupName");
}
if ($.rulesEngineName == null) {
throw new MissingRequiredPropertyException("GetRulesEngineArgs", "rulesEngineName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy