1. Packages
  2. Azure Native
  3. API Docs
  4. security
  5. Application
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.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.security.Application

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.37.0 published on Monday, Apr 15, 2024 by Pulumi

    Security Application over a given scope Azure REST API version: 2022-07-01-preview. Prior API version in Azure Native 1.x: 2022-07-01-preview.

    Example Usage

    Create application

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var application = new AzureNative.Security.Application("application", new()
        {
            ApplicationId = "ad9a8e26-29d9-4829-bb30-e597a58cdbb8",
            Description = "An application on critical recommendations",
            DisplayName = "Admin's application",
            SourceResourceType = AzureNative.Security.ApplicationSourceResourceType.Assessments,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/security/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := security.NewApplication(ctx, "application", &security.ApplicationArgs{
    			ApplicationId:      pulumi.String("ad9a8e26-29d9-4829-bb30-e597a58cdbb8"),
    			Description:        pulumi.String("An application on critical recommendations"),
    			DisplayName:        pulumi.String("Admin's application"),
    			SourceResourceType: pulumi.String(security.ApplicationSourceResourceTypeAssessments),
    		})
    		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.security.Application;
    import com.pulumi.azurenative.security.ApplicationArgs;
    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 application = new Application("application", ApplicationArgs.builder()        
                .applicationId("ad9a8e26-29d9-4829-bb30-e597a58cdbb8")
                .description("An application on critical recommendations")
                .displayName("Admin's application")
                .sourceResourceType("Assessments")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    application = azure_native.security.Application("application",
        application_id="ad9a8e26-29d9-4829-bb30-e597a58cdbb8",
        description="An application on critical recommendations",
        display_name="Admin's application",
        source_resource_type=azure_native.security.ApplicationSourceResourceType.ASSESSMENTS)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const application = new azure_native.security.Application("application", {
        applicationId: "ad9a8e26-29d9-4829-bb30-e597a58cdbb8",
        description: "An application on critical recommendations",
        displayName: "Admin's application",
        sourceResourceType: azure_native.security.ApplicationSourceResourceType.Assessments,
    });
    
    resources:
      application:
        type: azure-native:security:Application
        properties:
          applicationId: ad9a8e26-29d9-4829-bb30-e597a58cdbb8
          description: An application on critical recommendations
          displayName: Admin's application
          sourceResourceType: Assessments
    

    Create Application Resource

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

    Constructor syntax

    new Application(name: string, args: ApplicationArgs, opts?: CustomResourceOptions);
    @overload
    def Application(resource_name: str,
                    args: ApplicationArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Application(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    source_resource_type: Optional[Union[str, ApplicationSourceResourceType]] = None,
                    application_id: Optional[str] = None,
                    description: Optional[str] = None,
                    display_name: Optional[str] = None)
    func NewApplication(ctx *Context, name string, args ApplicationArgs, opts ...ResourceOption) (*Application, error)
    public Application(string name, ApplicationArgs args, CustomResourceOptions? opts = null)
    public Application(String name, ApplicationArgs args)
    public Application(String name, ApplicationArgs args, CustomResourceOptions options)
    
    type: azure-native:security:Application
    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 ApplicationArgs
    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 ApplicationArgs
    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 ApplicationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplicationArgs
    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 exampleapplicationResourceResourceFromSecurity = new AzureNative.Security.Application("exampleapplicationResourceResourceFromSecurity", new()
    {
        SourceResourceType = "string",
        ApplicationId = "string",
        Description = "string",
        DisplayName = "string",
    });
    
    example, err := security.NewApplication(ctx, "exampleapplicationResourceResourceFromSecurity", &security.ApplicationArgs{
    SourceResourceType: pulumi.String("string"),
    ApplicationId: pulumi.String("string"),
    Description: pulumi.String("string"),
    DisplayName: pulumi.String("string"),
    })
    
    var exampleapplicationResourceResourceFromSecurity = new Application("exampleapplicationResourceResourceFromSecurity", ApplicationArgs.builder()        
        .sourceResourceType("string")
        .applicationId("string")
        .description("string")
        .displayName("string")
        .build());
    
    exampleapplication_resource_resource_from_security = azure_native.security.Application("exampleapplicationResourceResourceFromSecurity",
        source_resource_type="string",
        application_id="string",
        description="string",
        display_name="string")
    
    const exampleapplicationResourceResourceFromSecurity = new azure_native.security.Application("exampleapplicationResourceResourceFromSecurity", {
        sourceResourceType: "string",
        applicationId: "string",
        description: "string",
        displayName: "string",
    });
    
    type: azure-native:security:Application
    properties:
        applicationId: string
        description: string
        displayName: string
        sourceResourceType: string
    

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

    SourceResourceType string | Pulumi.AzureNative.Security.ApplicationSourceResourceType
    The application source, what it affects, e.g. Assessments
    ApplicationId string
    The security Application key - unique key for the standard application
    Description string
    description of the application
    DisplayName string
    display name of the application
    SourceResourceType string | ApplicationSourceResourceType
    The application source, what it affects, e.g. Assessments
    ApplicationId string
    The security Application key - unique key for the standard application
    Description string
    description of the application
    DisplayName string
    display name of the application
    sourceResourceType String | ApplicationSourceResourceType
    The application source, what it affects, e.g. Assessments
    applicationId String
    The security Application key - unique key for the standard application
    description String
    description of the application
    displayName String
    display name of the application
    sourceResourceType string | ApplicationSourceResourceType
    The application source, what it affects, e.g. Assessments
    applicationId string
    The security Application key - unique key for the standard application
    description string
    description of the application
    displayName string
    display name of the application
    source_resource_type str | ApplicationSourceResourceType
    The application source, what it affects, e.g. Assessments
    application_id str
    The security Application key - unique key for the standard application
    description str
    description of the application
    display_name str
    display name of the application
    sourceResourceType String | "Assessments"
    The application source, what it affects, e.g. Assessments
    applicationId String
    The security Application key - unique key for the standard application
    description String
    description of the application
    displayName String
    display name of the application

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name
    Type string
    Resource type
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name
    Type string
    Resource type
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name
    type String
    Resource type
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Resource name
    type string
    Resource type
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Resource name
    type str
    Resource type
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name
    type String
    Resource type

    Supporting Types

    ApplicationSourceResourceType, ApplicationSourceResourceTypeArgs

    Assessments
    AssessmentsThe source of the application is assessments
    ApplicationSourceResourceTypeAssessments
    AssessmentsThe source of the application is assessments
    Assessments
    AssessmentsThe source of the application is assessments
    Assessments
    AssessmentsThe source of the application is assessments
    ASSESSMENTS
    AssessmentsThe source of the application is assessments
    "Assessments"
    AssessmentsThe source of the application is assessments

    Import

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

    $ pulumi import azure-native:security:Application 1f3afdf9-d0c9-4c3d-847f-89da613e70a8 /subscriptions/{subscriptionId}/providers/Microsoft.Security/applications/{applicationId} 
    

    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.37.0 published on Monday, Apr 15, 2024 by Pulumi