All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.botservice.outputs.ListChannelWithKeysResult Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.ChannelSettingsResponse;
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 ListChannelWithKeysResult {
    /**
     * @return Changed time of the resource
     * 
     */
    private @Nullable String changedTime;
    /**
     * @return Entity tag of the resource
     * 
     */
    private @Nullable String entityTag;
    /**
     * @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 Provisioning state of the resource
     * 
     */
    private @Nullable String provisioningState;
    /**
     * @return The set of properties specific to bot channel resource
     * 
     */
    private @Nullable Object resource;
    /**
     * @return Channel settings
     * 
     */
    private @Nullable ChannelSettingsResponse setting;
    /**
     * @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 ListChannelWithKeysResult() {}
    /**
     * @return Changed time of the resource
     * 
     */
    public Optional changedTime() {
        return Optional.ofNullable(this.changedTime);
    }
    /**
     * @return Entity tag of the resource
     * 
     */
    public Optional entityTag() {
        return Optional.ofNullable(this.entityTag);
    }
    /**
     * @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 Provisioning state of the resource
     * 
     */
    public Optional provisioningState() {
        return Optional.ofNullable(this.provisioningState);
    }
    /**
     * @return The set of properties specific to bot channel resource
     * 
     */
    public Optional resource() {
        return Optional.ofNullable(this.resource);
    }
    /**
     * @return Channel settings
     * 
     */
    public Optional setting() {
        return Optional.ofNullable(this.setting);
    }
    /**
     * @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(ListChannelWithKeysResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String changedTime;
        private @Nullable String entityTag;
        private @Nullable String etag;
        private String id;
        private @Nullable String kind;
        private @Nullable String location;
        private String name;
        private Object properties;
        private @Nullable String provisioningState;
        private @Nullable Object resource;
        private @Nullable ChannelSettingsResponse setting;
        private @Nullable SkuResponse sku;
        private @Nullable Map tags;
        private String type;
        private List zones;
        public Builder() {}
        public Builder(ListChannelWithKeysResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.changedTime = defaults.changedTime;
    	      this.entityTag = defaults.entityTag;
    	      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.provisioningState = defaults.provisioningState;
    	      this.resource = defaults.resource;
    	      this.setting = defaults.setting;
    	      this.sku = defaults.sku;
    	      this.tags = defaults.tags;
    	      this.type = defaults.type;
    	      this.zones = defaults.zones;
        }

        @CustomType.Setter
        public Builder changedTime(@Nullable String changedTime) {

            this.changedTime = changedTime;
            return this;
        }
        @CustomType.Setter
        public Builder entityTag(@Nullable String entityTag) {

            this.entityTag = entityTag;
            return this;
        }
        @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("ListChannelWithKeysResult", "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("ListChannelWithKeysResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder properties(Object properties) {
            if (properties == null) {
              throw new MissingRequiredPropertyException("ListChannelWithKeysResult", "properties");
            }
            this.properties = properties;
            return this;
        }
        @CustomType.Setter
        public Builder provisioningState(@Nullable String provisioningState) {

            this.provisioningState = provisioningState;
            return this;
        }
        @CustomType.Setter
        public Builder resource(@Nullable Object resource) {

            this.resource = resource;
            return this;
        }
        @CustomType.Setter
        public Builder setting(@Nullable ChannelSettingsResponse setting) {

            this.setting = setting;
            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("ListChannelWithKeysResult", "type");
            }
            this.type = type;
            return this;
        }
        @CustomType.Setter
        public Builder zones(List zones) {
            if (zones == null) {
              throw new MissingRequiredPropertyException("ListChannelWithKeysResult", "zones");
            }
            this.zones = zones;
            return this;
        }
        public Builder zones(String... zones) {
            return zones(List.of(zones));
        }
        public ListChannelWithKeysResult build() {
            final var _resultValue = new ListChannelWithKeysResult();
            _resultValue.changedTime = changedTime;
            _resultValue.entityTag = entityTag;
            _resultValue.etag = etag;
            _resultValue.id = id;
            _resultValue.kind = kind;
            _resultValue.location = location;
            _resultValue.name = name;
            _resultValue.properties = properties;
            _resultValue.provisioningState = provisioningState;
            _resultValue.resource = resource;
            _resultValue.setting = setting;
            _resultValue.sku = sku;
            _resultValue.tags = tags;
            _resultValue.type = type;
            _resultValue.zones = zones;
            return _resultValue;
        }
    }
}