![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.ise.deviceadmin.outputs.GetTacacsCommandSetCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ise Show documentation
Show all versions of ise Show documentation
A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.
// *** 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.ise.deviceadmin.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetTacacsCommandSetCommand {
/**
* @return Command arguments
*
*/
private String arguments;
/**
* @return Command
*
*/
private String command;
/**
* @return Grant
*
*/
private String grant;
private GetTacacsCommandSetCommand() {}
/**
* @return Command arguments
*
*/
public String arguments() {
return this.arguments;
}
/**
* @return Command
*
*/
public String command() {
return this.command;
}
/**
* @return Grant
*
*/
public String grant() {
return this.grant;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetTacacsCommandSetCommand defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String arguments;
private String command;
private String grant;
public Builder() {}
public Builder(GetTacacsCommandSetCommand defaults) {
Objects.requireNonNull(defaults);
this.arguments = defaults.arguments;
this.command = defaults.command;
this.grant = defaults.grant;
}
@CustomType.Setter
public Builder arguments(String arguments) {
if (arguments == null) {
throw new MissingRequiredPropertyException("GetTacacsCommandSetCommand", "arguments");
}
this.arguments = arguments;
return this;
}
@CustomType.Setter
public Builder command(String command) {
if (command == null) {
throw new MissingRequiredPropertyException("GetTacacsCommandSetCommand", "command");
}
this.command = command;
return this;
}
@CustomType.Setter
public Builder grant(String grant) {
if (grant == null) {
throw new MissingRequiredPropertyException("GetTacacsCommandSetCommand", "grant");
}
this.grant = grant;
return this;
}
public GetTacacsCommandSetCommand build() {
final var _resultValue = new GetTacacsCommandSetCommand();
_resultValue.arguments = arguments;
_resultValue.command = command;
_resultValue.grant = grant;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy