1. Packages
  2. Azure Native
  3. API Docs
  4. providerhub
  5. AuthorizedApplication
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

azure-native.providerhub.AuthorizedApplication

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

    Uses Azure REST API version 2024-09-01.

    Example Usage

    AuthorizedApplications_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var authorizedApplication = new AzureNative.ProviderHub.AuthorizedApplication("authorizedApplication", new()
        {
            ApplicationId = "760505bf-dcfa-4311-b890-18da392a00b2",
            Properties = new AzureNative.ProviderHub.Inputs.AuthorizedApplicationPropertiesArgs
            {
                DataAuthorizations = new[]
                {
                    new AzureNative.ProviderHub.Inputs.ApplicationDataAuthorizationArgs
                    {
                        ResourceTypes = new[]
                        {
                            "*",
                        },
                        Role = AzureNative.ProviderHub.Role.ServiceOwner,
                    },
                },
                ProviderAuthorization = new AzureNative.ProviderHub.Inputs.ApplicationProviderAuthorizationArgs
                {
                    ManagedByRoleDefinitionId = "1a3b5c7d-8e9f-10g1-1h12-i13j14k1",
                    RoleDefinitionId = "123456bf-gkur-2098-b890-98da392a00b2",
                },
            },
            ProviderNamespace = "Microsoft.Contoso",
        });
    
    });
    
    package main
    
    import (
    	providerhub "github.com/pulumi/pulumi-azure-native-sdk/providerhub/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := providerhub.NewAuthorizedApplication(ctx, "authorizedApplication", &providerhub.AuthorizedApplicationArgs{
    			ApplicationId: pulumi.String("760505bf-dcfa-4311-b890-18da392a00b2"),
    			Properties: &providerhub.AuthorizedApplicationPropertiesArgs{
    				DataAuthorizations: providerhub.ApplicationDataAuthorizationArray{
    					&providerhub.ApplicationDataAuthorizationArgs{
    						ResourceTypes: pulumi.StringArray{
    							pulumi.String("*"),
    						},
    						Role: pulumi.String(providerhub.RoleServiceOwner),
    					},
    				},
    				ProviderAuthorization: &providerhub.ApplicationProviderAuthorizationArgs{
    					ManagedByRoleDefinitionId: pulumi.String("1a3b5c7d-8e9f-10g1-1h12-i13j14k1"),
    					RoleDefinitionId:          pulumi.String("123456bf-gkur-2098-b890-98da392a00b2"),
    				},
    			},
    			ProviderNamespace: pulumi.String("Microsoft.Contoso"),
    		})
    		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.providerhub.AuthorizedApplication;
    import com.pulumi.azurenative.providerhub.AuthorizedApplicationArgs;
    import com.pulumi.azurenative.providerhub.inputs.AuthorizedApplicationPropertiesArgs;
    import com.pulumi.azurenative.providerhub.inputs.ApplicationProviderAuthorizationArgs;
    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 authorizedApplication = new AuthorizedApplication("authorizedApplication", AuthorizedApplicationArgs.builder()
                .applicationId("760505bf-dcfa-4311-b890-18da392a00b2")
                .properties(AuthorizedApplicationPropertiesArgs.builder()
                    .dataAuthorizations(ApplicationDataAuthorizationArgs.builder()
                        .resourceTypes("*")
                        .role("ServiceOwner")
                        .build())
                    .providerAuthorization(ApplicationProviderAuthorizationArgs.builder()
                        .managedByRoleDefinitionId("1a3b5c7d-8e9f-10g1-1h12-i13j14k1")
                        .roleDefinitionId("123456bf-gkur-2098-b890-98da392a00b2")
                        .build())
                    .build())
                .providerNamespace("Microsoft.Contoso")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const authorizedApplication = new azure_native.providerhub.AuthorizedApplication("authorizedApplication", {
        applicationId: "760505bf-dcfa-4311-b890-18da392a00b2",
        properties: {
            dataAuthorizations: [{
                resourceTypes: ["*"],
                role: azure_native.providerhub.Role.ServiceOwner,
            }],
            providerAuthorization: {
                managedByRoleDefinitionId: "1a3b5c7d-8e9f-10g1-1h12-i13j14k1",
                roleDefinitionId: "123456bf-gkur-2098-b890-98da392a00b2",
            },
        },
        providerNamespace: "Microsoft.Contoso",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    authorized_application = azure_native.providerhub.AuthorizedApplication("authorizedApplication",
        application_id="760505bf-dcfa-4311-b890-18da392a00b2",
        properties={
            "data_authorizations": [{
                "resource_types": ["*"],
                "role": azure_native.providerhub.Role.SERVICE_OWNER,
            }],
            "provider_authorization": {
                "managed_by_role_definition_id": "1a3b5c7d-8e9f-10g1-1h12-i13j14k1",
                "role_definition_id": "123456bf-gkur-2098-b890-98da392a00b2",
            },
        },
        provider_namespace="Microsoft.Contoso")
    
    resources:
      authorizedApplication:
        type: azure-native:providerhub:AuthorizedApplication
        properties:
          applicationId: 760505bf-dcfa-4311-b890-18da392a00b2
          properties:
            dataAuthorizations:
              - resourceTypes:
                  - '*'
                role: ServiceOwner
            providerAuthorization:
              managedByRoleDefinitionId: 1a3b5c7d-8e9f-10g1-1h12-i13j14k1
              roleDefinitionId: 123456bf-gkur-2098-b890-98da392a00b2
          providerNamespace: Microsoft.Contoso
    

    Create AuthorizedApplication Resource

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

    Constructor syntax

    new AuthorizedApplication(name: string, args: AuthorizedApplicationArgs, opts?: CustomResourceOptions);
    @overload
    def AuthorizedApplication(resource_name: str,
                              args: AuthorizedApplicationArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def AuthorizedApplication(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              provider_namespace: Optional[str] = None,
                              application_id: Optional[str] = None,
                              properties: Optional[AuthorizedApplicationPropertiesArgs] = None)
    func NewAuthorizedApplication(ctx *Context, name string, args AuthorizedApplicationArgs, opts ...ResourceOption) (*AuthorizedApplication, error)
    public AuthorizedApplication(string name, AuthorizedApplicationArgs args, CustomResourceOptions? opts = null)
    public AuthorizedApplication(String name, AuthorizedApplicationArgs args)
    public AuthorizedApplication(String name, AuthorizedApplicationArgs args, CustomResourceOptions options)
    
    type: azure-native:providerhub:AuthorizedApplication
    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 AuthorizedApplicationArgs
    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 AuthorizedApplicationArgs
    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 AuthorizedApplicationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AuthorizedApplicationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AuthorizedApplicationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var authorizedApplicationResource = new AzureNative.ProviderHub.AuthorizedApplication("authorizedApplicationResource", new()
    {
        ProviderNamespace = "string",
        ApplicationId = "string",
        Properties = new AzureNative.ProviderHub.Inputs.AuthorizedApplicationPropertiesArgs
        {
            DataAuthorizations = new[]
            {
                new AzureNative.ProviderHub.Inputs.ApplicationDataAuthorizationArgs
                {
                    Role = "string",
                    ResourceTypes = new[]
                    {
                        "string",
                    },
                },
            },
            ProviderAuthorization = new AzureNative.ProviderHub.Inputs.ApplicationProviderAuthorizationArgs
            {
                ManagedByRoleDefinitionId = "string",
                RoleDefinitionId = "string",
            },
        },
    });
    
    example, err := providerhub.NewAuthorizedApplication(ctx, "authorizedApplicationResource", &providerhub.AuthorizedApplicationArgs{
    	ProviderNamespace: pulumi.String("string"),
    	ApplicationId:     pulumi.String("string"),
    	Properties: &providerhub.AuthorizedApplicationPropertiesArgs{
    		DataAuthorizations: providerhub.ApplicationDataAuthorizationArray{
    			&providerhub.ApplicationDataAuthorizationArgs{
    				Role: pulumi.String("string"),
    				ResourceTypes: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    			},
    		},
    		ProviderAuthorization: &providerhub.ApplicationProviderAuthorizationArgs{
    			ManagedByRoleDefinitionId: pulumi.String("string"),
    			RoleDefinitionId:          pulumi.String("string"),
    		},
    	},
    })
    
    var authorizedApplicationResource = new AuthorizedApplication("authorizedApplicationResource", AuthorizedApplicationArgs.builder()
        .providerNamespace("string")
        .applicationId("string")
        .properties(AuthorizedApplicationPropertiesArgs.builder()
            .dataAuthorizations(ApplicationDataAuthorizationArgs.builder()
                .role("string")
                .resourceTypes("string")
                .build())
            .providerAuthorization(ApplicationProviderAuthorizationArgs.builder()
                .managedByRoleDefinitionId("string")
                .roleDefinitionId("string")
                .build())
            .build())
        .build());
    
    authorized_application_resource = azure_native.providerhub.AuthorizedApplication("authorizedApplicationResource",
        provider_namespace="string",
        application_id="string",
        properties={
            "data_authorizations": [{
                "role": "string",
                "resource_types": ["string"],
            }],
            "provider_authorization": {
                "managed_by_role_definition_id": "string",
                "role_definition_id": "string",
            },
        })
    
    const authorizedApplicationResource = new azure_native.providerhub.AuthorizedApplication("authorizedApplicationResource", {
        providerNamespace: "string",
        applicationId: "string",
        properties: {
            dataAuthorizations: [{
                role: "string",
                resourceTypes: ["string"],
            }],
            providerAuthorization: {
                managedByRoleDefinitionId: "string",
                roleDefinitionId: "string",
            },
        },
    });
    
    type: azure-native:providerhub:AuthorizedApplication
    properties:
        applicationId: string
        properties:
            dataAuthorizations:
                - resourceTypes:
                    - string
                  role: string
            providerAuthorization:
                managedByRoleDefinitionId: string
                roleDefinitionId: string
        providerNamespace: string
    

    AuthorizedApplication Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AuthorizedApplication resource accepts the following input properties:

    ProviderNamespace string
    The name of the resource provider hosted within ProviderHub.
    ApplicationId string
    The application ID.
    Properties Pulumi.AzureNative.ProviderHub.Inputs.AuthorizedApplicationProperties
    ProviderNamespace string
    The name of the resource provider hosted within ProviderHub.
    ApplicationId string
    The application ID.
    Properties AuthorizedApplicationPropertiesArgs
    providerNamespace String
    The name of the resource provider hosted within ProviderHub.
    applicationId String
    The application ID.
    properties AuthorizedApplicationProperties
    providerNamespace string
    The name of the resource provider hosted within ProviderHub.
    applicationId string
    The application ID.
    properties AuthorizedApplicationProperties
    provider_namespace str
    The name of the resource provider hosted within ProviderHub.
    application_id str
    The application ID.
    properties AuthorizedApplicationPropertiesArgs
    providerNamespace String
    The name of the resource provider hosted within ProviderHub.
    applicationId String
    The application ID.
    properties Property Map

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.ProviderHub.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"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    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"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    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"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    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

    ApplicationDataAuthorization, ApplicationDataAuthorizationArgs

    Role string | Pulumi.AzureNative.ProviderHub.Role
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    ResourceTypes List<string>
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
    Role string | Role
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    ResourceTypes []string
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
    role String | Role
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    resourceTypes List<String>
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
    role string | Role
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    resourceTypes string[]
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
    role str | Role
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    resource_types Sequence[str]
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
    role String | "ServiceOwner" | "LimitedOwner"
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    resourceTypes List<String>
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types

    ApplicationDataAuthorizationResponse, ApplicationDataAuthorizationResponseArgs

    Role string
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    ResourceTypes List<string>
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
    Role string
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    ResourceTypes []string
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
    role String
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    resourceTypes List<String>
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
    role string
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    resourceTypes string[]
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
    role str
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    resource_types Sequence[str]
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types
    role String
    The ownership role the application has on the resource types. The service owner role gives the application owner permissions. The limited owner role gives elevated permissions but does not allow all the permissions of a service owner, such as read/write on internal metadata.
    resourceTypes List<String>
    The resource types from the defined resource types in the provider namespace that the application can access. If no resource types are specified and the role is service owner, the default is * which is all resource types

    ApplicationProviderAuthorization, ApplicationProviderAuthorizationArgs

    ManagedByRoleDefinitionId string
    The managed by role definition ID for the application.
    RoleDefinitionId string
    The role definition ID for the application.
    ManagedByRoleDefinitionId string
    The managed by role definition ID for the application.
    RoleDefinitionId string
    The role definition ID for the application.
    managedByRoleDefinitionId String
    The managed by role definition ID for the application.
    roleDefinitionId String
    The role definition ID for the application.
    managedByRoleDefinitionId string
    The managed by role definition ID for the application.
    roleDefinitionId string
    The role definition ID for the application.
    managed_by_role_definition_id str
    The managed by role definition ID for the application.
    role_definition_id str
    The role definition ID for the application.
    managedByRoleDefinitionId String
    The managed by role definition ID for the application.
    roleDefinitionId String
    The role definition ID for the application.

    ApplicationProviderAuthorizationResponse, ApplicationProviderAuthorizationResponseArgs

    ManagedByRoleDefinitionId string
    The managed by role definition ID for the application.
    RoleDefinitionId string
    The role definition ID for the application.
    ManagedByRoleDefinitionId string
    The managed by role definition ID for the application.
    RoleDefinitionId string
    The role definition ID for the application.
    managedByRoleDefinitionId String
    The managed by role definition ID for the application.
    roleDefinitionId String
    The role definition ID for the application.
    managedByRoleDefinitionId string
    The managed by role definition ID for the application.
    roleDefinitionId string
    The role definition ID for the application.
    managed_by_role_definition_id str
    The managed by role definition ID for the application.
    role_definition_id str
    The role definition ID for the application.
    managedByRoleDefinitionId String
    The managed by role definition ID for the application.
    roleDefinitionId String
    The role definition ID for the application.

    AuthorizedApplicationProperties, AuthorizedApplicationPropertiesArgs

    DataAuthorizations []ApplicationDataAuthorization
    The authorizations that determine the level of data access permissions on the specified resource types.
    ProviderAuthorization ApplicationProviderAuthorization
    dataAuthorizations List<ApplicationDataAuthorization>
    The authorizations that determine the level of data access permissions on the specified resource types.
    providerAuthorization ApplicationProviderAuthorization
    dataAuthorizations ApplicationDataAuthorization[]
    The authorizations that determine the level of data access permissions on the specified resource types.
    providerAuthorization ApplicationProviderAuthorization
    data_authorizations Sequence[ApplicationDataAuthorization]
    The authorizations that determine the level of data access permissions on the specified resource types.
    provider_authorization ApplicationProviderAuthorization
    dataAuthorizations List<Property Map>
    The authorizations that determine the level of data access permissions on the specified resource types.
    providerAuthorization Property Map

    AuthorizedApplicationPropertiesResponse, AuthorizedApplicationPropertiesResponseArgs

    ProvisioningState string
    The provisioning state.
    DataAuthorizations []ApplicationDataAuthorizationResponse
    The authorizations that determine the level of data access permissions on the specified resource types.
    ProviderAuthorization ApplicationProviderAuthorizationResponse
    provisioningState String
    The provisioning state.
    dataAuthorizations List<ApplicationDataAuthorizationResponse>
    The authorizations that determine the level of data access permissions on the specified resource types.
    providerAuthorization ApplicationProviderAuthorizationResponse
    provisioningState string
    The provisioning state.
    dataAuthorizations ApplicationDataAuthorizationResponse[]
    The authorizations that determine the level of data access permissions on the specified resource types.
    providerAuthorization ApplicationProviderAuthorizationResponse
    provisioning_state str
    The provisioning state.
    data_authorizations Sequence[ApplicationDataAuthorizationResponse]
    The authorizations that determine the level of data access permissions on the specified resource types.
    provider_authorization ApplicationProviderAuthorizationResponse
    provisioningState String
    The provisioning state.
    dataAuthorizations List<Property Map>
    The authorizations that determine the level of data access permissions on the specified resource types.
    providerAuthorization Property Map

    Role, RoleArgs

    ServiceOwner
    ServiceOwner
    LimitedOwner
    LimitedOwner
    RoleServiceOwner
    ServiceOwner
    RoleLimitedOwner
    LimitedOwner
    ServiceOwner
    ServiceOwner
    LimitedOwner
    LimitedOwner
    ServiceOwner
    ServiceOwner
    LimitedOwner
    LimitedOwner
    SERVICE_OWNER
    ServiceOwner
    LIMITED_OWNER
    LimitedOwner
    "ServiceOwner"
    ServiceOwner
    "LimitedOwner"
    LimitedOwner

    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:providerhub:AuthorizedApplication Microsoft.Contoso/760505bf-dcfa-4311-b890-18da392a00b2 /subscriptions/{subscriptionId}/providers/Microsoft.ProviderHub/providerRegistrations/{providerNamespace}/authorizedApplications/{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 v2 docs if using the v2 version of this package.
    Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi