1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. programenrollment
  6. EduEnrollment
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi
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.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi

    An education program enrollment that groups Entra domains under a single sovereign/edu program scope.

    Uses Azure REST API version 2026-03-01-preview.

    Example Usage

    Create or update an edu enrollment

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var eduEnrollment = new AzureNative.ProgramEnrollment.EduEnrollment("eduEnrollment", new()
        {
            EnrollmentName = "default",
            Location = "eastus",
            Properties = new AzureNative.ProgramEnrollment.Inputs.EduEnrollmentPropertiesArgs
            {
                Domains = new[]
                {
                    new AzureNative.ProgramEnrollment.Inputs.DomainGroupArgs
                    {
                        DomainNames = new[]
                        {
                            "university.edu",
                            "college.edu",
                        },
                        TenantId = "00000000-0000-0000-0000-000000000001",
                    },
                },
            },
            ResourceGroupName = "testrg",
        });
    
    });
    
    package main
    
    import (
    	programenrollment "github.com/pulumi/pulumi-azure-native-sdk/programenrollment/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := programenrollment.NewEduEnrollment(ctx, "eduEnrollment", &programenrollment.EduEnrollmentArgs{
    			EnrollmentName: pulumi.String("default"),
    			Location:       pulumi.String("eastus"),
    			Properties: &programenrollment.EduEnrollmentPropertiesArgs{
    				Domains: programenrollment.DomainGroupArray{
    					&programenrollment.DomainGroupArgs{
    						DomainNames: pulumi.StringArray{
    							pulumi.String("university.edu"),
    							pulumi.String("college.edu"),
    						},
    						TenantId: pulumi.String("00000000-0000-0000-0000-000000000001"),
    					},
    				},
    			},
    			ResourceGroupName: pulumi.String("testrg"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_programenrollment_eduenrollment" "eduEnrollment" {
      enrollment_name = "default"
      location        = "eastus"
      properties = {
        domains = [{
          "domainNames" = ["university.edu", "college.edu"]
          "tenantId"    = "00000000-0000-0000-0000-000000000001"
        }]
      }
      resource_group_name = "testrg"
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.programenrollment.EduEnrollment;
    import com.pulumi.azurenative.programenrollment.EduEnrollmentArgs;
    import com.pulumi.azurenative.programenrollment.inputs.EduEnrollmentPropertiesArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 eduEnrollment = new EduEnrollment("eduEnrollment", EduEnrollmentArgs.builder()
                .enrollmentName("default")
                .location("eastus")
                .properties(EduEnrollmentPropertiesArgs.builder()
                    .domains(DomainGroupArgs.builder()
                        .domainNames(                    
                            "university.edu",
                            "college.edu")
                        .tenantId("00000000-0000-0000-0000-000000000001")
                        .build())
                    .build())
                .resourceGroupName("testrg")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const eduEnrollment = new azure_native.programenrollment.EduEnrollment("eduEnrollment", {
        enrollmentName: "default",
        location: "eastus",
        properties: {
            domains: [{
                domainNames: [
                    "university.edu",
                    "college.edu",
                ],
                tenantId: "00000000-0000-0000-0000-000000000001",
            }],
        },
        resourceGroupName: "testrg",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    edu_enrollment = azure_native.programenrollment.EduEnrollment("eduEnrollment",
        enrollment_name="default",
        location="eastus",
        properties={
            "domains": [{
                "domain_names": [
                    "university.edu",
                    "college.edu",
                ],
                "tenant_id": "00000000-0000-0000-0000-000000000001",
            }],
        },
        resource_group_name="testrg")
    
    resources:
      eduEnrollment:
        type: azure-native:programenrollment:EduEnrollment
        properties:
          enrollmentName: default
          location: eastus
          properties:
            domains:
              - domainNames:
                  - university.edu
                  - college.edu
                tenantId: 00000000-0000-0000-0000-000000000001
          resourceGroupName: testrg
    

    Create EduEnrollment Resource

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

    Constructor syntax

    new EduEnrollment(name: string, args: EduEnrollmentArgs, opts?: CustomResourceOptions);
    @overload
    def EduEnrollment(resource_name: str,
                      args: EduEnrollmentArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def EduEnrollment(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      resource_group_name: Optional[str] = None,
                      enrollment_name: Optional[str] = None,
                      location: Optional[str] = None,
                      properties: Optional[EduEnrollmentPropertiesArgs] = None,
                      tags: Optional[Mapping[str, str]] = None)
    func NewEduEnrollment(ctx *Context, name string, args EduEnrollmentArgs, opts ...ResourceOption) (*EduEnrollment, error)
    public EduEnrollment(string name, EduEnrollmentArgs args, CustomResourceOptions? opts = null)
    public EduEnrollment(String name, EduEnrollmentArgs args)
    public EduEnrollment(String name, EduEnrollmentArgs args, CustomResourceOptions options)
    
    type: azure-native:programenrollment:EduEnrollment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_programenrollment_edu_enrollment" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args EduEnrollmentArgs
    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 EduEnrollmentArgs
    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 EduEnrollmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EduEnrollmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EduEnrollmentArgs
    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 eduEnrollmentResource = new AzureNative.ProgramEnrollment.EduEnrollment("eduEnrollmentResource", new()
    {
        ResourceGroupName = "string",
        EnrollmentName = "string",
        Location = "string",
        Properties = new AzureNative.ProgramEnrollment.Inputs.EduEnrollmentPropertiesArgs
        {
            Domains = new[]
            {
                new AzureNative.ProgramEnrollment.Inputs.DomainGroupArgs
                {
                    DomainNames = new[]
                    {
                        "string",
                    },
                    TenantId = "string",
                },
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := programenrollment.NewEduEnrollment(ctx, "eduEnrollmentResource", &programenrollment.EduEnrollmentArgs{
    	ResourceGroupName: pulumi.String("string"),
    	EnrollmentName:    pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Properties: &programenrollment.EduEnrollmentPropertiesArgs{
    		Domains: programenrollment.DomainGroupArray{
    			&programenrollment.DomainGroupArgs{
    				DomainNames: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				TenantId: pulumi.String("string"),
    			},
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    resource "azure-native_programenrollment_edu_enrollment" "eduEnrollmentResource" {
      lifecycle {
        create_before_destroy = true
      }
      resource_group_name = "string"
      enrollment_name     = "string"
      location            = "string"
      properties = {
        domains = [{
          domain_names = ["string"]
          tenant_id    = "string"
        }]
      }
      tags = {
        "string" = "string"
      }
    }
    
    var eduEnrollmentResource = new EduEnrollment("eduEnrollmentResource", EduEnrollmentArgs.builder()
        .resourceGroupName("string")
        .enrollmentName("string")
        .location("string")
        .properties(EduEnrollmentPropertiesArgs.builder()
            .domains(DomainGroupArgs.builder()
                .domainNames("string")
                .tenantId("string")
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    edu_enrollment_resource = azure_native.programenrollment.EduEnrollment("eduEnrollmentResource",
        resource_group_name="string",
        enrollment_name="string",
        location="string",
        properties={
            "domains": [{
                "domain_names": ["string"],
                "tenant_id": "string",
            }],
        },
        tags={
            "string": "string",
        })
    
    const eduEnrollmentResource = new azure_native.programenrollment.EduEnrollment("eduEnrollmentResource", {
        resourceGroupName: "string",
        enrollmentName: "string",
        location: "string",
        properties: {
            domains: [{
                domainNames: ["string"],
                tenantId: "string",
            }],
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:programenrollment:EduEnrollment
    properties:
        enrollmentName: string
        location: string
        properties:
            domains:
                - domainNames:
                    - string
                  tenantId: string
        resourceGroupName: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    EnrollmentName string
    The name of the edu enrollment
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.ProgramEnrollment.Inputs.EduEnrollmentProperties
    The resource-specific properties for this resource.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    EnrollmentName string
    The name of the edu enrollment
    Location string
    The geo-location where the resource lives
    Properties EduEnrollmentPropertiesArgs
    The resource-specific properties for this resource.
    Tags map[string]string
    Resource tags.
    resource_group_name string
    The name of the resource group. The name is case insensitive.
    enrollment_name string
    The name of the edu enrollment
    location string
    The geo-location where the resource lives
    properties object
    The resource-specific properties for this resource.
    tags map(string)
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    enrollmentName String
    The name of the edu enrollment
    location String
    The geo-location where the resource lives
    properties EduEnrollmentProperties
    The resource-specific properties for this resource.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    enrollmentName string
    The name of the edu enrollment
    location string
    The geo-location where the resource lives
    properties EduEnrollmentProperties
    The resource-specific properties for this resource.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    enrollment_name str
    The name of the edu enrollment
    location str
    The geo-location where the resource lives
    properties EduEnrollmentPropertiesArgs
    The resource-specific properties for this resource.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    enrollmentName String
    The name of the edu enrollment
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EduEnrollment 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.ProgramEnrollment.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"
    azure_api_version 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
    system_data object
    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

    DomainGroup, DomainGroupArgs

    A group of edu domains scoped to an Entra tenant.
    DomainNames List<string>
    The edu domain names in this group.
    TenantId string
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    DomainNames []string
    The edu domain names in this group.
    TenantId string
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    domain_names list(string)
    The edu domain names in this group.
    tenant_id string
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    domainNames List<String>
    The edu domain names in this group.
    tenantId String
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    domainNames string[]
    The edu domain names in this group.
    tenantId string
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    domain_names Sequence[str]
    The edu domain names in this group.
    tenant_id str
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    domainNames List<String>
    The edu domain names in this group.
    tenantId String
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.

    DomainGroupResponse, DomainGroupResponseArgs

    A group of edu domains scoped to an Entra tenant.
    DomainNames List<string>
    The edu domain names in this group.
    FailureReason Pulumi.AzureNative.ProgramEnrollment.Inputs.ErrorDetailResponse
    Failure detail when state is Failed or ActionRequired. Omitted otherwise.
    State string
    The assessment state of this domain group.
    TenantId string
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    DomainNames []string
    The edu domain names in this group.
    FailureReason ErrorDetailResponse
    Failure detail when state is Failed or ActionRequired. Omitted otherwise.
    State string
    The assessment state of this domain group.
    TenantId string
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    domain_names list(string)
    The edu domain names in this group.
    failure_reason object
    Failure detail when state is Failed or ActionRequired. Omitted otherwise.
    state string
    The assessment state of this domain group.
    tenant_id string
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    domainNames List<String>
    The edu domain names in this group.
    failureReason ErrorDetailResponse
    Failure detail when state is Failed or ActionRequired. Omitted otherwise.
    state String
    The assessment state of this domain group.
    tenantId String
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    domainNames string[]
    The edu domain names in this group.
    failureReason ErrorDetailResponse
    Failure detail when state is Failed or ActionRequired. Omitted otherwise.
    state string
    The assessment state of this domain group.
    tenantId string
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    domain_names Sequence[str]
    The edu domain names in this group.
    failure_reason ErrorDetailResponse
    Failure detail when state is Failed or ActionRequired. Omitted otherwise.
    state str
    The assessment state of this domain group.
    tenant_id str
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
    domainNames List<String>
    The edu domain names in this group.
    failureReason Property Map
    Failure detail when state is Failed or ActionRequired. Omitted otherwise.
    state String
    The assessment state of this domain group.
    tenantId String
    The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.

    EduEnrollmentProperties, EduEnrollmentPropertiesArgs

    Details of the Program EduEnrollment.
    Domains List<Pulumi.AzureNative.ProgramEnrollment.Inputs.DomainGroup>
    The domain groups associated with this enrollment.
    Domains []DomainGroup
    The domain groups associated with this enrollment.
    domains list(object)
    The domain groups associated with this enrollment.
    domains List<DomainGroup>
    The domain groups associated with this enrollment.
    domains DomainGroup[]
    The domain groups associated with this enrollment.
    domains Sequence[DomainGroup]
    The domain groups associated with this enrollment.
    domains List<Property Map>
    The domain groups associated with this enrollment.

    EduEnrollmentPropertiesResponse, EduEnrollmentPropertiesResponseArgs

    Details of the Program EduEnrollment.
    Domains List<Pulumi.AzureNative.ProgramEnrollment.Inputs.DomainGroupResponse>
    The domain groups associated with this enrollment.
    FailureReason Pulumi.AzureNative.ProgramEnrollment.Inputs.ErrorDetailResponse
    Failure detail when provisioningState is Failed. Omitted otherwise.
    ProvisioningState string
    The status of the last operation.
    Domains []DomainGroupResponse
    The domain groups associated with this enrollment.
    FailureReason ErrorDetailResponse
    Failure detail when provisioningState is Failed. Omitted otherwise.
    ProvisioningState string
    The status of the last operation.
    domains list(object)
    The domain groups associated with this enrollment.
    failure_reason object
    Failure detail when provisioningState is Failed. Omitted otherwise.
    provisioning_state string
    The status of the last operation.
    domains List<DomainGroupResponse>
    The domain groups associated with this enrollment.
    failureReason ErrorDetailResponse
    Failure detail when provisioningState is Failed. Omitted otherwise.
    provisioningState String
    The status of the last operation.
    domains DomainGroupResponse[]
    The domain groups associated with this enrollment.
    failureReason ErrorDetailResponse
    Failure detail when provisioningState is Failed. Omitted otherwise.
    provisioningState string
    The status of the last operation.
    domains Sequence[DomainGroupResponse]
    The domain groups associated with this enrollment.
    failure_reason ErrorDetailResponse
    Failure detail when provisioningState is Failed. Omitted otherwise.
    provisioning_state str
    The status of the last operation.
    domains List<Property Map>
    The domain groups associated with this enrollment.
    failureReason Property Map
    Failure detail when provisioningState is Failed. Omitted otherwise.
    provisioningState String
    The status of the last operation.

    ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs

    The resource management error additional info.
    Info object
    The additional info.
    Type string
    The additional info type.
    Info interface{}
    The additional info.
    Type string
    The additional info type.
    info any
    The additional info.
    type string
    The additional info type.
    info Object
    The additional info.
    type String
    The additional info type.
    info any
    The additional info.
    type string
    The additional info type.
    info Any
    The additional info.
    type str
    The additional info type.
    info Any
    The additional info.
    type String
    The additional info type.

    ErrorDetailResponse, ErrorDetailResponseArgs

    The error detail.
    AdditionalInfo []ErrorAdditionalInfoResponse
    The error additional info.
    Code string
    The error code.
    Details []ErrorDetailResponse
    The error details.
    Message string
    The error message.
    Target string
    The error target.
    additional_info list(object)
    The error additional info.
    code string
    The error code.
    details list(object)
    The error details.
    message string
    The error message.
    target string
    The error target.
    additionalInfo List<ErrorAdditionalInfoResponse>
    The error additional info.
    code String
    The error code.
    details List<ErrorDetailResponse>
    The error details.
    message String
    The error message.
    target String
    The error target.
    additionalInfo ErrorAdditionalInfoResponse[]
    The error additional info.
    code string
    The error code.
    details ErrorDetailResponse[]
    The error details.
    message string
    The error message.
    target string
    The error target.
    additional_info Sequence[ErrorAdditionalInfoResponse]
    The error additional info.
    code str
    The error code.
    details Sequence[ErrorDetailResponse]
    The error details.
    message str
    The error message.
    target str
    The error target.
    additionalInfo List<Property Map>
    The error additional info.
    code String
    The error code.
    details List<Property Map>
    The error details.
    message String
    The error message.
    target String
    The error target.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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 string
    The timestamp of resource creation (UTC).
    created_by string
    The identity that created the resource.
    created_by_type string
    The type of identity that created the resource.
    last_modified_at string
    The timestamp of resource last modification (UTC)
    last_modified_by string
    The identity that last modified the resource.
    last_modified_by_type 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:programenrollment:EduEnrollment default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ProgramEnrollment/eduEnrollments/{enrollmentName} 
    

    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.
    Viewing docs for Azure Native v3.23.0
    published on Saturday, Jul 18, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial