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

com.azure.resourcemanager.botservice.models.BotChannel Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for BotService Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Bot Service is a platform for creating smart conversational agents. Package tag package-2021-03-01.

The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.botservice.models;

import com.azure.resourcemanager.botservice.fluent.models.BotChannelInner;
import java.util.List;
import java.util.Map;

/**
 * An immutable client-side representation of BotChannel.
 */
public interface BotChannel {
    /**
     * Gets the id property: Fully qualified resource Id for the resource.
     * 
     * @return the id value.
     */
    String id();

    /**
     * Gets the name property: The name of the resource.
     * 
     * @return the name value.
     */
    String name();

    /**
     * Gets the type property: The type of the resource.
     * 
     * @return the type value.
     */
    String type();

    /**
     * Gets the location property: The geo-location where the resource lives.
     * 
     * @return the location value.
     */
    String location();

    /**
     * Gets the tags property: Resource tags.
     * 
     * @return the tags value.
     */
    Map tags();

    /**
     * Gets the properties property: The set of properties specific to bot channel resource.
     * 
     * @return the properties value.
     */
    Channel properties();

    /**
     * Gets the sku property: Gets or sets the SKU of the resource.
     * 
     * @return the sku value.
     */
    Sku sku();

    /**
     * Gets the kind property: Required. Gets or sets the Kind of the resource.
     * 
     * @return the kind value.
     */
    Kind kind();

    /**
     * Gets the etag property: Entity Tag.
     * 
     * @return the etag value.
     */
    String etag();

    /**
     * Gets the zones property: Entity zones.
     * 
     * @return the zones value.
     */
    List zones();

    /**
     * Gets the inner com.azure.resourcemanager.botservice.fluent.models.BotChannelInner object.
     * 
     * @return the inner object.
     */
    BotChannelInner innerModel();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy