IntegrationAccountPartner

class IntegrationAccountPartner : KotlinCustomResource

The integration account partner. API Version: 2019-05-01.

Example Usage

Create or update a partner

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var integrationAccountPartner = new AzureNative.Logic.IntegrationAccountPartner("integrationAccountPartner", new()
{
Content = new AzureNative.Logic.Inputs.PartnerContentArgs
{
B2b = new AzureNative.Logic.Inputs.B2BPartnerContentArgs
{
BusinessIdentities = new[]
{
new AzureNative.Logic.Inputs.BusinessIdentityArgs
{
Qualifier = "AA",
Value = "ZZ",
},
},
},
},
IntegrationAccountName = "testIntegrationAccount",
Location = "westus",
Metadata = null,
PartnerName = "testPartner",
PartnerType = "B2B",
ResourceGroupName = "testResourceGroup",
Tags = null,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.logic.IntegrationAccountPartner;
import com.pulumi.azurenative.logic.IntegrationAccountPartnerArgs;
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 integrationAccountPartner = new IntegrationAccountPartner("integrationAccountPartner", IntegrationAccountPartnerArgs.builder()
.content(Map.of("b2b", Map.of("businessIdentities", Map.ofEntries(
Map.entry("qualifier", "AA"),
Map.entry("value", "ZZ")
))))
.integrationAccountName("testIntegrationAccount")
.location("westus")
.metadata()
.partnerName("testPartner")
.partnerType("B2B")
.resourceGroupName("testResourceGroup")
.tags()
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:logic:IntegrationAccountPartner testPartner /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/testIntegrationAccount/partners/testPartner

Properties

Link copied to clipboard
val changedTime: Output<String>

The changed time.

Link copied to clipboard

The partner content.

Link copied to clipboard
val createdTime: Output<String>

The created time.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<String>?

The resource location.

Link copied to clipboard
val metadata: Output<Any>?

The metadata.

Link copied to clipboard
val name: Output<String>

Gets the resource name.

Link copied to clipboard
val partnerType: Output<String>

The partner type.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

The resource tags.

Link copied to clipboard
val type: Output<String>

Gets the resource type.

Link copied to clipboard
val urn: Output<String>