1. Packages
  2. Azure Native
  3. API Docs
  4. integrationspaces
  5. ApplicationResource
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.43.0 published on Thursday, May 30, 2024 by Pulumi

azure-native.integrationspaces.ApplicationResource

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.43.0 published on Thursday, May 30, 2024 by Pulumi

    A resource under application. Azure REST API version: 2023-11-14-preview.

    Example Usage

    CreateOrUpdateApplicationResource

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var applicationResource = new AzureNative.IntegrationSpaces.ApplicationResource("applicationResource", new()
        {
            ApplicationName = "Application1",
            ResourceGroupName = "testrg",
            ResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/sites/LogicApp1",
            ResourceKind = "LogicApp",
            ResourceName = "Resource1",
            ResourceType = "Microsoft.Web/sites",
            SpaceName = "Space1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/integrationspaces/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := integrationspaces.NewApplicationResource(ctx, "applicationResource", &integrationspaces.ApplicationResourceArgs{
    			ApplicationName:   pulumi.String("Application1"),
    			ResourceGroupName: pulumi.String("testrg"),
    			ResourceId:        pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/sites/LogicApp1"),
    			ResourceKind:      pulumi.String("LogicApp"),
    			ResourceName:      pulumi.String("Resource1"),
    			ResourceType:      pulumi.String("Microsoft.Web/sites"),
    			SpaceName:         pulumi.String("Space1"),
    		})
    		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.azurenative.integrationspaces.ApplicationResource;
    import com.pulumi.azurenative.integrationspaces.ApplicationResourceArgs;
    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 applicationResource = new ApplicationResource("applicationResource", ApplicationResourceArgs.builder()
                .applicationName("Application1")
                .resourceGroupName("testrg")
                .resourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/sites/LogicApp1")
                .resourceKind("LogicApp")
                .resourceName("Resource1")
                .resourceType("Microsoft.Web/sites")
                .spaceName("Space1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    application_resource = azure_native.integrationspaces.ApplicationResource("applicationResource",
        application_name="Application1",
        resource_group_name="testrg",
        resource_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/sites/LogicApp1",
        resource_kind="LogicApp",
        resource_name_="Resource1",
        resource_type="Microsoft.Web/sites",
        space_name="Space1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const applicationResource = new azure_native.integrationspaces.ApplicationResource("applicationResource", {
        applicationName: "Application1",
        resourceGroupName: "testrg",
        resourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/sites/LogicApp1",
        resourceKind: "LogicApp",
        resourceName: "Resource1",
        resourceType: "Microsoft.Web/sites",
        spaceName: "Space1",
    });
    
    resources:
      applicationResource:
        type: azure-native:integrationspaces:ApplicationResource
        properties:
          applicationName: Application1
          resourceGroupName: testrg
          resourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Web/sites/LogicApp1
          resourceKind: LogicApp
          resourceName: Resource1
          resourceType: Microsoft.Web/sites
          spaceName: Space1
    

    Create ApplicationResource Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ApplicationResource(name: string, args: ApplicationResourceArgs, opts?: CustomResourceOptions);
    @overload
    def ApplicationResource(resource_name: str,
                            args: ApplicationResourceArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ApplicationResource(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            application_name: Optional[str] = None,
                            resource_group_name: Optional[str] = None,
                            resource_id: Optional[str] = None,
                            resource_type: Optional[str] = None,
                            space_name: Optional[str] = None,
                            resource_kind: Optional[str] = None,
                            resource_name_: Optional[str] = None)
    func NewApplicationResource(ctx *Context, name string, args ApplicationResourceArgs, opts ...ResourceOption) (*ApplicationResource, error)
    public ApplicationResource(string name, ApplicationResourceArgs args, CustomResourceOptions? opts = null)
    public ApplicationResource(String name, ApplicationResourceArgs args)
    public ApplicationResource(String name, ApplicationResourceArgs args, CustomResourceOptions options)
    
    type: azure-native:integrationspaces:ApplicationResource
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ApplicationResourceArgs
    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 ApplicationResourceArgs
    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 ApplicationResourceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplicationResourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplicationResourceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var applicationResourceResource = new AzureNative.IntegrationSpaces.ApplicationResource("applicationResourceResource", new()
    {
        ApplicationName = "string",
        ResourceGroupName = "string",
        ResourceId = "string",
        ResourceType = "string",
        SpaceName = "string",
        ResourceKind = "string",
        ResourceName = "string",
    });
    
    example, err := integrationspaces.NewApplicationResource(ctx, "applicationResourceResource", &integrationspaces.ApplicationResourceArgs{
    ApplicationName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    ResourceId: pulumi.String("string"),
    ResourceType: pulumi.String("string"),
    SpaceName: pulumi.String("string"),
    ResourceKind: pulumi.String("string"),
    ResourceName: pulumi.String("string"),
    })
    
    var applicationResourceResource = new ApplicationResource("applicationResourceResource", ApplicationResourceArgs.builder()        
        .applicationName("string")
        .resourceGroupName("string")
        .resourceId("string")
        .resourceType("string")
        .spaceName("string")
        .resourceKind("string")
        .resourceName("string")
        .build());
    
    application_resource_resource = azure_native.integrationspaces.ApplicationResource("applicationResourceResource",
        application_name="string",
        resource_group_name="string",
        resource_id="string",
        resource_type="string",
        space_name="string",
        resource_kind="string",
        resource_name_="string")
    
    const applicationResourceResource = new azure_native.integrationspaces.ApplicationResource("applicationResourceResource", {
        applicationName: "string",
        resourceGroupName: "string",
        resourceId: "string",
        resourceType: "string",
        spaceName: "string",
        resourceKind: "string",
        resourceName: "string",
    });
    
    type: azure-native:integrationspaces:ApplicationResource
    properties:
        applicationName: string
        resourceGroupName: string
        resourceId: string
        resourceKind: string
        resourceName: string
        resourceType: string
        spaceName: string
    

    ApplicationResource 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 ApplicationResource resource accepts the following input properties:

    ApplicationName string
    The name of the Application
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ResourceId string
    The Arm id of the application resource.
    ResourceType string
    The type of the application resource.
    SpaceName string
    The name of the space
    ResourceKind string
    The kind of the application resource.
    ResourceName string
    The name of the application resource.
    ApplicationName string
    The name of the Application
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ResourceId string
    The Arm id of the application resource.
    ResourceType string
    The type of the application resource.
    SpaceName string
    The name of the space
    ResourceKind string
    The kind of the application resource.
    ResourceName string
    The name of the application resource.
    applicationName String
    The name of the Application
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    resourceId String
    The Arm id of the application resource.
    resourceType String
    The type of the application resource.
    spaceName String
    The name of the space
    resourceKind String
    The kind of the application resource.
    resourceName String
    The name of the application resource.
    applicationName string
    The name of the Application
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    resourceId string
    The Arm id of the application resource.
    resourceType string
    The type of the application resource.
    spaceName string
    The name of the space
    resourceKind string
    The kind of the application resource.
    resourceName string
    The name of the application resource.
    application_name str
    The name of the Application
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    resource_id str
    The Arm id of the application resource.
    resource_type str
    The type of the application resource.
    space_name str
    The name of the space
    resource_kind str
    The kind of the application resource.
    resource_name str
    The name of the application resource.
    applicationName String
    The name of the Application
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    resourceId String
    The Arm id of the application resource.
    resourceType String
    The type of the application resource.
    spaceName String
    The name of the space
    resourceKind String
    The kind of the application resource.
    resourceName String
    The name of the application resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ApplicationResource resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData Pulumi.AzureNative.IntegrationSpaces.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    The status of the last operation.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:integrationspaces:ApplicationResource Resource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IntegrationSpaces/spaces/{spaceName}/applications/{applicationName}/resources/{resourceName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.43.0 published on Thursday, May 30, 2024 by Pulumi