com.pulumi.azurenative.media.outputs.LiveEventInputTrackSelectionResponse 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.media.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 LiveEventInputTrackSelectionResponse {
/**
* @return Comparing operation. This property is reserved for future use, any value set on this property will be ignored.
*
*/
private @Nullable String operation;
/**
* @return Property name to select. This property is reserved for future use, any value set on this property will be ignored.
*
*/
private @Nullable String property;
/**
* @return Property value to select. This property is reserved for future use, any value set on this property will be ignored.
*
*/
private @Nullable String value;
private LiveEventInputTrackSelectionResponse() {}
/**
* @return Comparing operation. This property is reserved for future use, any value set on this property will be ignored.
*
*/
public Optional operation() {
return Optional.ofNullable(this.operation);
}
/**
* @return Property name to select. This property is reserved for future use, any value set on this property will be ignored.
*
*/
public Optional property() {
return Optional.ofNullable(this.property);
}
/**
* @return Property value to select. This property is reserved for future use, any value set on this property will be ignored.
*
*/
public Optional value() {
return Optional.ofNullable(this.value);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LiveEventInputTrackSelectionResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String operation;
private @Nullable String property;
private @Nullable String value;
public Builder() {}
public Builder(LiveEventInputTrackSelectionResponse defaults) {
Objects.requireNonNull(defaults);
this.operation = defaults.operation;
this.property = defaults.property;
this.value = defaults.value;
}
@CustomType.Setter
public Builder operation(@Nullable String operation) {
this.operation = operation;
return this;
}
@CustomType.Setter
public Builder property(@Nullable String property) {
this.property = property;
return this;
}
@CustomType.Setter
public Builder value(@Nullable String value) {
this.value = value;
return this;
}
public LiveEventInputTrackSelectionResponse build() {
final var _resultValue = new LiveEventInputTrackSelectionResponse();
_resultValue.operation = operation;
_resultValue.property = property;
_resultValue.value = value;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy