1. Packages
  2. Azure Native
  3. API Docs
  4. devcenter
  5. PlanMember
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.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.devcenter.PlanMember

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.3.0 published on Monday, Apr 28, 2025 by Pulumi

    Represents a devcenter plan member resource.

    Uses Azure REST API version 2024-10-01-preview. In version 2.x of the Azure Native provider, it used API version 2024-05-01-preview.

    Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native devcenter [ApiVersion]. See the version guide for details.

    Example Usage

    Plans_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var planMember = new AzureNative.DevCenter.PlanMember("planMember", new()
        {
            MemberId = "d702f662-b3f2-4796-9e8c-13c22378ced3",
            MemberName = "d702f662-b3f2-4796-9e8c-13c22378ced3",
            MemberType = AzureNative.DevCenter.PlanMemberType.User,
            PlanName = "ContosoPlan",
            ResourceGroupName = "rg1",
            Tags = 
            {
                { "CostCode", "12345" },
            },
            Tier = "Standard",
        });
    
    });
    
    package main
    
    import (
    	devcenter "github.com/pulumi/pulumi-azure-native-sdk/devcenter/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := devcenter.NewPlanMember(ctx, "planMember", &devcenter.PlanMemberArgs{
    			MemberId:          pulumi.String("d702f662-b3f2-4796-9e8c-13c22378ced3"),
    			MemberName:        pulumi.String("d702f662-b3f2-4796-9e8c-13c22378ced3"),
    			MemberType:        pulumi.String(devcenter.PlanMemberTypeUser),
    			PlanName:          pulumi.String("ContosoPlan"),
    			ResourceGroupName: pulumi.String("rg1"),
    			Tags: pulumi.StringMap{
    				"CostCode": pulumi.String("12345"),
    			},
    			Tier: pulumi.String("Standard"),
    		})
    		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.devcenter.PlanMember;
    import com.pulumi.azurenative.devcenter.PlanMemberArgs;
    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 planMember = new PlanMember("planMember", PlanMemberArgs.builder()
                .memberId("d702f662-b3f2-4796-9e8c-13c22378ced3")
                .memberName("d702f662-b3f2-4796-9e8c-13c22378ced3")
                .memberType("User")
                .planName("ContosoPlan")
                .resourceGroupName("rg1")
                .tags(Map.of("CostCode", "12345"))
                .tier("Standard")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const planMember = new azure_native.devcenter.PlanMember("planMember", {
        memberId: "d702f662-b3f2-4796-9e8c-13c22378ced3",
        memberName: "d702f662-b3f2-4796-9e8c-13c22378ced3",
        memberType: azure_native.devcenter.PlanMemberType.User,
        planName: "ContosoPlan",
        resourceGroupName: "rg1",
        tags: {
            CostCode: "12345",
        },
        tier: "Standard",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    plan_member = azure_native.devcenter.PlanMember("planMember",
        member_id="d702f662-b3f2-4796-9e8c-13c22378ced3",
        member_name="d702f662-b3f2-4796-9e8c-13c22378ced3",
        member_type=azure_native.devcenter.PlanMemberType.USER,
        plan_name="ContosoPlan",
        resource_group_name="rg1",
        tags={
            "CostCode": "12345",
        },
        tier="Standard")
    
    resources:
      planMember:
        type: azure-native:devcenter:PlanMember
        properties:
          memberId: d702f662-b3f2-4796-9e8c-13c22378ced3
          memberName: d702f662-b3f2-4796-9e8c-13c22378ced3
          memberType: User
          planName: ContosoPlan
          resourceGroupName: rg1
          tags:
            CostCode: '12345'
          tier: Standard
    

    Create PlanMember Resource

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

    Constructor syntax

    new PlanMember(name: string, args: PlanMemberArgs, opts?: CustomResourceOptions);
    @overload
    def PlanMember(resource_name: str,
                   args: PlanMemberArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def PlanMember(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   plan_name: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   member_id: Optional[str] = None,
                   member_name: Optional[str] = None,
                   member_type: Optional[Union[str, PlanMemberType]] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   tier: Optional[str] = None)
    func NewPlanMember(ctx *Context, name string, args PlanMemberArgs, opts ...ResourceOption) (*PlanMember, error)
    public PlanMember(string name, PlanMemberArgs args, CustomResourceOptions? opts = null)
    public PlanMember(String name, PlanMemberArgs args)
    public PlanMember(String name, PlanMemberArgs args, CustomResourceOptions options)
    
    type: azure-native:devcenter:PlanMember
    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 PlanMemberArgs
    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 PlanMemberArgs
    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 PlanMemberArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PlanMemberArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PlanMemberArgs
    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 planMemberResource = new AzureNative.DevCenter.PlanMember("planMemberResource", new()
    {
        PlanName = "string",
        ResourceGroupName = "string",
        MemberId = "string",
        MemberName = "string",
        MemberType = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Tier = "string",
    });
    
    example, err := devcenter.NewPlanMember(ctx, "planMemberResource", &devcenter.PlanMemberArgs{
    	PlanName:          pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	MemberId:          pulumi.String("string"),
    	MemberName:        pulumi.String("string"),
    	MemberType:        pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Tier: pulumi.String("string"),
    })
    
    var planMemberResource = new PlanMember("planMemberResource", PlanMemberArgs.builder()
        .planName("string")
        .resourceGroupName("string")
        .memberId("string")
        .memberName("string")
        .memberType("string")
        .tags(Map.of("string", "string"))
        .tier("string")
        .build());
    
    plan_member_resource = azure_native.devcenter.PlanMember("planMemberResource",
        plan_name="string",
        resource_group_name="string",
        member_id="string",
        member_name="string",
        member_type="string",
        tags={
            "string": "string",
        },
        tier="string")
    
    const planMemberResource = new azure_native.devcenter.PlanMember("planMemberResource", {
        planName: "string",
        resourceGroupName: "string",
        memberId: "string",
        memberName: "string",
        memberType: "string",
        tags: {
            string: "string",
        },
        tier: "string",
    });
    
    type: azure-native:devcenter:PlanMember
    properties:
        memberId: string
        memberName: string
        memberType: string
        planName: string
        resourceGroupName: string
        tags:
            string: string
        tier: string
    

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

    PlanName string
    The name of the devcenter plan.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    MemberId string
    The unique id of the member.
    MemberName string
    The name of a devcenter plan member.
    MemberType string | Pulumi.AzureNative.DevCenter.PlanMemberType
    The type of the member (user, group)
    Tags Dictionary<string, string>
    Resource tags.
    Tier string
    The tier of the member.
    PlanName string
    The name of the devcenter plan.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    MemberId string
    The unique id of the member.
    MemberName string
    The name of a devcenter plan member.
    MemberType string | PlanMemberType
    The type of the member (user, group)
    Tags map[string]string
    Resource tags.
    Tier string
    The tier of the member.
    planName String
    The name of the devcenter plan.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    memberId String
    The unique id of the member.
    memberName String
    The name of a devcenter plan member.
    memberType String | PlanMemberType
    The type of the member (user, group)
    tags Map<String,String>
    Resource tags.
    tier String
    The tier of the member.
    planName string
    The name of the devcenter plan.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    memberId string
    The unique id of the member.
    memberName string
    The name of a devcenter plan member.
    memberType string | PlanMemberType
    The type of the member (user, group)
    tags {[key: string]: string}
    Resource tags.
    tier string
    The tier of the member.
    plan_name str
    The name of the devcenter plan.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    member_id str
    The unique id of the member.
    member_name str
    The name of a devcenter plan member.
    member_type str | PlanMemberType
    The type of the member (user, group)
    tags Mapping[str, str]
    Resource tags.
    tier str
    The tier of the member.
    planName String
    The name of the devcenter plan.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    memberId String
    The unique id of the member.
    memberName String
    The name of a devcenter plan member.
    memberType String | "User" | "Group"
    The type of the member (user, group)
    tags Map<String>
    Resource tags.
    tier String
    The tier of the member.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PlanMember 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
    ProvisioningState string
    The provisioning state of the resource.
    SyncStatus Pulumi.AzureNative.DevCenter.Outputs.PlanMemberSyncStatusResponse
    The sync status of the member.
    SystemData Pulumi.AzureNative.DevCenter.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
    ProvisioningState string
    The provisioning state of the resource.
    SyncStatus PlanMemberSyncStatusResponse
    The sync status of the member.
    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
    provisioningState String
    The provisioning state of the resource.
    syncStatus PlanMemberSyncStatusResponse
    The sync status of the member.
    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
    provisioningState string
    The provisioning state of the resource.
    syncStatus PlanMemberSyncStatusResponse
    The sync status of the member.
    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
    provisioning_state str
    The provisioning state of the resource.
    sync_status PlanMemberSyncStatusResponse
    The sync status of the member.
    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
    provisioningState String
    The provisioning state of the resource.
    syncStatus Property Map
    The sync status of the member.
    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

    ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs

    Info object
    The additional info.
    Type string
    The additional info type.
    Info interface{}
    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

    AdditionalInfo List<Pulumi.AzureNative.DevCenter.Inputs.ErrorAdditionalInfoResponse>
    The error additional info.
    Code string
    The error code.
    Details List<Pulumi.AzureNative.DevCenter.Inputs.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.
    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.

    PlanMemberSyncStatusResponse, PlanMemberSyncStatusResponseArgs

    LastSyncTime string
    When the plan member was last synced.
    SyncState string
    The synchronization state of the plan member.
    LastSyncError Pulumi.AzureNative.DevCenter.Inputs.ErrorDetailResponse
    Error response describing why the sync failed.
    LastSyncTime string
    When the plan member was last synced.
    SyncState string
    The synchronization state of the plan member.
    LastSyncError ErrorDetailResponse
    Error response describing why the sync failed.
    lastSyncTime String
    When the plan member was last synced.
    syncState String
    The synchronization state of the plan member.
    lastSyncError ErrorDetailResponse
    Error response describing why the sync failed.
    lastSyncTime string
    When the plan member was last synced.
    syncState string
    The synchronization state of the plan member.
    lastSyncError ErrorDetailResponse
    Error response describing why the sync failed.
    last_sync_time str
    When the plan member was last synced.
    sync_state str
    The synchronization state of the plan member.
    last_sync_error ErrorDetailResponse
    Error response describing why the sync failed.
    lastSyncTime String
    When the plan member was last synced.
    syncState String
    The synchronization state of the plan member.
    lastSyncError Property Map
    Error response describing why the sync failed.

    PlanMemberType, PlanMemberTypeArgs

    User
    User
    Group
    Group
    PlanMemberTypeUser
    User
    PlanMemberTypeGroup
    Group
    User
    User
    Group
    Group
    User
    User
    Group
    Group
    USER
    User
    GROUP
    Group
    "User"
    User
    "Group"
    Group

    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:devcenter:PlanMember d702f662-b3f2-4796-9e8c-13c22378ced3 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevCenter/plans/{planName}/members/{memberName} 
    

    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.3.0 published on Monday, Apr 28, 2025 by Pulumi