com.pulumi.alicloud.eci.outputs.GetContainerGroupsGroupVolumeConfigFileVolumeConfigFileToPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alicloud Show documentation
Show all versions of alicloud Show documentation
A Pulumi package for creating and managing AliCloud 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.alicloud.eci.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetContainerGroupsGroupVolumeConfigFileVolumeConfigFileToPath {
/**
* @return The content of the configuration file. Maximum size: 32 KB.
*
*/
private String content;
/**
* @return The relative file path.
*
*/
private String path;
private GetContainerGroupsGroupVolumeConfigFileVolumeConfigFileToPath() {}
/**
* @return The content of the configuration file. Maximum size: 32 KB.
*
*/
public String content() {
return this.content;
}
/**
* @return The relative file path.
*
*/
public String path() {
return this.path;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetContainerGroupsGroupVolumeConfigFileVolumeConfigFileToPath defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String content;
private String path;
public Builder() {}
public Builder(GetContainerGroupsGroupVolumeConfigFileVolumeConfigFileToPath defaults) {
Objects.requireNonNull(defaults);
this.content = defaults.content;
this.path = defaults.path;
}
@CustomType.Setter
public Builder content(String content) {
if (content == null) {
throw new MissingRequiredPropertyException("GetContainerGroupsGroupVolumeConfigFileVolumeConfigFileToPath", "content");
}
this.content = content;
return this;
}
@CustomType.Setter
public Builder path(String path) {
if (path == null) {
throw new MissingRequiredPropertyException("GetContainerGroupsGroupVolumeConfigFileVolumeConfigFileToPath", "path");
}
this.path = path;
return this;
}
public GetContainerGroupsGroupVolumeConfigFileVolumeConfigFileToPath build() {
final var _resultValue = new GetContainerGroupsGroupVolumeConfigFileVolumeConfigFileToPath();
_resultValue.content = content;
_resultValue.path = path;
return _resultValue;
}
}
}