
com.pulumi.azurenative.network.outputs.FlowLogFormatParametersResponse 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.network.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class FlowLogFormatParametersResponse {
/**
* @return The file type of flow log.
*
*/
private @Nullable String type;
/**
* @return The version (revision) of the flow log.
*
*/
private @Nullable Integer version;
private FlowLogFormatParametersResponse() {}
/**
* @return The file type of flow log.
*
*/
public Optional type() {
return Optional.ofNullable(this.type);
}
/**
* @return The version (revision) of the flow log.
*
*/
public Optional version() {
return Optional.ofNullable(this.version);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FlowLogFormatParametersResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String type;
private @Nullable Integer version;
public Builder() {}
public Builder(FlowLogFormatParametersResponse defaults) {
Objects.requireNonNull(defaults);
this.type = defaults.type;
this.version = defaults.version;
}
@CustomType.Setter
public Builder type(@Nullable String type) {
this.type = type;
return this;
}
@CustomType.Setter
public Builder version(@Nullable Integer version) {
this.version = version;
return this;
}
public FlowLogFormatParametersResponse build() {
final var _resultValue = new FlowLogFormatParametersResponse();
_resultValue.type = type;
_resultValue.version = version;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy