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