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

com.pulumi.azurenative.testbase.CustomerEvent 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.testbase;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.testbase.CustomerEventArgs;
import com.pulumi.azurenative.testbase.outputs.NotificationEventReceiverResponse;
import com.pulumi.azurenative.testbase.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 javax.annotation.Nullable;

/**
 * The Customer Notification Event resource.
 * Azure REST API version: 2022-04-01-preview. Prior API version in Azure Native 1.x: 2022-04-01-preview.
 * 
 * Other available API versions: 2023-11-01-preview.
 * 
 * ## Example Usage
 * ### CustomerEventCreate
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.testbase.CustomerEvent;
 * import com.pulumi.azurenative.testbase.CustomerEventArgs;
 * import com.pulumi.azurenative.testbase.inputs.NotificationEventReceiverArgs;
 * import com.pulumi.azurenative.testbase.inputs.NotificationReceiverValueArgs;
 * import com.pulumi.azurenative.testbase.inputs.UserObjectReceiverValueArgs;
 * import com.pulumi.azurenative.testbase.inputs.DistributionGroupListReceiverValueArgs;
 * 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 }{{@code
 *     public static void main(String[] args) }{{@code
 *         Pulumi.run(App::stack);
 *     }}{@code
 * 
 *     public static void stack(Context ctx) }{{@code
 *         var customerEvent = new CustomerEvent("customerEvent", CustomerEventArgs.builder()
 *             .customerEventName("WeeklySummary")
 *             .eventName("WeeklySummary")
 *             .receivers(            
 *                 NotificationEventReceiverArgs.builder()
 *                     .receiverType("UserObjects")
 *                     .receiverValue(NotificationReceiverValueArgs.builder()
 *                         .userObjectReceiverValue(UserObjectReceiverValueArgs.builder()
 *                             .userObjectIds(                            
 *                                 "245245245245325",
 *                                 "365365365363565")
 *                             .build())
 *                         .build())
 *                     .build(),
 *                 NotificationEventReceiverArgs.builder()
 *                     .receiverType("DistributionGroup")
 *                     .receiverValue(NotificationReceiverValueArgs.builder()
 *                         .distributionGroupListReceiverValue(DistributionGroupListReceiverValueArgs.builder()
 *                             .distributionGroups("test}{@literal @}{@code microsoft.com")
 *                             .build())
 *                         .build())
 *                     .build())
 *             .resourceGroupName("contoso-rg1")
 *             .testBaseAccountName("contoso-testBaseAccount1")
 *             .build());
 * 
 *     }}{@code
 * }}{@code
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:testbase:CustomerEvent WeeklySummary /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.TestBase/testBaseAccounts/{testBaseAccountName}/customerEvents/{customerEventName} * ``` * */ @ResourceType(type="azure-native:testbase:CustomerEvent") public class CustomerEvent extends com.pulumi.resources.CustomResource { /** * The name of the event subscribed to. * */ @Export(name="eventName", refs={String.class}, tree="[0]") private Output eventName; /** * @return The name of the event subscribed to. * */ public Output eventName() { return this.eventName; } /** * Resource name. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return Resource name. * */ public Output name() { return this.name; } /** * The notification event receivers. * */ @Export(name="receivers", refs={List.class,NotificationEventReceiverResponse.class}, tree="[0,1]") private Output> receivers; /** * @return The notification event receivers. * */ public Output> receivers() { return this.receivers; } /** * The system metadata relating to this resource * */ @Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]") private Output systemData; /** * @return The system metadata relating to this resource * */ public Output systemData() { return this.systemData; } /** * Resource type. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return Resource type. * */ public Output type() { return this.type; } /** * * @param name The _unique_ name of the resulting resource. */ public CustomerEvent(java.lang.String name) { this(name, CustomerEventArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public CustomerEvent(java.lang.String name, CustomerEventArgs 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 CustomerEvent(java.lang.String name, CustomerEventArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:testbase:CustomerEvent", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private CustomerEvent(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:testbase:CustomerEvent", name, null, makeResourceOptions(options, id), false); } private static CustomerEventArgs makeArgs(CustomerEventArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? CustomerEventArgs.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:testbase/v20201216preview:CustomerEvent").build()), Output.of(Alias.builder().type("azure-native:testbase/v20220401preview:CustomerEvent").build()), Output.of(Alias.builder().type("azure-native:testbase/v20231101preview:CustomerEvent").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 CustomerEvent get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new CustomerEvent(name, id, options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy