com.pulumi.azurenative.media.outputs.HlsSettingsResponse 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.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class HlsSettingsResponse {
/**
* @return The characteristics for the HLS setting.
*
*/
private @Nullable String characteristics;
/**
* @return The default for the HLS setting.
*
*/
private @Nullable Boolean default_;
/**
* @return The forced for the HLS setting.
*
*/
private @Nullable Boolean forced;
private HlsSettingsResponse() {}
/**
* @return The characteristics for the HLS setting.
*
*/
public Optional characteristics() {
return Optional.ofNullable(this.characteristics);
}
/**
* @return The default for the HLS setting.
*
*/
public Optional default_() {
return Optional.ofNullable(this.default_);
}
/**
* @return The forced for the HLS setting.
*
*/
public Optional forced() {
return Optional.ofNullable(this.forced);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HlsSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String characteristics;
private @Nullable Boolean default_;
private @Nullable Boolean forced;
public Builder() {}
public Builder(HlsSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.characteristics = defaults.characteristics;
this.default_ = defaults.default_;
this.forced = defaults.forced;
}
@CustomType.Setter
public Builder characteristics(@Nullable String characteristics) {
this.characteristics = characteristics;
return this;
}
@CustomType.Setter("default")
public Builder default_(@Nullable Boolean default_) {
this.default_ = default_;
return this;
}
@CustomType.Setter
public Builder forced(@Nullable Boolean forced) {
this.forced = forced;
return this;
}
public HlsSettingsResponse build() {
final var _resultValue = new HlsSettingsResponse();
_resultValue.characteristics = characteristics;
_resultValue.default_ = default_;
_resultValue.forced = forced;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy