com.pulumi.azurenative.azurearcdata.outputs.SequencerActionResponse 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.azurearcdata.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SequencerActionResponse {
/**
* @return The unique identifier of the sequencer action.
*
*/
private @Nullable String actionId;
/**
* @return The result of the sequencer action.
*
*/
private @Nullable String result;
/**
* @return The state of the sequencer action.
*
*/
private @Nullable String state;
private SequencerActionResponse() {}
/**
* @return The unique identifier of the sequencer action.
*
*/
public Optional actionId() {
return Optional.ofNullable(this.actionId);
}
/**
* @return The result of the sequencer action.
*
*/
public Optional result() {
return Optional.ofNullable(this.result);
}
/**
* @return The state of the sequencer action.
*
*/
public Optional state() {
return Optional.ofNullable(this.state);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SequencerActionResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String actionId;
private @Nullable String result;
private @Nullable String state;
public Builder() {}
public Builder(SequencerActionResponse defaults) {
Objects.requireNonNull(defaults);
this.actionId = defaults.actionId;
this.result = defaults.result;
this.state = defaults.state;
}
@CustomType.Setter
public Builder actionId(@Nullable String actionId) {
this.actionId = actionId;
return this;
}
@CustomType.Setter
public Builder result(@Nullable String result) {
this.result = result;
return this;
}
@CustomType.Setter
public Builder state(@Nullable String state) {
this.state = state;
return this;
}
public SequencerActionResponse build() {
final var _resultValue = new SequencerActionResponse();
_resultValue.actionId = actionId;
_resultValue.result = result;
_resultValue.state = state;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy