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

com.pulumi.azurenative.eventgrid.Channel 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.eventgrid;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.eventgrid.ChannelArgs;
import com.pulumi.azurenative.eventgrid.outputs.PartnerTopicInfoResponse;
import com.pulumi.azurenative.eventgrid.outputs.SystemDataResponse;
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.Optional;
import javax.annotation.Nullable;

/**
 * Channel info.
 * Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-10-15-preview.
 * 
 * Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview.
 * 
 * ## Example Usage
 * ### Channels_CreateOrUpdate
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.eventgrid.Channel;
 * import com.pulumi.azurenative.eventgrid.ChannelArgs;
 * import com.pulumi.azurenative.eventgrid.inputs.PartnerTopicInfoArgs;
 * 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 channel = new Channel("channel", ChannelArgs.builder()
 *             .channelName("exampleChannelName1")
 *             .channelType("PartnerTopic")
 *             .expirationTimeIfNotActivatedUtc("2021-10-21T22:50:25.410433Z")
 *             .messageForActivation("Example message to approver")
 *             .partnerNamespaceName("examplePartnerNamespaceName1")
 *             .partnerTopicInfo(PartnerTopicInfoArgs.builder()
 *                 .azureSubscriptionId("5b4b650e-28b9-4790-b3ab-ddbd88d727c4")
 *                 .name("examplePartnerTopic1")
 *                 .resourceGroupName("examplerg2")
 *                 .source("ContosoCorp.Accounts.User1")
 *                 .build())
 *             .resourceGroupName("examplerg")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:eventgrid:Channel exampleChannelName1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}/channels/{channelName} * ``` * */ @ResourceType(type="azure-native:eventgrid:Channel") public class Channel extends com.pulumi.resources.CustomResource { /** * The type of the event channel which represents the direction flow of events. * */ @Export(name="channelType", refs={String.class}, tree="[0]") private Output channelType; /** * @return The type of the event channel which represents the direction flow of events. * */ public Output> channelType() { return Codegen.optional(this.channelType); } /** * Expiration time of the channel. If this timer expires while the corresponding partner topic is never activated, * the channel and corresponding partner topic are deleted. * */ @Export(name="expirationTimeIfNotActivatedUtc", refs={String.class}, tree="[0]") private Output expirationTimeIfNotActivatedUtc; /** * @return Expiration time of the channel. If this timer expires while the corresponding partner topic is never activated, * the channel and corresponding partner topic are deleted. * */ public Output> expirationTimeIfNotActivatedUtc() { return Codegen.optional(this.expirationTimeIfNotActivatedUtc); } /** * Context or helpful message that can be used during the approval process by the subscriber. * */ @Export(name="messageForActivation", refs={String.class}, tree="[0]") private Output messageForActivation; /** * @return Context or helpful message that can be used during the approval process by the subscriber. * */ public Output> messageForActivation() { return Codegen.optional(this.messageForActivation); } /** * Name of the resource. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return Name of the resource. * */ public Output name() { return this.name; } /** * This property should be populated when channelType is PartnerTopic and represents information about the partner topic resource corresponding to the channel. * */ @Export(name="partnerTopicInfo", refs={PartnerTopicInfoResponse.class}, tree="[0]") private Output partnerTopicInfo; /** * @return This property should be populated when channelType is PartnerTopic and represents information about the partner topic resource corresponding to the channel. * */ public Output> partnerTopicInfo() { return Codegen.optional(this.partnerTopicInfo); } /** * Provisioning state of the channel. * */ @Export(name="provisioningState", refs={String.class}, tree="[0]") private Output provisioningState; /** * @return Provisioning state of the channel. * */ public Output> provisioningState() { return Codegen.optional(this.provisioningState); } /** * The readiness state of the corresponding partner topic. * */ @Export(name="readinessState", refs={String.class}, tree="[0]") private Output readinessState; /** * @return The readiness state of the corresponding partner topic. * */ public Output> readinessState() { return Codegen.optional(this.readinessState); } /** * The system metadata relating to Channel resource. * */ @Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]") private Output systemData; /** * @return The system metadata relating to Channel resource. * */ public Output systemData() { return this.systemData; } /** * Type of the resource. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return Type of the resource. * */ public Output type() { return this.type; } /** * * @param name The _unique_ name of the resulting resource. */ public Channel(java.lang.String name) { this(name, ChannelArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public Channel(java.lang.String name, ChannelArgs 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 Channel(java.lang.String name, ChannelArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:eventgrid:Channel", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private Channel(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:eventgrid:Channel", name, null, makeResourceOptions(options, id), false); } private static ChannelArgs makeArgs(ChannelArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? ChannelArgs.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:eventgrid/v20211015preview:Channel").build()), Output.of(Alias.builder().type("azure-native:eventgrid/v20220615:Channel").build()), Output.of(Alias.builder().type("azure-native:eventgrid/v20230601preview:Channel").build()), Output.of(Alias.builder().type("azure-native:eventgrid/v20231215preview:Channel").build()), Output.of(Alias.builder().type("azure-native:eventgrid/v20240601preview:Channel").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 Channel get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new Channel(name, id, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy