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

com.pulumi.azure.apimanagement.NotificationRecipientEmail Maven / Gradle / Ivy

// *** 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.azure.apimanagement;

import com.pulumi.azure.Utilities;
import com.pulumi.azure.apimanagement.NotificationRecipientEmailArgs;
import com.pulumi.azure.apimanagement.inputs.NotificationRecipientEmailState;
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 javax.annotation.Nullable;

/**
 * Manages a API Management Notification Recipient Email.
 * 
 * ## Example Usage
 * 
 * <!--Start PulumiCodeChooser -->
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azure.core.ResourceGroup;
 * import com.pulumi.azure.core.ResourceGroupArgs;
 * import com.pulumi.azure.apimanagement.Service;
 * import com.pulumi.azure.apimanagement.ServiceArgs;
 * import com.pulumi.azure.apimanagement.NotificationRecipientEmail;
 * import com.pulumi.azure.apimanagement.NotificationRecipientEmailArgs;
 * 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
 *             .name("example-resources")
 *             .location("West Europe")
 *             .build());
 * 
 *         var exampleService = new Service("exampleService", ServiceArgs.builder()
 *             .name("example-apim")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .publisherName("My Company")
 *             .publisherEmail("company}{@literal @}{@code terraform.io")
 *             .skuName("Developer_1")
 *             .build());
 * 
 *         var exampleNotificationRecipientEmail = new NotificationRecipientEmail("exampleNotificationRecipientEmail", NotificationRecipientEmailArgs.builder()
 *             .apiManagementId(exampleService.id())
 *             .notificationType("AccountClosedPublisher")
 *             .email("foo}{@literal @}{@code bar.com")
 *             .build());
 * 
 *     }}{@code
 * }}{@code
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * API Management Notification Recipient Emails can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:apimanagement/notificationRecipientEmail:NotificationRecipientEmail example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.ApiManagement/service/service1/notifications/notificationName1/recipientEmails/email1 * ``` * */ @ResourceType(type="azure:apimanagement/notificationRecipientEmail:NotificationRecipientEmail") public class NotificationRecipientEmail extends com.pulumi.resources.CustomResource { /** * The ID of the API Management Service from which to create this Notification Recipient Email. Changing this forces a new API Management Notification Recipient Email to be created. * */ @Export(name="apiManagementId", refs={String.class}, tree="[0]") private Output apiManagementId; /** * @return The ID of the API Management Service from which to create this Notification Recipient Email. Changing this forces a new API Management Notification Recipient Email to be created. * */ public Output apiManagementId() { return this.apiManagementId; } /** * The recipient email address. Changing this forces a new API Management Notification Recipient Email to be created. * */ @Export(name="email", refs={String.class}, tree="[0]") private Output email; /** * @return The recipient email address. Changing this forces a new API Management Notification Recipient Email to be created. * */ public Output email() { return this.email; } /** * The Notification Name to be received. Changing this forces a new API Management Notification Recipient Email to be created. Possible values are `AccountClosedPublisher`, `BCC`, `NewApplicationNotificationMessage`, `NewIssuePublisherNotificationMessage`, `PurchasePublisherNotificationMessage`, `QuotaLimitApproachingPublisherNotificationMessage`, and `RequestPublisherNotificationMessage`. * */ @Export(name="notificationType", refs={String.class}, tree="[0]") private Output notificationType; /** * @return The Notification Name to be received. Changing this forces a new API Management Notification Recipient Email to be created. Possible values are `AccountClosedPublisher`, `BCC`, `NewApplicationNotificationMessage`, `NewIssuePublisherNotificationMessage`, `PurchasePublisherNotificationMessage`, `QuotaLimitApproachingPublisherNotificationMessage`, and `RequestPublisherNotificationMessage`. * */ public Output notificationType() { return this.notificationType; } /** * * @param name The _unique_ name of the resulting resource. */ public NotificationRecipientEmail(java.lang.String name) { this(name, NotificationRecipientEmailArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public NotificationRecipientEmail(java.lang.String name, NotificationRecipientEmailArgs 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 NotificationRecipientEmail(java.lang.String name, NotificationRecipientEmailArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure:apimanagement/notificationRecipientEmail:NotificationRecipientEmail", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private NotificationRecipientEmail(java.lang.String name, Output id, @Nullable NotificationRecipientEmailState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure:apimanagement/notificationRecipientEmail:NotificationRecipientEmail", name, state, makeResourceOptions(options, id), false); } private static NotificationRecipientEmailArgs makeArgs(NotificationRecipientEmailArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? NotificationRecipientEmailArgs.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()) .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 state * @param options Optional settings to control the behavior of the CustomResource. */ public static NotificationRecipientEmail get(java.lang.String name, Output id, @Nullable NotificationRecipientEmailState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new NotificationRecipientEmail(name, id, state, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy