com.pulumi.alicloud.dts.outputs.GetConsumerChannelsResult 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.dts.outputs;
import com.pulumi.alicloud.dts.outputs.GetConsumerChannelsChannel;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetConsumerChannelsResult {
private List channels;
private String dtsInstanceId;
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
private List ids;
private @Nullable String outputFile;
private GetConsumerChannelsResult() {}
public List channels() {
return this.channels;
}
public String dtsInstanceId() {
return this.dtsInstanceId;
}
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
public String id() {
return this.id;
}
public List ids() {
return this.ids;
}
public Optional outputFile() {
return Optional.ofNullable(this.outputFile);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetConsumerChannelsResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List channels;
private String dtsInstanceId;
private String id;
private List ids;
private @Nullable String outputFile;
public Builder() {}
public Builder(GetConsumerChannelsResult defaults) {
Objects.requireNonNull(defaults);
this.channels = defaults.channels;
this.dtsInstanceId = defaults.dtsInstanceId;
this.id = defaults.id;
this.ids = defaults.ids;
this.outputFile = defaults.outputFile;
}
@CustomType.Setter
public Builder channels(List channels) {
if (channels == null) {
throw new MissingRequiredPropertyException("GetConsumerChannelsResult", "channels");
}
this.channels = channels;
return this;
}
public Builder channels(GetConsumerChannelsChannel... channels) {
return channels(List.of(channels));
}
@CustomType.Setter
public Builder dtsInstanceId(String dtsInstanceId) {
if (dtsInstanceId == null) {
throw new MissingRequiredPropertyException("GetConsumerChannelsResult", "dtsInstanceId");
}
this.dtsInstanceId = dtsInstanceId;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetConsumerChannelsResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder ids(List ids) {
if (ids == null) {
throw new MissingRequiredPropertyException("GetConsumerChannelsResult", "ids");
}
this.ids = ids;
return this;
}
public Builder ids(String... ids) {
return ids(List.of(ids));
}
@CustomType.Setter
public Builder outputFile(@Nullable String outputFile) {
this.outputFile = outputFile;
return this;
}
public GetConsumerChannelsResult build() {
final var _resultValue = new GetConsumerChannelsResult();
_resultValue.channels = channels;
_resultValue.dtsInstanceId = dtsInstanceId;
_resultValue.id = id;
_resultValue.ids = ids;
_resultValue.outputFile = outputFile;
return _resultValue;
}
}
}