com.pulumi.ec.outputs.DeploymentIntegrationsServerConfig 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.ec.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 DeploymentIntegrationsServerConfig {
/**
* @return Optionally enable debug mode for Integrations Server instances - defaults to false
*
*/
private @Nullable Boolean debugEnabled;
/**
* @return Optionally override the docker image the Integrations Server nodes will use. Note that this field will only work for internal users only.
*
*/
private @Nullable String dockerImage;
/**
* @return An arbitrary JSON object allowing (non-admin) cluster owners to set their parameters (only one of this and 'user*settings*yaml' is allowed), provided they are on the whitelist ('user*settings*whitelist') and not on the blacklist ('user*settings*blacklist'). (This field together with 'user*settings*override*' and 'system_settings' defines the total set of resource settings)
*
*/
private @Nullable String userSettingsJson;
/**
* @return An arbitrary JSON object allowing ECE admins owners to set clusters' parameters (only one of this and 'user*settings*override*yaml' is allowed), ie in addition to the documented 'system*settings'. (This field together with 'system*settings' and 'user*settings*' defines the total set of resource settings)
*
*/
private @Nullable String userSettingsOverrideJson;
/**
* @return An arbitrary YAML object allowing ECE admins owners to set clusters' parameters (only one of this and 'user*settings*override*json' is allowed), ie in addition to the documented 'system*settings'. (This field together with 'system*settings' and 'user*settings*' defines the total set of resource settings)
*
*/
private @Nullable String userSettingsOverrideYaml;
/**
* @return An arbitrary YAML object allowing (non-admin) cluster owners to set their parameters (only one of this and 'user*settings*json' is allowed), provided they are on the whitelist ('user*settings*whitelist') and not on the blacklist ('user*settings*blacklist'). (These field together with 'user*settings*override*' and 'system_settings' defines the total set of resource settings)
*
*/
private @Nullable String userSettingsYaml;
private DeploymentIntegrationsServerConfig() {}
/**
* @return Optionally enable debug mode for Integrations Server instances - defaults to false
*
*/
public Optional debugEnabled() {
return Optional.ofNullable(this.debugEnabled);
}
/**
* @return Optionally override the docker image the Integrations Server nodes will use. Note that this field will only work for internal users only.
*
*/
public Optional dockerImage() {
return Optional.ofNullable(this.dockerImage);
}
/**
* @return An arbitrary JSON object allowing (non-admin) cluster owners to set their parameters (only one of this and 'user*settings*yaml' is allowed), provided they are on the whitelist ('user*settings*whitelist') and not on the blacklist ('user*settings*blacklist'). (This field together with 'user*settings*override*' and 'system_settings' defines the total set of resource settings)
*
*/
public Optional userSettingsJson() {
return Optional.ofNullable(this.userSettingsJson);
}
/**
* @return An arbitrary JSON object allowing ECE admins owners to set clusters' parameters (only one of this and 'user*settings*override*yaml' is allowed), ie in addition to the documented 'system*settings'. (This field together with 'system*settings' and 'user*settings*' defines the total set of resource settings)
*
*/
public Optional userSettingsOverrideJson() {
return Optional.ofNullable(this.userSettingsOverrideJson);
}
/**
* @return An arbitrary YAML object allowing ECE admins owners to set clusters' parameters (only one of this and 'user*settings*override*json' is allowed), ie in addition to the documented 'system*settings'. (This field together with 'system*settings' and 'user*settings*' defines the total set of resource settings)
*
*/
public Optional userSettingsOverrideYaml() {
return Optional.ofNullable(this.userSettingsOverrideYaml);
}
/**
* @return An arbitrary YAML object allowing (non-admin) cluster owners to set their parameters (only one of this and 'user*settings*json' is allowed), provided they are on the whitelist ('user*settings*whitelist') and not on the blacklist ('user*settings*blacklist'). (These field together with 'user*settings*override*' and 'system_settings' defines the total set of resource settings)
*
*/
public Optional userSettingsYaml() {
return Optional.ofNullable(this.userSettingsYaml);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DeploymentIntegrationsServerConfig defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean debugEnabled;
private @Nullable String dockerImage;
private @Nullable String userSettingsJson;
private @Nullable String userSettingsOverrideJson;
private @Nullable String userSettingsOverrideYaml;
private @Nullable String userSettingsYaml;
public Builder() {}
public Builder(DeploymentIntegrationsServerConfig defaults) {
Objects.requireNonNull(defaults);
this.debugEnabled = defaults.debugEnabled;
this.dockerImage = defaults.dockerImage;
this.userSettingsJson = defaults.userSettingsJson;
this.userSettingsOverrideJson = defaults.userSettingsOverrideJson;
this.userSettingsOverrideYaml = defaults.userSettingsOverrideYaml;
this.userSettingsYaml = defaults.userSettingsYaml;
}
@CustomType.Setter
public Builder debugEnabled(@Nullable Boolean debugEnabled) {
this.debugEnabled = debugEnabled;
return this;
}
@CustomType.Setter
public Builder dockerImage(@Nullable String dockerImage) {
this.dockerImage = dockerImage;
return this;
}
@CustomType.Setter
public Builder userSettingsJson(@Nullable String userSettingsJson) {
this.userSettingsJson = userSettingsJson;
return this;
}
@CustomType.Setter
public Builder userSettingsOverrideJson(@Nullable String userSettingsOverrideJson) {
this.userSettingsOverrideJson = userSettingsOverrideJson;
return this;
}
@CustomType.Setter
public Builder userSettingsOverrideYaml(@Nullable String userSettingsOverrideYaml) {
this.userSettingsOverrideYaml = userSettingsOverrideYaml;
return this;
}
@CustomType.Setter
public Builder userSettingsYaml(@Nullable String userSettingsYaml) {
this.userSettingsYaml = userSettingsYaml;
return this;
}
public DeploymentIntegrationsServerConfig build() {
final var _resultValue = new DeploymentIntegrationsServerConfig();
_resultValue.debugEnabled = debugEnabled;
_resultValue.dockerImage = dockerImage;
_resultValue.userSettingsJson = userSettingsJson;
_resultValue.userSettingsOverrideJson = userSettingsOverrideJson;
_resultValue.userSettingsOverrideYaml = userSettingsOverrideYaml;
_resultValue.userSettingsYaml = userSettingsYaml;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy