
com.pulumi.azurenative.insights.inputs.LogicAppReceiverArgs 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.azurenative.insights.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* A logic app receiver.
*
*/
public final class LogicAppReceiverArgs extends com.pulumi.resources.ResourceArgs {
public static final LogicAppReceiverArgs Empty = new LogicAppReceiverArgs();
/**
* The callback url where http request sent to.
*
*/
@Import(name="callbackUrl", required=true)
private Output callbackUrl;
/**
* @return The callback url where http request sent to.
*
*/
public Output callbackUrl() {
return this.callbackUrl;
}
/**
* The name of the logic app receiver. Names must be unique across all receivers within an action group.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the logic app receiver. Names must be unique across all receivers within an action group.
*
*/
public Output name() {
return this.name;
}
/**
* The azure resource id of the logic app receiver.
*
*/
@Import(name="resourceId", required=true)
private Output resourceId;
/**
* @return The azure resource id of the logic app receiver.
*
*/
public Output resourceId() {
return this.resourceId;
}
/**
* Indicates whether to use common alert schema.
*
*/
@Import(name="useCommonAlertSchema")
private @Nullable Output useCommonAlertSchema;
/**
* @return Indicates whether to use common alert schema.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy