
com.pulumi.azurenative.avs.inputs.ScriptStringExecutionParameterArgs 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.avs.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* a plain text value execution parameter
*
*/
public final class ScriptStringExecutionParameterArgs extends com.pulumi.resources.ResourceArgs {
public static final ScriptStringExecutionParameterArgs Empty = new ScriptStringExecutionParameterArgs();
/**
* The parameter name
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The parameter name
*
*/
public Output name() {
return this.name;
}
/**
* The type of execution parameter
* Expected value is 'Value'.
*
*/
@Import(name="type", required=true)
private Output type;
/**
* @return The type of execution parameter
* Expected value is 'Value'.
*
*/
public Output type() {
return this.type;
}
/**
* The value for the passed parameter
*
*/
@Import(name="value")
private @Nullable Output value;
/**
* @return The value for the passed parameter
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy