com.pulumi.azurenative.botservice.outputs.GetChannelResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.azurenative.botservice.outputs;
import com.pulumi.azurenative.botservice.outputs.AcsChatChannelResponse;
import com.pulumi.azurenative.botservice.outputs.AlexaChannelResponse;
import com.pulumi.azurenative.botservice.outputs.DirectLineChannelResponse;
import com.pulumi.azurenative.botservice.outputs.DirectLineSpeechChannelResponse;
import com.pulumi.azurenative.botservice.outputs.EmailChannelResponse;
import com.pulumi.azurenative.botservice.outputs.FacebookChannelResponse;
import com.pulumi.azurenative.botservice.outputs.KikChannelResponse;
import com.pulumi.azurenative.botservice.outputs.LineChannelResponse;
import com.pulumi.azurenative.botservice.outputs.M365ExtensionsResponse;
import com.pulumi.azurenative.botservice.outputs.MsTeamsChannelResponse;
import com.pulumi.azurenative.botservice.outputs.OmnichannelResponse;
import com.pulumi.azurenative.botservice.outputs.OutlookChannelResponse;
import com.pulumi.azurenative.botservice.outputs.SearchAssistantResponse;
import com.pulumi.azurenative.botservice.outputs.SkuResponse;
import com.pulumi.azurenative.botservice.outputs.SkypeChannelResponse;
import com.pulumi.azurenative.botservice.outputs.SlackChannelResponse;
import com.pulumi.azurenative.botservice.outputs.SmsChannelResponse;
import com.pulumi.azurenative.botservice.outputs.TelegramChannelResponse;
import com.pulumi.azurenative.botservice.outputs.TelephonyChannelResponse;
import com.pulumi.azurenative.botservice.outputs.WebChatChannelResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetChannelResult {
/**
* @return Entity Tag.
*
*/
private @Nullable String etag;
/**
* @return Specifies the resource ID.
*
*/
private String id;
/**
* @return Required. Gets or sets the Kind of the resource.
*
*/
private @Nullable String kind;
/**
* @return Specifies the location of the resource.
*
*/
private @Nullable String location;
/**
* @return Specifies the name of the resource.
*
*/
private String name;
/**
* @return The set of properties specific to bot channel resource
*
*/
private Object properties;
/**
* @return Gets or sets the SKU of the resource.
*
*/
private @Nullable SkuResponse sku;
/**
* @return Contains resource tags defined as key/value pairs.
*
*/
private @Nullable Map tags;
/**
* @return Specifies the type of the resource.
*
*/
private String type;
/**
* @return Entity zones
*
*/
private List zones;
private GetChannelResult() {}
/**
* @return Entity Tag.
*
*/
public Optional etag() {
return Optional.ofNullable(this.etag);
}
/**
* @return Specifies the resource ID.
*
*/
public String id() {
return this.id;
}
/**
* @return Required. Gets or sets the Kind of the resource.
*
*/
public Optional kind() {
return Optional.ofNullable(this.kind);
}
/**
* @return Specifies the location of the resource.
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* @return Specifies the name of the resource.
*
*/
public String name() {
return this.name;
}
/**
* @return The set of properties specific to bot channel resource
*
*/
public Object properties() {
return this.properties;
}
/**
* @return Gets or sets the SKU of the resource.
*
*/
public Optional sku() {
return Optional.ofNullable(this.sku);
}
/**
* @return Contains resource tags defined as key/value pairs.
*
*/
public Map tags() {
return this.tags == null ? Map.of() : this.tags;
}
/**
* @return Specifies the type of the resource.
*
*/
public String type() {
return this.type;
}
/**
* @return Entity zones
*
*/
public List zones() {
return this.zones;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetChannelResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String etag;
private String id;
private @Nullable String kind;
private @Nullable String location;
private String name;
private Object properties;
private @Nullable SkuResponse sku;
private @Nullable Map tags;
private String type;
private List zones;
public Builder() {}
public Builder(GetChannelResult defaults) {
Objects.requireNonNull(defaults);
this.etag = defaults.etag;
this.id = defaults.id;
this.kind = defaults.kind;
this.location = defaults.location;
this.name = defaults.name;
this.properties = defaults.properties;
this.sku = defaults.sku;
this.tags = defaults.tags;
this.type = defaults.type;
this.zones = defaults.zones;
}
@CustomType.Setter
public Builder etag(@Nullable String etag) {
this.etag = etag;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetChannelResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder kind(@Nullable String kind) {
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder location(@Nullable String location) {
this.location = location;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetChannelResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder properties(Object properties) {
if (properties == null) {
throw new MissingRequiredPropertyException("GetChannelResult", "properties");
}
this.properties = properties;
return this;
}
@CustomType.Setter
public Builder sku(@Nullable SkuResponse sku) {
this.sku = sku;
return this;
}
@CustomType.Setter
public Builder tags(@Nullable Map tags) {
this.tags = tags;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetChannelResult", "type");
}
this.type = type;
return this;
}
@CustomType.Setter
public Builder zones(List zones) {
if (zones == null) {
throw new MissingRequiredPropertyException("GetChannelResult", "zones");
}
this.zones = zones;
return this;
}
public Builder zones(String... zones) {
return zones(List.of(zones));
}
public GetChannelResult build() {
final var _resultValue = new GetChannelResult();
_resultValue.etag = etag;
_resultValue.id = id;
_resultValue.kind = kind;
_resultValue.location = location;
_resultValue.name = name;
_resultValue.properties = properties;
_resultValue.sku = sku;
_resultValue.tags = tags;
_resultValue.type = type;
_resultValue.zones = zones;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy