
com.pulumi.azurenative.botservice.outputs.ListChannelWithKeysResult 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.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
© 2015 - 2025 Weber Informatics LLC | Privacy Policy