
com.pulumi.azurenative.hdinsight.outputs.ScriptActionResponse 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.hdinsight.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class ScriptActionResponse {
/**
* @return The name of the script action.
*
*/
private String name;
/**
* @return The parameters for the script provided.
*
*/
private String parameters;
/**
* @return The URI to the script.
*
*/
private String uri;
private ScriptActionResponse() {}
/**
* @return The name of the script action.
*
*/
public String name() {
return this.name;
}
/**
* @return The parameters for the script provided.
*
*/
public String parameters() {
return this.parameters;
}
/**
* @return The URI to the script.
*
*/
public String uri() {
return this.uri;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ScriptActionResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String name;
private String parameters;
private String uri;
public Builder() {}
public Builder(ScriptActionResponse defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
this.parameters = defaults.parameters;
this.uri = defaults.uri;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("ScriptActionResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder parameters(String parameters) {
if (parameters == null) {
throw new MissingRequiredPropertyException("ScriptActionResponse", "parameters");
}
this.parameters = parameters;
return this;
}
@CustomType.Setter
public Builder uri(String uri) {
if (uri == null) {
throw new MissingRequiredPropertyException("ScriptActionResponse", "uri");
}
this.uri = uri;
return this;
}
public ScriptActionResponse build() {
final var _resultValue = new ScriptActionResponse();
_resultValue.name = name;
_resultValue.parameters = parameters;
_resultValue.uri = uri;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy