Azure Classic
IntegrationAccountAgreement
Manages a Logic App Integration Account Agreement.
Example Usage
using System.Collections.Generic;
using System.IO;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Location = "West Europe",
});
var testIntegrationAccount = new Azure.LogicApps.IntegrationAccount("testIntegrationAccount", new()
{
Location = example.Location,
ResourceGroupName = example.Name,
SkuName = "Standard",
});
var host = new Azure.LogicApps.IntegrationAccountPartner("host", new()
{
ResourceGroupName = example.Name,
IntegrationAccountName = testIntegrationAccount.Name,
BusinessIdentities = new[]
{
new Azure.LogicApps.Inputs.IntegrationAccountPartnerBusinessIdentityArgs
{
Qualifier = "AS2Identity",
Value = "FabrikamNY",
},
},
});
var guest = new Azure.LogicApps.IntegrationAccountPartner("guest", new()
{
ResourceGroupName = example.Name,
IntegrationAccountName = testIntegrationAccount.Name,
BusinessIdentities = new[]
{
new Azure.LogicApps.Inputs.IntegrationAccountPartnerBusinessIdentityArgs
{
Qualifier = "AS2Identity",
Value = "FabrikamDC",
},
},
});
var testIntegrationAccountAgreement = new Azure.LogicApps.IntegrationAccountAgreement("testIntegrationAccountAgreement", new()
{
ResourceGroupName = example.Name,
IntegrationAccountName = testIntegrationAccount.Name,
AgreementType = "AS2",
HostPartnerName = host.Name,
GuestPartnerName = guest.Name,
Content = File.ReadAllText("testdata/integration_account_agreement_content_as2.json"),
HostIdentity = new Azure.LogicApps.Inputs.IntegrationAccountAgreementHostIdentityArgs
{
Qualifier = "AS2Identity",
Value = "FabrikamNY",
},
GuestIdentity = new Azure.LogicApps.Inputs.IntegrationAccountAgreementGuestIdentityArgs
{
Qualifier = "AS2Identity",
Value = "FabrikamDC",
},
});
});
package main
import (
"io/ioutil"
"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 readFileOrPanic(path string) pulumi.StringPtrInput {
data, err := ioutil.ReadFile(path)
if err != nil {
panic(err.Error())
}
return pulumi.String(string(data))
}
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
testIntegrationAccount, err := logicapps.NewIntegrationAccount(ctx, "testIntegrationAccount", &logicapps.IntegrationAccountArgs{
Location: example.Location,
ResourceGroupName: example.Name,
SkuName: pulumi.String("Standard"),
})
if err != nil {
return err
}
host, err := logicapps.NewIntegrationAccountPartner(ctx, "host", &logicapps.IntegrationAccountPartnerArgs{
ResourceGroupName: example.Name,
IntegrationAccountName: testIntegrationAccount.Name,
BusinessIdentities: logicapps.IntegrationAccountPartnerBusinessIdentityArray{
&logicapps.IntegrationAccountPartnerBusinessIdentityArgs{
Qualifier: pulumi.String("AS2Identity"),
Value: pulumi.String("FabrikamNY"),
},
},
})
if err != nil {
return err
}
guest, err := logicapps.NewIntegrationAccountPartner(ctx, "guest", &logicapps.IntegrationAccountPartnerArgs{
ResourceGroupName: example.Name,
IntegrationAccountName: testIntegrationAccount.Name,
BusinessIdentities: logicapps.IntegrationAccountPartnerBusinessIdentityArray{
&logicapps.IntegrationAccountPartnerBusinessIdentityArgs{
Qualifier: pulumi.String("AS2Identity"),
Value: pulumi.String("FabrikamDC"),
},
},
})
if err != nil {
return err
}
_, err = logicapps.NewIntegrationAccountAgreement(ctx, "testIntegrationAccountAgreement", &logicapps.IntegrationAccountAgreementArgs{
ResourceGroupName: example.Name,
IntegrationAccountName: testIntegrationAccount.Name,
AgreementType: pulumi.String("AS2"),
HostPartnerName: host.Name,
GuestPartnerName: guest.Name,
Content: readFileOrPanic("testdata/integration_account_agreement_content_as2.json"),
HostIdentity: &logicapps.IntegrationAccountAgreementHostIdentityArgs{
Qualifier: pulumi.String("AS2Identity"),
Value: pulumi.String("FabrikamNY"),
},
GuestIdentity: &logicapps.IntegrationAccountAgreementGuestIdentityArgs{
Qualifier: pulumi.String("AS2Identity"),
Value: pulumi.String("FabrikamDC"),
},
})
if err != nil {
return err
}
return nil
})
}
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.IntegrationAccount;
import com.pulumi.azure.logicapps.IntegrationAccountArgs;
import com.pulumi.azure.logicapps.IntegrationAccountPartner;
import com.pulumi.azure.logicapps.IntegrationAccountPartnerArgs;
import com.pulumi.azure.logicapps.inputs.IntegrationAccountPartnerBusinessIdentityArgs;
import com.pulumi.azure.logicapps.IntegrationAccountAgreement;
import com.pulumi.azure.logicapps.IntegrationAccountAgreementArgs;
import com.pulumi.azure.logicapps.inputs.IntegrationAccountAgreementHostIdentityArgs;
import com.pulumi.azure.logicapps.inputs.IntegrationAccountAgreementGuestIdentityArgs;
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()
.location("West Europe")
.build());
var testIntegrationAccount = new IntegrationAccount("testIntegrationAccount", IntegrationAccountArgs.builder()
.location(example.location())
.resourceGroupName(example.name())
.skuName("Standard")
.build());
var host = new IntegrationAccountPartner("host", IntegrationAccountPartnerArgs.builder()
.resourceGroupName(example.name())
.integrationAccountName(testIntegrationAccount.name())
.businessIdentities(IntegrationAccountPartnerBusinessIdentityArgs.builder()
.qualifier("AS2Identity")
.value("FabrikamNY")
.build())
.build());
var guest = new IntegrationAccountPartner("guest", IntegrationAccountPartnerArgs.builder()
.resourceGroupName(example.name())
.integrationAccountName(testIntegrationAccount.name())
.businessIdentities(IntegrationAccountPartnerBusinessIdentityArgs.builder()
.qualifier("AS2Identity")
.value("FabrikamDC")
.build())
.build());
var testIntegrationAccountAgreement = new IntegrationAccountAgreement("testIntegrationAccountAgreement", IntegrationAccountAgreementArgs.builder()
.resourceGroupName(example.name())
.integrationAccountName(testIntegrationAccount.name())
.agreementType("AS2")
.hostPartnerName(host.name())
.guestPartnerName(guest.name())
.content(Files.readString(Paths.get("testdata/integration_account_agreement_content_as2.json")))
.hostIdentity(IntegrationAccountAgreementHostIdentityArgs.builder()
.qualifier("AS2Identity")
.value("FabrikamNY")
.build())
.guestIdentity(IntegrationAccountAgreementGuestIdentityArgs.builder()
.qualifier("AS2Identity")
.value("FabrikamDC")
.build())
.build());
}
}
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example", location="West Europe")
test_integration_account = azure.logicapps.IntegrationAccount("testIntegrationAccount",
location=example.location,
resource_group_name=example.name,
sku_name="Standard")
host = azure.logicapps.IntegrationAccountPartner("host",
resource_group_name=example.name,
integration_account_name=test_integration_account.name,
business_identities=[azure.logicapps.IntegrationAccountPartnerBusinessIdentityArgs(
qualifier="AS2Identity",
value="FabrikamNY",
)])
guest = azure.logicapps.IntegrationAccountPartner("guest",
resource_group_name=example.name,
integration_account_name=test_integration_account.name,
business_identities=[azure.logicapps.IntegrationAccountPartnerBusinessIdentityArgs(
qualifier="AS2Identity",
value="FabrikamDC",
)])
test_integration_account_agreement = azure.logicapps.IntegrationAccountAgreement("testIntegrationAccountAgreement",
resource_group_name=example.name,
integration_account_name=test_integration_account.name,
agreement_type="AS2",
host_partner_name=host.name,
guest_partner_name=guest.name,
content=(lambda path: open(path).read())("testdata/integration_account_agreement_content_as2.json"),
host_identity=azure.logicapps.IntegrationAccountAgreementHostIdentityArgs(
qualifier="AS2Identity",
value="FabrikamNY",
),
guest_identity=azure.logicapps.IntegrationAccountAgreementGuestIdentityArgs(
qualifier="AS2Identity",
value="FabrikamDC",
))
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
import * as fs from "fs";
const example = new azure.core.ResourceGroup("example", {location: "West Europe"});
const testIntegrationAccount = new azure.logicapps.IntegrationAccount("testIntegrationAccount", {
location: example.location,
resourceGroupName: example.name,
skuName: "Standard",
});
const host = new azure.logicapps.IntegrationAccountPartner("host", {
resourceGroupName: example.name,
integrationAccountName: testIntegrationAccount.name,
businessIdentities: [{
qualifier: "AS2Identity",
value: "FabrikamNY",
}],
});
const guest = new azure.logicapps.IntegrationAccountPartner("guest", {
resourceGroupName: example.name,
integrationAccountName: testIntegrationAccount.name,
businessIdentities: [{
qualifier: "AS2Identity",
value: "FabrikamDC",
}],
});
const testIntegrationAccountAgreement = new azure.logicapps.IntegrationAccountAgreement("testIntegrationAccountAgreement", {
resourceGroupName: example.name,
integrationAccountName: testIntegrationAccount.name,
agreementType: "AS2",
hostPartnerName: host.name,
guestPartnerName: guest.name,
content: fs.readFileSync("testdata/integration_account_agreement_content_as2.json"),
hostIdentity: {
qualifier: "AS2Identity",
value: "FabrikamNY",
},
guestIdentity: {
qualifier: "AS2Identity",
value: "FabrikamDC",
},
});
Coming soon!
Create a IntegrationAccountAgreement Resource
new IntegrationAccountAgreement(name: string, args: IntegrationAccountAgreementArgs, opts?: CustomResourceOptions);
@overload
def IntegrationAccountAgreement(resource_name: str,
opts: Optional[ResourceOptions] = None,
agreement_type: Optional[str] = None,
content: Optional[str] = None,
guest_identity: Optional[IntegrationAccountAgreementGuestIdentityArgs] = None,
guest_partner_name: Optional[str] = None,
host_identity: Optional[IntegrationAccountAgreementHostIdentityArgs] = None,
host_partner_name: Optional[str] = None,
integration_account_name: Optional[str] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None)
@overload
def IntegrationAccountAgreement(resource_name: str,
args: IntegrationAccountAgreementArgs,
opts: Optional[ResourceOptions] = None)
func NewIntegrationAccountAgreement(ctx *Context, name string, args IntegrationAccountAgreementArgs, opts ...ResourceOption) (*IntegrationAccountAgreement, error)
public IntegrationAccountAgreement(string name, IntegrationAccountAgreementArgs args, CustomResourceOptions? opts = null)
public IntegrationAccountAgreement(String name, IntegrationAccountAgreementArgs args)
public IntegrationAccountAgreement(String name, IntegrationAccountAgreementArgs args, CustomResourceOptions options)
type: azure:logicapps:IntegrationAccountAgreement
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationAccountAgreementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IntegrationAccountAgreementArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IntegrationAccountAgreementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationAccountAgreementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationAccountAgreementArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
IntegrationAccountAgreement Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The IntegrationAccountAgreement resource accepts the following input properties:
- Agreement
Type string The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- Content string
The content of the Logic App Integration Account Agreement.
- Guest
Identity IntegrationAccount Agreement Guest Identity Args A
guest_identity
block as documented below.- Guest
Partner stringName The name of the guest Logic App Integration Account Partner.
- Host
Identity IntegrationAccount Agreement Host Identity Args A
host_identity
block as documented below.- Host
Partner stringName The name of the host Logic App Integration Account Partner.
- Integration
Account stringName The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- Metadata Dictionary<string, string>
The metadata of the Logic App Integration Account Agreement.
- Name string
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- Agreement
Type string The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- Content string
The content of the Logic App Integration Account Agreement.
- Guest
Identity IntegrationAccount Agreement Guest Identity Args A
guest_identity
block as documented below.- Guest
Partner stringName The name of the guest Logic App Integration Account Partner.
- Host
Identity IntegrationAccount Agreement Host Identity Args A
host_identity
block as documented below.- Host
Partner stringName The name of the host Logic App Integration Account Partner.
- Integration
Account stringName The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- Metadata map[string]string
The metadata of the Logic App Integration Account Agreement.
- Name string
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- agreement
Type String The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- content String
The content of the Logic App Integration Account Agreement.
- guest
Identity IntegrationAccount Agreement Guest Identity Args A
guest_identity
block as documented below.- guest
Partner StringName The name of the guest Logic App Integration Account Partner.
- host
Identity IntegrationAccount Agreement Host Identity Args A
host_identity
block as documented below.- host
Partner StringName The name of the host Logic App Integration Account Partner.
- integration
Account StringName The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- resource
Group StringName The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- metadata Map<String,String>
The metadata of the Logic App Integration Account Agreement.
- name String
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- agreement
Type string The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- content string
The content of the Logic App Integration Account Agreement.
- guest
Identity IntegrationAccount Agreement Guest Identity Args A
guest_identity
block as documented below.- guest
Partner stringName The name of the guest Logic App Integration Account Partner.
- host
Identity IntegrationAccount Agreement Host Identity Args A
host_identity
block as documented below.- host
Partner stringName The name of the host Logic App Integration Account Partner.
- integration
Account stringName The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- resource
Group stringName The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- metadata {[key: string]: string}
The metadata of the Logic App Integration Account Agreement.
- name string
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- agreement_
type str The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- content str
The content of the Logic App Integration Account Agreement.
- guest_
identity IntegrationAccount Agreement Guest Identity Args A
guest_identity
block as documented below.- guest_
partner_ strname The name of the guest Logic App Integration Account Partner.
- host_
identity IntegrationAccount Agreement Host Identity Args A
host_identity
block as documented below.- host_
partner_ strname The name of the host Logic App Integration Account Partner.
- integration_
account_ strname The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- resource_
group_ strname The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- metadata Mapping[str, str]
The metadata of the Logic App Integration Account Agreement.
- name str
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- agreement
Type String The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- content String
The content of the Logic App Integration Account Agreement.
- guest
Identity Property Map A
guest_identity
block as documented below.- guest
Partner StringName The name of the guest Logic App Integration Account Partner.
- host
Identity Property Map A
host_identity
block as documented below.- host
Partner StringName The name of the host Logic App Integration Account Partner.
- integration
Account StringName The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- resource
Group StringName The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- metadata Map<String>
The metadata of the Logic App Integration Account Agreement.
- name String
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationAccountAgreement resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up an Existing IntegrationAccountAgreement Resource
Get an existing IntegrationAccountAgreement resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IntegrationAccountAgreementState, opts?: CustomResourceOptions): IntegrationAccountAgreement
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
agreement_type: Optional[str] = None,
content: Optional[str] = None,
guest_identity: Optional[IntegrationAccountAgreementGuestIdentityArgs] = None,
guest_partner_name: Optional[str] = None,
host_identity: Optional[IntegrationAccountAgreementHostIdentityArgs] = None,
host_partner_name: Optional[str] = None,
integration_account_name: Optional[str] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None) -> IntegrationAccountAgreement
func GetIntegrationAccountAgreement(ctx *Context, name string, id IDInput, state *IntegrationAccountAgreementState, opts ...ResourceOption) (*IntegrationAccountAgreement, error)
public static IntegrationAccountAgreement Get(string name, Input<string> id, IntegrationAccountAgreementState? state, CustomResourceOptions? opts = null)
public static IntegrationAccountAgreement get(String name, Output<String> id, IntegrationAccountAgreementState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Agreement
Type string The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- Content string
The content of the Logic App Integration Account Agreement.
- Guest
Identity IntegrationAccount Agreement Guest Identity Args A
guest_identity
block as documented below.- Guest
Partner stringName The name of the guest Logic App Integration Account Partner.
- Host
Identity IntegrationAccount Agreement Host Identity Args A
host_identity
block as documented below.- Host
Partner stringName The name of the host Logic App Integration Account Partner.
- Integration
Account stringName The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- Metadata Dictionary<string, string>
The metadata of the Logic App Integration Account Agreement.
- Name string
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- Agreement
Type string The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- Content string
The content of the Logic App Integration Account Agreement.
- Guest
Identity IntegrationAccount Agreement Guest Identity Args A
guest_identity
block as documented below.- Guest
Partner stringName The name of the guest Logic App Integration Account Partner.
- Host
Identity IntegrationAccount Agreement Host Identity Args A
host_identity
block as documented below.- Host
Partner stringName The name of the host Logic App Integration Account Partner.
- Integration
Account stringName The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- Metadata map[string]string
The metadata of the Logic App Integration Account Agreement.
- Name string
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- agreement
Type String The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- content String
The content of the Logic App Integration Account Agreement.
- guest
Identity IntegrationAccount Agreement Guest Identity Args A
guest_identity
block as documented below.- guest
Partner StringName The name of the guest Logic App Integration Account Partner.
- host
Identity IntegrationAccount Agreement Host Identity Args A
host_identity
block as documented below.- host
Partner StringName The name of the host Logic App Integration Account Partner.
- integration
Account StringName The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- metadata Map<String,String>
The metadata of the Logic App Integration Account Agreement.
- name String
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- resource
Group StringName The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- agreement
Type string The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- content string
The content of the Logic App Integration Account Agreement.
- guest
Identity IntegrationAccount Agreement Guest Identity Args A
guest_identity
block as documented below.- guest
Partner stringName The name of the guest Logic App Integration Account Partner.
- host
Identity IntegrationAccount Agreement Host Identity Args A
host_identity
block as documented below.- host
Partner stringName The name of the host Logic App Integration Account Partner.
- integration
Account stringName The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- metadata {[key: string]: string}
The metadata of the Logic App Integration Account Agreement.
- name string
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- resource
Group stringName The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- agreement_
type str The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- content str
The content of the Logic App Integration Account Agreement.
- guest_
identity IntegrationAccount Agreement Guest Identity Args A
guest_identity
block as documented below.- guest_
partner_ strname The name of the guest Logic App Integration Account Partner.
- host_
identity IntegrationAccount Agreement Host Identity Args A
host_identity
block as documented below.- host_
partner_ strname The name of the host Logic App Integration Account Partner.
- integration_
account_ strname The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- metadata Mapping[str, str]
The metadata of the Logic App Integration Account Agreement.
- name str
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- resource_
group_ strname The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
- agreement
Type String The type of the Logic App Integration Account Agreement. Possible values are
AS2
,X12
andEdifact
.- content String
The content of the Logic App Integration Account Agreement.
- guest
Identity Property Map A
guest_identity
block as documented below.- guest
Partner StringName The name of the guest Logic App Integration Account Partner.
- host
Identity Property Map A
host_identity
block as documented below.- host
Partner StringName The name of the host Logic App Integration Account Partner.
- integration
Account StringName The name of the Logic App Integration Account. Changing this forces a new resource to be created.
- metadata Map<String>
The metadata of the Logic App Integration Account Agreement.
- name String
The name which should be used for this Logic App Integration Account Agreement. Changing this forces a new resource to be created.
- resource
Group StringName The name of the Resource Group where the Logic App Integration Account Agreement should exist. Changing this forces a new resource to be created.
Supporting Types
IntegrationAccountAgreementGuestIdentity
IntegrationAccountAgreementHostIdentity
Import
Logic App Integration Account Agreements can be imported using the resource id
, e.g.
$ pulumi import azure:logicapps/integrationAccountAgreement:IntegrationAccountAgreement example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Logic/integrationAccounts/account1/agreements/agreement1
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.