Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azure.logicapps.kotlin.ActionHttp.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.logicapps.kotlin
import com.pulumi.azure.logicapps.kotlin.outputs.ActionHttpRunAfter
import com.pulumi.azure.logicapps.kotlin.outputs.ActionHttpRunAfter.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
/**
* Builder for [ActionHttp].
*/
@PulumiTagMarker
public class ActionHttpResourceBuilder internal constructor() {
public var name: String? = null
public var args: ActionHttpArgs = ActionHttpArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend ActionHttpArgsBuilder.() -> Unit) {
val builder = ActionHttpArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): ActionHttp {
val builtJavaResource = com.pulumi.azure.logicapps.ActionHttp(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return ActionHttp(builtJavaResource)
}
}
/**
* Manages an HTTP Action within a Logic App Workflow
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "workflow-resources",
* location: "West Europe",
* });
* const exampleWorkflow = new azure.logicapps.Workflow("example", {
* name: "workflow1",
* location: example.location,
* resourceGroupName: example.name,
* });
* const exampleActionHttp = new azure.logicapps.ActionHttp("example", {
* name: "webhook",
* logicAppId: exampleWorkflow.id,
* method: "GET",
* uri: "http://example.com/some-webhook",
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="workflow-resources",
* location="West Europe")
* example_workflow = azure.logicapps.Workflow("example",
* name="workflow1",
* location=example.location,
* resource_group_name=example.name)
* example_action_http = azure.logicapps.ActionHttp("example",
* name="webhook",
* logic_app_id=example_workflow.id,
* method="GET",
* uri="http://example.com/some-webhook")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* return await Deployment.RunAsync(() =>
* {
* var example = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "workflow-resources",
* Location = "West Europe",
* });
* var exampleWorkflow = new Azure.LogicApps.Workflow("example", new()
* {
* Name = "workflow1",
* Location = example.Location,
* ResourceGroupName = example.Name,
* });
* var exampleActionHttp = new Azure.LogicApps.ActionHttp("example", new()
* {
* Name = "webhook",
* LogicAppId = exampleWorkflow.Id,
* Method = "GET",
* Uri = "http://example.com/some-webhook",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/logicapps"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("workflow-resources"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* exampleWorkflow, err := logicapps.NewWorkflow(ctx, "example", &logicapps.WorkflowArgs{
* Name: pulumi.String("workflow1"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* })
* if err != nil {
* return err
* }
* _, err = logicapps.NewActionHttp(ctx, "example", &logicapps.ActionHttpArgs{
* Name: pulumi.String("webhook"),
* LogicAppId: exampleWorkflow.ID(),
* Method: pulumi.String("GET"),
* Uri: pulumi.String("http://example.com/some-webhook"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* 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.logicapps.Workflow;
* import com.pulumi.azure.logicapps.WorkflowArgs;
* import com.pulumi.azure.logicapps.ActionHttp;
* import com.pulumi.azure.logicapps.ActionHttpArgs;
* 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("workflow-resources")
* .location("West Europe")
* .build());
* var exampleWorkflow = new Workflow("exampleWorkflow", WorkflowArgs.builder()
* .name("workflow1")
* .location(example.location())
* .resourceGroupName(example.name())
* .build());
* var exampleActionHttp = new ActionHttp("exampleActionHttp", ActionHttpArgs.builder()
* .name("webhook")
* .logicAppId(exampleWorkflow.id())
* .method("GET")
* .uri("http://example.com/some-webhook")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: workflow-resources
* location: West Europe
* exampleWorkflow:
* type: azure:logicapps:Workflow
* name: example
* properties:
* name: workflow1
* location: ${example.location}
* resourceGroupName: ${example.name}
* exampleActionHttp:
* type: azure:logicapps:ActionHttp
* name: example
* properties:
* name: webhook
* logicAppId: ${exampleWorkflow.id}
* method: GET
* uri: http://example.com/some-webhook
* ```
*
* ## Import
* Logic App HTTP Actions can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:logicapps/actionHttp:ActionHttp webhook1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Logic/workflows/workflow1/actions/webhook1
* ```
*/
public class ActionHttp internal constructor(
override val javaResource: com.pulumi.azure.logicapps.ActionHttp,
) : KotlinCustomResource(javaResource, ActionHttpMapper) {
/**
* Specifies the HTTP Body that should be sent to the `uri` when this HTTP Action is triggered.
*/
public val body: Output?
get() = javaResource.body().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Specifies a Map of Key-Value Pairs that should be sent to the `uri` when this HTTP Action is triggered.
*/
public val headers: Output>?
get() = javaResource.headers().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}).orElse(null)
})
/**
* Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
*/
public val logicAppId: Output
get() = javaResource.logicAppId().applyValue({ args0 -> args0 })
/**
* Specifies the HTTP Method which should be used for this HTTP Action. Possible values include `DELETE`, `GET`, `PATCH`, `POST` and `PUT`.
*/
public val method: Output
get() = javaResource.method().applyValue({ args0 -> args0 })
/**
* Specifies the name of the HTTP Action to be created within the Logic App Workflow. Changing this forces a new resource to be created.
* > **NOTE:** This name must be unique across all Actions within the Logic App Workflow.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* Specifies a Map of Key-Value Pairs that should be sent to the `uri` when this HTTP Action is triggered.
*/
public val queries: Output>?
get() = javaResource.queries().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}).orElse(null)
})
/**
* Specifies the place of the HTTP Action in the Logic App Workflow. If not specified, the HTTP Action is right after the Trigger. A `run_after` block is as defined below.
*/
public val runAfters: Output>?
get() = javaResource.runAfters().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> toKotlin(args0) })
})
}).orElse(null)
})
/**
* Specifies the URI which will be called when this HTTP Action is triggered.
*/
public val uri: Output
get() = javaResource.uri().applyValue({ args0 -> args0 })
}
public object ActionHttpMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azure.logicapps.ActionHttp::class == javaResource::class
override fun map(javaResource: Resource): ActionHttp = ActionHttp(
javaResource as
com.pulumi.azure.logicapps.ActionHttp,
)
}
/**
* @see [ActionHttp].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [ActionHttp].
*/
public suspend fun actionHttp(name: String, block: suspend ActionHttpResourceBuilder.() -> Unit): ActionHttp {
val builder = ActionHttpResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [ActionHttp].
* @param name The _unique_ name of the resulting resource.
*/
public fun actionHttp(name: String): ActionHttp {
val builder = ActionHttpResourceBuilder()
builder.name(name)
return builder.build()
}