import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Gets information about an Azure VPC peering connection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getAzureOrgVpcPeeringConnection({ * organizationId: "org1a23f456789", * organizationVpcId: "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", * azureSubscriptionId: "12345678-1234-1234-1234-123456789012", * vnetName: "my-vnet", * peerResourceGroup: "my-resource-group", * }); * ``` */ export declare function getAzureOrgVpcPeeringConnection(args: GetAzureOrgVpcPeeringConnectionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAzureOrgVpcPeeringConnection. */ export interface GetAzureOrgVpcPeeringConnectionArgs { /** * The ID of the Azure subscription in UUID4 format. */ azureSubscriptionId: string; /** * ID of an organization. */ organizationId: string; /** * Organization VPC ID. */ organizationVpcId: string; /** * The name of the Azure resource group associated with the VNet. */ peerResourceGroup: string; timeouts?: inputs.GetAzureOrgVpcPeeringConnectionTimeouts; /** * The name of the Azure VNet. */ vnetName: string; } /** * A collection of values returned by getAzureOrgVpcPeeringConnection. */ export interface GetAzureOrgVpcPeeringConnectionResult { /** * The ID of the Azure subscription in UUID4 format. */ readonly azureSubscriptionId: string; /** * Resource ID composed as: `organization_id/organization_vpc_id/azure_subscription_id/vnet_name/peer_resource_group`. */ readonly id: string; /** * ID of an organization. */ readonly organizationId: string; /** * Organization VPC ID. */ readonly organizationVpcId: string; /** * The ID of the Azure app that is allowed to create a peering to the Azure Virtual Network (VNet) in UUID4 format. */ readonly peerAzureAppId: string; /** * The Azure tenant ID in UUID4 format. */ readonly peerAzureTenantId: string; /** * The name of the Azure resource group associated with the VNet. */ readonly peerResourceGroup: string; /** * Organization peering connection ID. */ readonly peeringConnectionId: string; /** * State of the peering connection. The possible values are `ACTIVE`, `APPROVED`, `APPROVED_PEER_REQUESTED`, `DELETED`, `DELETED_BY_PEER`, `DELETING`, `ERROR`, `INVALID_SPECIFICATION`, `PENDING_PEER` and `REJECTED_BY_PEER`. */ readonly state: string; readonly timeouts?: outputs.GetAzureOrgVpcPeeringConnectionTimeouts; /** * The name of the Azure VNet. */ readonly vnetName: string; } /** * Gets information about an Azure VPC peering connection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getAzureOrgVpcPeeringConnection({ * organizationId: "org1a23f456789", * organizationVpcId: "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", * azureSubscriptionId: "12345678-1234-1234-1234-123456789012", * vnetName: "my-vnet", * peerResourceGroup: "my-resource-group", * }); * ``` */ export declare function getAzureOrgVpcPeeringConnectionOutput(args: GetAzureOrgVpcPeeringConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAzureOrgVpcPeeringConnection. */ export interface GetAzureOrgVpcPeeringConnectionOutputArgs { /** * The ID of the Azure subscription in UUID4 format. */ azureSubscriptionId: pulumi.Input; /** * ID of an organization. */ organizationId: pulumi.Input; /** * Organization VPC ID. */ organizationVpcId: pulumi.Input; /** * The name of the Azure resource group associated with the VNet. */ peerResourceGroup: pulumi.Input; timeouts?: pulumi.Input; /** * The name of the Azure VNet. */ vnetName: pulumi.Input; } //# sourceMappingURL=getAzureOrgVpcPeeringConnection.d.ts.map