azure-native.devcenter.PlanMember
Explore with Pulumi AI
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:
- Plan
Name string - The name of the devcenter plan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Member
Id string - The unique id of the member.
- Member
Name string - The name of a devcenter plan member.
- Member
Type string | Pulumi.Azure Native. Dev Center. Plan Member Type - The type of the member (user, group)
- Dictionary<string, string>
- Resource tags.
- Tier string
- The tier of the member.
- Plan
Name string - The name of the devcenter plan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Member
Id string - The unique id of the member.
- Member
Name string - The name of a devcenter plan member.
- Member
Type string | PlanMember Type - The type of the member (user, group)
- map[string]string
- Resource tags.
- Tier string
- The tier of the member.
- plan
Name String - The name of the devcenter plan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- member
Id String - The unique id of the member.
- member
Name String - The name of a devcenter plan member.
- member
Type String | PlanMember Type - The type of the member (user, group)
- Map<String,String>
- Resource tags.
- tier String
- The tier of the member.
- plan
Name string - The name of the devcenter plan.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- member
Id string - The unique id of the member.
- member
Name string - The name of a devcenter plan member.
- member
Type string | PlanMember Type - The type of the member (user, group)
- {[key: string]: string}
- Resource tags.
- tier string
- The tier of the member.
- plan_
name str - The name of the devcenter plan.
- resource_
group_ strname - 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 | PlanMember Type - The type of the member (user, group)
- Mapping[str, str]
- Resource tags.
- tier str
- The tier of the member.
- plan
Name String - The name of the devcenter plan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- member
Id String - The unique id of the member.
- member
Name String - The name of a devcenter plan member.
- member
Type String | "User" | "Group" - The type of the member (user, group)
- 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:
- Azure
Api stringVersion - 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
- Provisioning
State string - The provisioning state of the resource.
- Sync
Status Pulumi.Azure Native. Dev Center. Outputs. Plan Member Sync Status Response - The sync status of the member.
- System
Data Pulumi.Azure Native. Dev Center. Outputs. System Data Response - 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 stringVersion - 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
- Provisioning
State string - The provisioning state of the resource.
- Sync
Status PlanMember Sync Status Response - The sync status of the member.
- System
Data SystemData Response - 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 StringVersion - 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
- provisioning
State String - The provisioning state of the resource.
- sync
Status PlanMember Sync Status Response - The sync status of the member.
- system
Data SystemData Response - 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 stringVersion - 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
- provisioning
State string - The provisioning state of the resource.
- sync
Status PlanMember Sync Status Response - The sync status of the member.
- system
Data SystemData Response - 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_ strversion - 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 PlanMember Sync Status Response - The sync status of the member.
- system_
data SystemData Response - 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"
- azure
Api StringVersion - 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
- provisioning
State String - The provisioning state of the resource.
- sync
Status Property Map - The sync status of the member.
- system
Data 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
ErrorDetailResponse, ErrorDetailResponseArgs
- Additional
Info List<Pulumi.Azure Native. Dev Center. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Dev Center. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info 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
- Last
Sync stringTime - When the plan member was last synced.
- Sync
State string - The synchronization state of the plan member.
- Last
Sync Pulumi.Error Azure Native. Dev Center. Inputs. Error Detail Response - Error response describing why the sync failed.
- Last
Sync stringTime - When the plan member was last synced.
- Sync
State string - The synchronization state of the plan member.
- Last
Sync ErrorError Detail Response - Error response describing why the sync failed.
- last
Sync StringTime - When the plan member was last synced.
- sync
State String - The synchronization state of the plan member.
- last
Sync ErrorError Detail Response - Error response describing why the sync failed.
- last
Sync stringTime - When the plan member was last synced.
- sync
State string - The synchronization state of the plan member.
- last
Sync ErrorError Detail Response - Error response describing why the sync failed.
- last_
sync_ strtime - When the plan member was last synced.
- sync_
state str - The synchronization state of the plan member.
- last_
sync_ Errorerror Detail Response - Error response describing why the sync failed.
- last
Sync StringTime - When the plan member was last synced.
- sync
State String - The synchronization state of the plan member.
- last
Sync Property MapError - Error response describing why the sync failed.
PlanMemberType, PlanMemberTypeArgs
- User
- User
- Group
- Group
- Plan
Member Type User - User
- Plan
Member Type Group - Group
- User
- User
- Group
- Group
- User
- User
- Group
- Group
- USER
- User
- GROUP
- Group
- "User"
- User
- "Group"
- Group
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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 stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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