com.pulumi.googlenative.dataproc.v1.outputs.RuntimeConfigResponse 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.googlenative.dataproc.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
@CustomType
public final class RuntimeConfigResponse {
/**
* @return Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
*
*/
private String containerImage;
/**
* @return Optional. A mapping of property names to values, which are used to configure workload execution.
*
*/
private Map properties;
/**
* @return Optional. Version of the batch runtime.
*
*/
private String version;
private RuntimeConfigResponse() {}
/**
* @return Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
*
*/
public String containerImage() {
return this.containerImage;
}
/**
* @return Optional. A mapping of property names to values, which are used to configure workload execution.
*
*/
public Map properties() {
return this.properties;
}
/**
* @return Optional. Version of the batch runtime.
*
*/
public String version() {
return this.version;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(RuntimeConfigResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String containerImage;
private Map properties;
private String version;
public Builder() {}
public Builder(RuntimeConfigResponse defaults) {
Objects.requireNonNull(defaults);
this.containerImage = defaults.containerImage;
this.properties = defaults.properties;
this.version = defaults.version;
}
@CustomType.Setter
public Builder containerImage(String containerImage) {
this.containerImage = Objects.requireNonNull(containerImage);
return this;
}
@CustomType.Setter
public Builder properties(Map properties) {
this.properties = Objects.requireNonNull(properties);
return this;
}
@CustomType.Setter
public Builder version(String version) {
this.version = Objects.requireNonNull(version);
return this;
}
public RuntimeConfigResponse build() {
final var o = new RuntimeConfigResponse();
o.containerImage = containerImage;
o.properties = properties;
o.version = version;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy