azure-native.apimanagement.WorkspaceGroupUser
Explore with Pulumi AI
User details. Azure REST API version: 2022-09-01-preview.
Other available API versions: 2023-03-01-preview, 2023-05-01-preview, 2023-09-01-preview, 2024-05-01, 2024-06-01-preview.
Example Usage
ApiManagementCreateWorkspaceGroupUser
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var workspaceGroupUser = new AzureNative.ApiManagement.WorkspaceGroupUser("workspaceGroupUser", new()
    {
        GroupId = "tempgroup",
        ResourceGroupName = "rg1",
        ServiceName = "apimService1",
        UserId = "59307d350af58404d8a26300",
        WorkspaceId = "wks1",
    });
});
package main
import (
	apimanagement "github.com/pulumi/pulumi-azure-native-sdk/apimanagement/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := apimanagement.NewWorkspaceGroupUser(ctx, "workspaceGroupUser", &apimanagement.WorkspaceGroupUserArgs{
			GroupId:           pulumi.String("tempgroup"),
			ResourceGroupName: pulumi.String("rg1"),
			ServiceName:       pulumi.String("apimService1"),
			UserId:            pulumi.String("59307d350af58404d8a26300"),
			WorkspaceId:       pulumi.String("wks1"),
		})
		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.apimanagement.WorkspaceGroupUser;
import com.pulumi.azurenative.apimanagement.WorkspaceGroupUserArgs;
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 workspaceGroupUser = new WorkspaceGroupUser("workspaceGroupUser", WorkspaceGroupUserArgs.builder()
            .groupId("tempgroup")
            .resourceGroupName("rg1")
            .serviceName("apimService1")
            .userId("59307d350af58404d8a26300")
            .workspaceId("wks1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workspaceGroupUser = new azure_native.apimanagement.WorkspaceGroupUser("workspaceGroupUser", {
    groupId: "tempgroup",
    resourceGroupName: "rg1",
    serviceName: "apimService1",
    userId: "59307d350af58404d8a26300",
    workspaceId: "wks1",
});
import pulumi
import pulumi_azure_native as azure_native
workspace_group_user = azure_native.apimanagement.WorkspaceGroupUser("workspaceGroupUser",
    group_id="tempgroup",
    resource_group_name="rg1",
    service_name="apimService1",
    user_id="59307d350af58404d8a26300",
    workspace_id="wks1")
resources:
  workspaceGroupUser:
    type: azure-native:apimanagement:WorkspaceGroupUser
    properties:
      groupId: tempgroup
      resourceGroupName: rg1
      serviceName: apimService1
      userId: 59307d350af58404d8a26300
      workspaceId: wks1
