1. Packages
  2. Linode
  3. API Docs
  4. getUser
Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi

linode.getUser

Explore with Pulumi AI

linode logo
Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Provides information about a Linode user

    Example Usage

    The following example shows how one might use this data source to access information about a Linode user.

    import * as pulumi from "@pulumi/pulumi";
    import * as linode from "@pulumi/linode";
    
    const foo = linode.getUser({
        username: "foo",
    });
    
    import pulumi
    import pulumi_linode as linode
    
    foo = linode.get_user(username="foo")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := linode.LookupUser(ctx, &linode.LookupUserArgs{
    			Username: "foo",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Linode = Pulumi.Linode;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = Linode.GetUser.Invoke(new()
        {
            Username = "foo",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.linode.LinodeFunctions;
    import com.pulumi.linode.inputs.GetUserArgs;
    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) {
            final var foo = LinodeFunctions.getUser(GetUserArgs.builder()
                .username("foo")
                .build());
    
        }
    }
    
    variables:
      foo:
        fn::invoke:
          Function: linode:getUser
          Arguments:
            username: foo
    

    The following example shows a sample grant.

    Using getUser

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getUser(args: GetUserArgs, opts?: InvokeOptions): Promise<GetUserResult>
    function getUserOutput(args: GetUserOutputArgs, opts?: InvokeOptions): Output<GetUserResult>
    def get_user(database_grants: Optional[Sequence[GetUserDatabaseGrant]] = None,
                 domain_grants: Optional[Sequence[GetUserDomainGrant]] = None,
                 firewall_grants: Optional[Sequence[GetUserFirewallGrant]] = None,
                 image_grants: Optional[Sequence[GetUserImageGrant]] = None,
                 linode_grants: Optional[Sequence[GetUserLinodeGrant]] = None,
                 longview_grants: Optional[Sequence[GetUserLongviewGrant]] = None,
                 nodebalancer_grants: Optional[Sequence[GetUserNodebalancerGrant]] = None,
                 stackscript_grants: Optional[Sequence[GetUserStackscriptGrant]] = None,
                 username: Optional[str] = None,
                 volume_grants: Optional[Sequence[GetUserVolumeGrant]] = None,
                 opts: Optional[InvokeOptions] = None) -> GetUserResult
    def get_user_output(database_grants: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserDatabaseGrantArgs]]]] = None,
                 domain_grants: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserDomainGrantArgs]]]] = None,
                 firewall_grants: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserFirewallGrantArgs]]]] = None,
                 image_grants: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserImageGrantArgs]]]] = None,
                 linode_grants: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserLinodeGrantArgs]]]] = None,
                 longview_grants: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserLongviewGrantArgs]]]] = None,
                 nodebalancer_grants: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserNodebalancerGrantArgs]]]] = None,
                 stackscript_grants: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserStackscriptGrantArgs]]]] = None,
                 username: Optional[pulumi.Input[str]] = None,
                 volume_grants: Optional[pulumi.Input[Sequence[pulumi.Input[GetUserVolumeGrantArgs]]]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetUserResult]
    func LookupUser(ctx *Context, args *LookupUserArgs, opts ...InvokeOption) (*LookupUserResult, error)
    func LookupUserOutput(ctx *Context, args *LookupUserOutputArgs, opts ...InvokeOption) LookupUserResultOutput

    > Note: This function is named LookupUser in the Go SDK.

    public static class GetUser 
    {
        public static Task<GetUserResult> InvokeAsync(GetUserArgs args, InvokeOptions? opts = null)
        public static Output<GetUserResult> Invoke(GetUserInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetUserResult> getUser(GetUserArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: linode:index/getUser:getUser
      arguments:
        # arguments dictionary

    The following arguments are supported:

    getUser Result

    The following output properties are available:

    DatabaseGrants List<GetUserDatabaseGrant>
    DomainGrants List<GetUserDomainGrant>
    Email string
    The email address for this User, for account management communications, and may be used for other communications as configured.
    FirewallGrants List<GetUserFirewallGrant>
    GlobalGrants List<GetUserGlobalGrant>
    Id string
    The ID of entity this grant applies to.
    ImageGrants List<GetUserImageGrant>
    LinodeGrants List<GetUserLinodeGrant>
    LongviewGrants List<GetUserLongviewGrant>
    NodebalancerGrants List<GetUserNodebalancerGrant>
    PasswordCreated string
    The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
    Restricted bool
    If true, this User must be granted access to perform actions or access entities on this Account.
    SshKeys List<string>
    A list of SSH Key labels added by this User. These are the keys that will be deployed if this User is included in the authorized_users field of a create Linode, rebuild Linode, or create Disk request.
    StackscriptGrants List<GetUserStackscriptGrant>
    TfaEnabled bool
    A boolean value indicating if the User has Two Factor Authentication (TFA) enabled.
    Username string
    VerifiedPhoneNumber string
    The phone number verified for this User Profile with the Phone Number Verify command. null if this User Profile has no verified phone number.
    VolumeGrants List<GetUserVolumeGrant>
    DatabaseGrants []GetUserDatabaseGrant
    DomainGrants []GetUserDomainGrant
    Email string
    The email address for this User, for account management communications, and may be used for other communications as configured.
    FirewallGrants []GetUserFirewallGrant
    GlobalGrants []GetUserGlobalGrant
    Id string
    The ID of entity this grant applies to.
    ImageGrants []GetUserImageGrant
    LinodeGrants []GetUserLinodeGrant
    LongviewGrants []GetUserLongviewGrant
    NodebalancerGrants []GetUserNodebalancerGrant
    PasswordCreated string
    The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
    Restricted bool
    If true, this User must be granted access to perform actions or access entities on this Account.
    SshKeys []string
    A list of SSH Key labels added by this User. These are the keys that will be deployed if this User is included in the authorized_users field of a create Linode, rebuild Linode, or create Disk request.
    StackscriptGrants []GetUserStackscriptGrant
    TfaEnabled bool
    A boolean value indicating if the User has Two Factor Authentication (TFA) enabled.
    Username string
    VerifiedPhoneNumber string
    The phone number verified for this User Profile with the Phone Number Verify command. null if this User Profile has no verified phone number.
    VolumeGrants []GetUserVolumeGrant
    databaseGrants List<GetUserDatabaseGrant>
    domainGrants List<GetUserDomainGrant>
    email String
    The email address for this User, for account management communications, and may be used for other communications as configured.
    firewallGrants List<GetUserFirewallGrant>
    globalGrants List<GetUserGlobalGrant>
    id String
    The ID of entity this grant applies to.
    imageGrants List<GetUserImageGrant>
    linodeGrants List<GetUserLinodeGrant>
    longviewGrants List<GetUserLongviewGrant>
    nodebalancerGrants List<GetUserNodebalancerGrant>
    passwordCreated String
    The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
    restricted Boolean
    If true, this User must be granted access to perform actions or access entities on this Account.
    sshKeys List<String>
    A list of SSH Key labels added by this User. These are the keys that will be deployed if this User is included in the authorized_users field of a create Linode, rebuild Linode, or create Disk request.
    stackscriptGrants List<GetUserStackscriptGrant>
    tfaEnabled Boolean
    A boolean value indicating if the User has Two Factor Authentication (TFA) enabled.
    username String
    verifiedPhoneNumber String
    The phone number verified for this User Profile with the Phone Number Verify command. null if this User Profile has no verified phone number.
    volumeGrants List<GetUserVolumeGrant>
    databaseGrants GetUserDatabaseGrant[]
    domainGrants GetUserDomainGrant[]
    email string
    The email address for this User, for account management communications, and may be used for other communications as configured.
    firewallGrants GetUserFirewallGrant[]
    globalGrants GetUserGlobalGrant[]
    id string
    The ID of entity this grant applies to.
    imageGrants GetUserImageGrant[]
    linodeGrants GetUserLinodeGrant[]
    longviewGrants GetUserLongviewGrant[]
    nodebalancerGrants GetUserNodebalancerGrant[]
    passwordCreated string
    The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
    restricted boolean
    If true, this User must be granted access to perform actions or access entities on this Account.
    sshKeys string[]
    A list of SSH Key labels added by this User. These are the keys that will be deployed if this User is included in the authorized_users field of a create Linode, rebuild Linode, or create Disk request.
    stackscriptGrants GetUserStackscriptGrant[]
    tfaEnabled boolean
    A boolean value indicating if the User has Two Factor Authentication (TFA) enabled.
    username string
    verifiedPhoneNumber string
    The phone number verified for this User Profile with the Phone Number Verify command. null if this User Profile has no verified phone number.
    volumeGrants GetUserVolumeGrant[]
    database_grants Sequence[GetUserDatabaseGrant]
    domain_grants Sequence[GetUserDomainGrant]
    email str
    The email address for this User, for account management communications, and may be used for other communications as configured.
    firewall_grants Sequence[GetUserFirewallGrant]
    global_grants Sequence[GetUserGlobalGrant]
    id str
    The ID of entity this grant applies to.
    image_grants Sequence[GetUserImageGrant]
    linode_grants Sequence[GetUserLinodeGrant]
    longview_grants Sequence[GetUserLongviewGrant]
    nodebalancer_grants Sequence[GetUserNodebalancerGrant]
    password_created str
    The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
    restricted bool
    If true, this User must be granted access to perform actions or access entities on this Account.
    ssh_keys Sequence[str]
    A list of SSH Key labels added by this User. These are the keys that will be deployed if this User is included in the authorized_users field of a create Linode, rebuild Linode, or create Disk request.
    stackscript_grants Sequence[GetUserStackscriptGrant]
    tfa_enabled bool
    A boolean value indicating if the User has Two Factor Authentication (TFA) enabled.
    username str
    verified_phone_number str
    The phone number verified for this User Profile with the Phone Number Verify command. null if this User Profile has no verified phone number.
    volume_grants Sequence[GetUserVolumeGrant]
    databaseGrants List<Property Map>
    domainGrants List<Property Map>
    email String
    The email address for this User, for account management communications, and may be used for other communications as configured.
    firewallGrants List<Property Map>
    globalGrants List<Property Map>
    id String
    The ID of entity this grant applies to.
    imageGrants List<Property Map>
    linodeGrants List<Property Map>
    longviewGrants List<Property Map>
    nodebalancerGrants List<Property Map>
    passwordCreated String
    The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
    restricted Boolean
    If true, this User must be granted access to perform actions or access entities on this Account.
    sshKeys List<String>
    A list of SSH Key labels added by this User. These are the keys that will be deployed if this User is included in the authorized_users field of a create Linode, rebuild Linode, or create Disk request.
    stackscriptGrants List<Property Map>
    tfaEnabled Boolean
    A boolean value indicating if the User has Two Factor Authentication (TFA) enabled.
    username String
    verifiedPhoneNumber String
    The phone number verified for this User Profile with the Phone Number Verify command. null if this User Profile has no verified phone number.
    volumeGrants List<Property Map>

    Supporting Types

    GetUserDatabaseGrant

    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Integer
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id number
    The ID of entity this grant applies to.
    label string
    The current label of the entity this grant applies to, for display purposes.
    permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id int
    The ID of entity this grant applies to.
    label str
    The current label of the entity this grant applies to, for display purposes.
    permissions str
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Number
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)

    GetUserDomainGrant

    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Integer
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id number
    The ID of entity this grant applies to.
    label string
    The current label of the entity this grant applies to, for display purposes.
    permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id int
    The ID of entity this grant applies to.
    label str
    The current label of the entity this grant applies to, for display purposes.
    permissions str
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Number
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)

    GetUserFirewallGrant

    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Integer
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id number
    The ID of entity this grant applies to.
    label string
    The current label of the entity this grant applies to, for display purposes.
    permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id int
    The ID of entity this grant applies to.
    label str
    The current label of the entity this grant applies to, for display purposes.
    permissions str
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Number
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)

    GetUserGlobalGrant

    AccountAccess string
    The level of access this User has to Account-level actions, like billing information. A restricted User will never be able to manage users. (read_only, read_write)
    AddDatabases bool
    If true, this User may add Managed Databases.
    AddDomains bool
    If true, this User may add Domains.
    AddFirewalls bool
    If true, this User may add Firewalls.
    AddImages bool
    If true, this User may add Images.
    AddLinodes bool
    If true, this User may create Linodes.
    AddLongview bool
    If true, this User may create Longview clients and view the current plan.
    AddNodebalancers bool
    If true, this User may add NodeBalancers.
    AddStackscripts bool
    AddVolumes bool
    If true, this User may add Volumes.
    CancelAccount bool
    If true, this User may cancel the entire Account.
    LongviewSubscription bool
    If true, this User may manage the Account’s Longview subscription.
    AccountAccess string
    The level of access this User has to Account-level actions, like billing information. A restricted User will never be able to manage users. (read_only, read_write)
    AddDatabases bool
    If true, this User may add Managed Databases.
    AddDomains bool
    If true, this User may add Domains.
    AddFirewalls bool
    If true, this User may add Firewalls.
    AddImages bool
    If true, this User may add Images.
    AddLinodes bool
    If true, this User may create Linodes.
    AddLongview bool
    If true, this User may create Longview clients and view the current plan.
    AddNodebalancers bool
    If true, this User may add NodeBalancers.
    AddStackscripts bool
    AddVolumes bool
    If true, this User may add Volumes.
    CancelAccount bool
    If true, this User may cancel the entire Account.
    LongviewSubscription bool
    If true, this User may manage the Account’s Longview subscription.
    accountAccess String
    The level of access this User has to Account-level actions, like billing information. A restricted User will never be able to manage users. (read_only, read_write)
    addDatabases Boolean
    If true, this User may add Managed Databases.
    addDomains Boolean
    If true, this User may add Domains.
    addFirewalls Boolean
    If true, this User may add Firewalls.
    addImages Boolean
    If true, this User may add Images.
    addLinodes Boolean
    If true, this User may create Linodes.
    addLongview Boolean
    If true, this User may create Longview clients and view the current plan.
    addNodebalancers Boolean
    If true, this User may add NodeBalancers.
    addStackscripts Boolean
    addVolumes Boolean
    If true, this User may add Volumes.
    cancelAccount Boolean
    If true, this User may cancel the entire Account.
    longviewSubscription Boolean
    If true, this User may manage the Account’s Longview subscription.
    accountAccess string
    The level of access this User has to Account-level actions, like billing information. A restricted User will never be able to manage users. (read_only, read_write)
    addDatabases boolean
    If true, this User may add Managed Databases.
    addDomains boolean
    If true, this User may add Domains.
    addFirewalls boolean
    If true, this User may add Firewalls.
    addImages boolean
    If true, this User may add Images.
    addLinodes boolean
    If true, this User may create Linodes.
    addLongview boolean
    If true, this User may create Longview clients and view the current plan.
    addNodebalancers boolean
    If true, this User may add NodeBalancers.
    addStackscripts boolean
    addVolumes boolean
    If true, this User may add Volumes.
    cancelAccount boolean
    If true, this User may cancel the entire Account.
    longviewSubscription boolean
    If true, this User may manage the Account’s Longview subscription.
    account_access str
    The level of access this User has to Account-level actions, like billing information. A restricted User will never be able to manage users. (read_only, read_write)
    add_databases bool
    If true, this User may add Managed Databases.
    add_domains bool
    If true, this User may add Domains.
    add_firewalls bool
    If true, this User may add Firewalls.
    add_images bool
    If true, this User may add Images.
    add_linodes bool
    If true, this User may create Linodes.
    add_longview bool
    If true, this User may create Longview clients and view the current plan.
    add_nodebalancers bool
    If true, this User may add NodeBalancers.
    add_stackscripts bool
    add_volumes bool
    If true, this User may add Volumes.
    cancel_account bool
    If true, this User may cancel the entire Account.
    longview_subscription bool
    If true, this User may manage the Account’s Longview subscription.
    accountAccess String
    The level of access this User has to Account-level actions, like billing information. A restricted User will never be able to manage users. (read_only, read_write)
    addDatabases Boolean
    If true, this User may add Managed Databases.
    addDomains Boolean
    If true, this User may add Domains.
    addFirewalls Boolean
    If true, this User may add Firewalls.
    addImages Boolean
    If true, this User may add Images.
    addLinodes Boolean
    If true, this User may create Linodes.
    addLongview Boolean
    If true, this User may create Longview clients and view the current plan.
    addNodebalancers Boolean
    If true, this User may add NodeBalancers.
    addStackscripts Boolean
    addVolumes Boolean
    If true, this User may add Volumes.
    cancelAccount Boolean
    If true, this User may cancel the entire Account.
    longviewSubscription Boolean
    If true, this User may manage the Account’s Longview subscription.

    GetUserImageGrant

    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Integer
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id number
    The ID of entity this grant applies to.
    label string
    The current label of the entity this grant applies to, for display purposes.
    permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id int
    The ID of entity this grant applies to.
    label str
    The current label of the entity this grant applies to, for display purposes.
    permissions str
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Number
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)

    GetUserLinodeGrant

    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Integer
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id number
    The ID of entity this grant applies to.
    label string
    The current label of the entity this grant applies to, for display purposes.
    permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id int
    The ID of entity this grant applies to.
    label str
    The current label of the entity this grant applies to, for display purposes.
    permissions str
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Number
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)

    GetUserLongviewGrant

    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Integer
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id number
    The ID of entity this grant applies to.
    label string
    The current label of the entity this grant applies to, for display purposes.
    permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id int
    The ID of entity this grant applies to.
    label str
    The current label of the entity this grant applies to, for display purposes.
    permissions str
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Number
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)

    GetUserNodebalancerGrant

    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Integer
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id number
    The ID of entity this grant applies to.
    label string
    The current label of the entity this grant applies to, for display purposes.
    permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id int
    The ID of entity this grant applies to.
    label str
    The current label of the entity this grant applies to, for display purposes.
    permissions str
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Number
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)

    GetUserStackscriptGrant

    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Integer
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id number
    The ID of entity this grant applies to.
    label string
    The current label of the entity this grant applies to, for display purposes.
    permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id int
    The ID of entity this grant applies to.
    label str
    The current label of the entity this grant applies to, for display purposes.
    permissions str
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Number
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)

    GetUserVolumeGrant

    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    Id int
    The ID of entity this grant applies to.
    Label string
    The current label of the entity this grant applies to, for display purposes.
    Permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Integer
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id number
    The ID of entity this grant applies to.
    label string
    The current label of the entity this grant applies to, for display purposes.
    permissions string
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id int
    The ID of entity this grant applies to.
    label str
    The current label of the entity this grant applies to, for display purposes.
    permissions str
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)
    id Number
    The ID of entity this grant applies to.
    label String
    The current label of the entity this grant applies to, for display purposes.
    permissions String
    The level of access this User has to this entity. If null, this User has no access. (read_only, read_write)

    Package Details

    Repository
    Linode pulumi/pulumi-linode
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the linode Terraform Provider.
    linode logo
    Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi