1. Packages
  2. Azure Native
  3. API Docs
  4. devcenter
  5. PlanMember
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.40.0 published on Monday, May 6, 2024 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 v1 docs if using the v1 version of this package.
Azure Native v2.40.0 published on Monday, May 6, 2024 by Pulumi

    Represents a devcenter plan member resource. Azure REST API version: 2024-05-01-preview.

    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" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/devcenter/v2"
    	"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"),
    			},
    		})
    		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"))
                .build());
    
        }
    }
    
    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",
        })
    
    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",
        },
    });
    
    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'
    

    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)
    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.

    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" },
        },
    });
    
    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"),
    },
    })
    
    var planMemberResource = new PlanMember("planMemberResource", PlanMemberArgs.builder()        
        .planName("string")
        .resourceGroupName("string")
        .memberId("string")
        .memberName("string")
        .memberType("string")
        .tags(Map.of("string", "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",
        })
    
    const planMemberResource = new azure_native.devcenter.PlanMember("planMemberResource", {
        planName: "string",
        resourceGroupName: "string",
        memberId: "string",
        memberName: "string",
        memberType: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:devcenter:PlanMember
    properties:
        memberId: string
        memberName: string
        memberType: string
        planName: string
        resourceGroupName: string
        tags:
            string: 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

    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.
    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.
    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.
    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.
    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.
    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.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The provisioning state of the resource.
    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"
    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.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The provisioning state 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"
    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.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    The provisioning state 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"
    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.
    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

    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 v1 docs if using the v1 version of this package.
    Azure Native v2.40.0 published on Monday, May 6, 2024 by Pulumi