Create WorkspaceGroupUser Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkspaceGroupUser(name: string, args: WorkspaceGroupUserArgs, opts?: CustomResourceOptions);@overload
def WorkspaceGroupUser(resource_name: str,
                       args: WorkspaceGroupUserArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def WorkspaceGroupUser(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       group_id: Optional[str] = None,
                       resource_group_name: Optional[str] = None,
                       service_name: Optional[str] = None,
                       workspace_id: Optional[str] = None,
                       user_id: Optional[str] = None)func NewWorkspaceGroupUser(ctx *Context, name string, args WorkspaceGroupUserArgs, opts ...ResourceOption) (*WorkspaceGroupUser, error)public WorkspaceGroupUser(string name, WorkspaceGroupUserArgs args, CustomResourceOptions? opts = null)
public WorkspaceGroupUser(String name, WorkspaceGroupUserArgs args)
public WorkspaceGroupUser(String name, WorkspaceGroupUserArgs args, CustomResourceOptions options)
type: azure-native:apimanagement:WorkspaceGroupUser
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 WorkspaceGroupUserArgs
- 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 WorkspaceGroupUserArgs
- 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 WorkspaceGroupUserArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceGroupUserArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceGroupUserArgs
- 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 workspaceGroupUserResource = new AzureNative.ApiManagement.WorkspaceGroupUser("workspaceGroupUserResource", new()
{
    GroupId = "string",
    ResourceGroupName = "string",
    ServiceName = "string",
    WorkspaceId = "string",
    UserId = "string",
});
example, err := apimanagement.NewWorkspaceGroupUser(ctx, "workspaceGroupUserResource", &apimanagement.WorkspaceGroupUserArgs{
	GroupId:           pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	ServiceName:       pulumi.String("string"),
	WorkspaceId:       pulumi.String("string"),
	UserId:            pulumi.String("string"),
})
var workspaceGroupUserResource = new WorkspaceGroupUser("workspaceGroupUserResource", WorkspaceGroupUserArgs.builder()
    .groupId("string")
    .resourceGroupName("string")
    .serviceName("string")
    .workspaceId("string")
    .userId("string")
    .build());
workspace_group_user_resource = azure_native.apimanagement.WorkspaceGroupUser("workspaceGroupUserResource",
    group_id="string",
    resource_group_name="string",
    service_name="string",
    workspace_id="string",
    user_id="string")
const workspaceGroupUserResource = new azure_native.apimanagement.WorkspaceGroupUser("workspaceGroupUserResource", {
    groupId: "string",
    resourceGroupName: "string",
    serviceName: "string",
    workspaceId: "string",
    userId: "string",
});
type: azure-native:apimanagement:WorkspaceGroupUser
properties:
    groupId: string
    resourceGroupName: string
    serviceName: string
    userId: string
    workspaceId: string
WorkspaceGroupUser 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 WorkspaceGroupUser resource accepts the following input properties:
- GroupId string
- Group identifier. Must be unique in the current API Management service instance.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ServiceName string
- The name of the API Management service.
- WorkspaceId string
- Workspace identifier. Must be unique in the current API Management service instance.
- UserId string
- User identifier. Must be unique in the current API Management service instance.
- GroupId string
- Group identifier. Must be unique in the current API Management service instance.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ServiceName string
- The name of the API Management service.
- WorkspaceId string
- Workspace identifier. Must be unique in the current API Management service instance.
- UserId string
- User identifier. Must be unique in the current API Management service instance.
- groupId String
- Group identifier. Must be unique in the current API Management service instance.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- serviceName String
- The name of the API Management service.
- workspaceId String
- Workspace identifier. Must be unique in the current API Management service instance.
- userId String
- User identifier. Must be unique in the current API Management service instance.
- groupId string
- Group identifier. Must be unique in the current API Management service instance.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- serviceName string
- The name of the API Management service.
- workspaceId string
- Workspace identifier. Must be unique in the current API Management service instance.
- userId string
- User identifier. Must be unique in the current API Management service instance.
- group_id str
- Group identifier. Must be unique in the current API Management service instance.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- service_name str
- The name of the API Management service.
- workspace_id str
- Workspace identifier. Must be unique in the current API Management service instance.
- user_id str
- User identifier. Must be unique in the current API Management service instance.
- groupId String
- Group identifier. Must be unique in the current API Management service instance.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- serviceName String
- The name of the API Management service.
- workspaceId String
- Workspace identifier. Must be unique in the current API Management service instance.
- userId String
- User identifier. Must be unique in the current API Management service instance.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkspaceGroupUser resource produces the following output properties:
- Groups
List<Pulumi.Azure Native. Api Management. Outputs. Group Contract Properties Response> 
- Collection of groups user is part of.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Email string
- Email address.
- FirstName string
- First name.
- Identities
List<Pulumi.Azure Native. Api Management. Outputs. User Identity Contract Response> 
- Collection of user identities.
- LastName string
- Last name.
- Note string
- Optional note about a user set by the administrator.
- RegistrationDate string
- Date of user registration. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- State string
- Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.
- Groups
[]GroupContract Properties Response 
- Collection of groups user is part of.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Email string
- Email address.
- FirstName string
- First name.
- Identities
[]UserIdentity Contract Response 
- Collection of user identities.
- LastName string
- Last name.
- Note string
- Optional note about a user set by the administrator.
- RegistrationDate string
- Date of user registration. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- State string
- Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.
- groups
List<GroupContract Properties Response> 
- Collection of groups user is part of.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- email String
- Email address.
- firstName String
- First name.
- identities
List<UserIdentity Contract Response> 
- Collection of user identities.
- lastName String
- Last name.
- note String
- Optional note about a user set by the administrator.
- registrationDate String
- Date of user registration. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- state String
- Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.
- groups
GroupContract Properties Response[] 
- Collection of groups user is part of.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- email string
- Email address.
- firstName string
- First name.
- identities
UserIdentity Contract Response[] 
- Collection of user identities.
- lastName string
- Last name.
- note string
- Optional note about a user set by the administrator.
- registrationDate string
- Date of user registration. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- state string
- Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.
- groups
Sequence[GroupContract Properties Response] 
- Collection of groups user is part of.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- email str
- Email address.
- first_name str
- First name.
- identities
Sequence[UserIdentity Contract Response] 
- Collection of user identities.
- last_name str
- Last name.
- note str
- Optional note about a user set by the administrator.
- registration_date str
- Date of user registration. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- state str
- Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.
- groups List<Property Map>
- Collection of groups user is part of.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- email String
- Email address.
- firstName String
- First name.
- identities List<Property Map>
- Collection of user identities.
- lastName String
- Last name.
- note String
- Optional note about a user set by the administrator.
- registrationDate String
- Date of user registration. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZas specified by the ISO 8601 standard.
- state String
- Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.
Supporting Types
GroupContractPropertiesResponse, GroupContractPropertiesResponseArgs        
- BuiltIn bool
- true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false.
- DisplayName string
- Group name.
- Description string
- Group description. Can contain HTML formatting tags.
- ExternalId string
- For external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://<tenant>.onmicrosoft.com/groups/<group object id>; otherwise the value is null.
- Type string
- Group type.
- BuiltIn bool
- true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false.
- DisplayName string
- Group name.
- Description string
- Group description. Can contain HTML formatting tags.
- ExternalId string
- For external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://<tenant>.onmicrosoft.com/groups/<group object id>; otherwise the value is null.
- Type string
- Group type.
- builtIn Boolean
- true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false.
- displayName String
- Group name.
- description String
- Group description. Can contain HTML formatting tags.
- externalId String
- For external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://<tenant>.onmicrosoft.com/groups/<group object id>; otherwise the value is null.
- type String
- Group type.
- builtIn boolean
- true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false.
- displayName string
- Group name.
- description string
- Group description. Can contain HTML formatting tags.
- externalId string
- For external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://<tenant>.onmicrosoft.com/groups/<group object id>; otherwise the value is null.
- type string
- Group type.
- built_in bool
- true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false.
- display_name str
- Group name.
- description str
- Group description. Can contain HTML formatting tags.
- external_id str
- For external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://<tenant>.onmicrosoft.com/groups/<group object id>; otherwise the value is null.
- type str
- Group type.
- builtIn Boolean
- true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false.
- displayName String
- Group name.
- description String
- Group description. Can contain HTML formatting tags.
- externalId String
- For external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://<tenant>.onmicrosoft.com/groups/<group object id>; otherwise the value is null.
- type String
- Group type.
UserIdentityContractResponse, UserIdentityContractResponseArgs        
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:apimanagement:WorkspaceGroupUser 59307d350af58404d8a26300 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/workspaces/{workspaceId}/groups/{groupId}/users/{userId} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0