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

com.pulumi.azurenative.botservice.BotConnection Maven / Gradle / Ivy

There is a newer version: 2.78.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;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.botservice.BotConnectionArgs;
import com.pulumi.azurenative.botservice.outputs.ConnectionSettingPropertiesResponse;
import com.pulumi.azurenative.botservice.outputs.SkuResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Bot channel resource definition
 * Azure REST API version: 2022-09-15. Prior API version in Azure Native 1.x: 2021-03-01.
 * 
 * Other available API versions: 2023-09-15-preview.
 * 
 * ## Example Usage
 * ### Create Connection Setting
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.botservice.BotConnection;
 * import com.pulumi.azurenative.botservice.BotConnectionArgs;
 * import com.pulumi.azurenative.botservice.inputs.ConnectionSettingPropertiesArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * 
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 * 
 *     public static void stack(Context ctx) {
 *         var botConnection = new BotConnection("botConnection", BotConnectionArgs.builder()
 *             .connectionName("sampleConnection")
 *             .location("West US")
 *             .properties(ConnectionSettingPropertiesArgs.builder()
 *                 .clientId("sampleclientid")
 *                 .clientSecret("samplesecret")
 *                 .parameters(                
 *                     ConnectionSettingParameterArgs.builder()
 *                         .key("key1")
 *                         .value("value1")
 *                         .build(),
 *                     ConnectionSettingParameterArgs.builder()
 *                         .key("key2")
 *                         .value("value2")
 *                         .build())
 *                 .scopes("samplescope")
 *                 .serviceProviderId("serviceproviderid")
 *                 .build())
 *             .resourceGroupName("OneResourceGroupName")
 *             .resourceName("samplebotname")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:botservice:BotConnection sampleConnection /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/connections/{connectionName} * ``` * */ @ResourceType(type="azure-native:botservice:BotConnection") public class BotConnection extends com.pulumi.resources.CustomResource { /** * Entity Tag. * */ @Export(name="etag", refs={String.class}, tree="[0]") private Output etag; /** * @return Entity Tag. * */ public Output> etag() { return Codegen.optional(this.etag); } /** * Required. Gets or sets the Kind of the resource. * */ @Export(name="kind", refs={String.class}, tree="[0]") private Output kind; /** * @return Required. Gets or sets the Kind of the resource. * */ public Output> kind() { return Codegen.optional(this.kind); } /** * Specifies the location of the resource. * */ @Export(name="location", refs={String.class}, tree="[0]") private Output location; /** * @return Specifies the location of the resource. * */ public Output> location() { return Codegen.optional(this.location); } /** * Specifies the name of the resource. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return Specifies the name of the resource. * */ public Output name() { return this.name; } /** * The set of properties specific to bot channel resource * */ @Export(name="properties", refs={ConnectionSettingPropertiesResponse.class}, tree="[0]") private Output properties; /** * @return The set of properties specific to bot channel resource * */ public Output properties() { return this.properties; } /** * Gets or sets the SKU of the resource. * */ @Export(name="sku", refs={SkuResponse.class}, tree="[0]") private Output sku; /** * @return Gets or sets the SKU of the resource. * */ public Output> sku() { return Codegen.optional(this.sku); } /** * Contains resource tags defined as key/value pairs. * */ @Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]") private Output> tags; /** * @return Contains resource tags defined as key/value pairs. * */ public Output>> tags() { return Codegen.optional(this.tags); } /** * Specifies the type of the resource. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return Specifies the type of the resource. * */ public Output type() { return this.type; } /** * Entity zones * */ @Export(name="zones", refs={List.class,String.class}, tree="[0,1]") private Output> zones; /** * @return Entity zones * */ public Output> zones() { return this.zones; } /** * * @param name The _unique_ name of the resulting resource. */ public BotConnection(java.lang.String name) { this(name, BotConnectionArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public BotConnection(java.lang.String name, BotConnectionArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public BotConnection(java.lang.String name, BotConnectionArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:botservice:BotConnection", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private BotConnection(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:botservice:BotConnection", name, null, makeResourceOptions(options, id), false); } private static BotConnectionArgs makeArgs(BotConnectionArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? BotConnectionArgs.Empty : args; } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .aliases(List.of( Output.of(Alias.builder().type("azure-native:botservice/v20171201:BotConnection").build()), Output.of(Alias.builder().type("azure-native:botservice/v20180712:BotConnection").build()), Output.of(Alias.builder().type("azure-native:botservice/v20200602:BotConnection").build()), Output.of(Alias.builder().type("azure-native:botservice/v20210301:BotConnection").build()), Output.of(Alias.builder().type("azure-native:botservice/v20210501preview:BotConnection").build()), Output.of(Alias.builder().type("azure-native:botservice/v20220615preview:BotConnection").build()), Output.of(Alias.builder().type("azure-native:botservice/v20220915:BotConnection").build()), Output.of(Alias.builder().type("azure-native:botservice/v20230915preview:BotConnection").build()) )) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param options Optional settings to control the behavior of the CustomResource. */ public static BotConnection get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new BotConnection(name, id, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy