1. Packages
  2. FusionAuth
  3. API Docs
  4. FusionAuthEntity
FusionAuth v4.0.1 published on Saturday, Sep 30, 2023 by Theo Gravity

fusionauth.FusionAuthEntity

Explore with Pulumi AI

fusionauth logo
FusionAuth v4.0.1 published on Saturday, Sep 30, 2023 by Theo Gravity

    # Entity Resource

    Entities are arbitrary objects which can be modeled in FusionAuth. Anything which is not a user but might need permissions managed by FusionAuth is a possible entity. Examples might include devices, cars, computers, customers, companies, etc.

    FusionAuth’s Entity Management has the following major concepts:

    • Entity Types categorize Entities. An Entity Type could be Device, API or Company.
    • Permissions are defined on an Entity Type. These are arbitrary strings which can fit the business domain. A Permission could be read, write, or file-lawsuit.
    • Entities are instances of a single type. An Entity could be a nest device, an Email API or Raviga.
    • Entities can have Grants. Grants are relationships between a target Entity and one of two other types: a recipient Entity or a User. Grants can have zero or more Permissions associated with them.

    You can use the Client Credentials grant to see if an Entity has permission to access another Entity.

    Entity API

    Create FusionAuthEntity Resource

    new FusionAuthEntity(name: string, args: FusionAuthEntityArgs, opts?: CustomResourceOptions);
    @overload
    def FusionAuthEntity(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         client_id: Optional[str] = None,
                         client_secret: Optional[str] = None,
                         data: Optional[str] = None,
                         entity_id: Optional[str] = None,
                         entity_type_id: Optional[str] = None,
                         name: Optional[str] = None,
                         tenant_id: Optional[str] = None)
    @overload
    def FusionAuthEntity(resource_name: str,
                         args: FusionAuthEntityArgs,
                         opts: Optional[ResourceOptions] = None)
    func NewFusionAuthEntity(ctx *Context, name string, args FusionAuthEntityArgs, opts ...ResourceOption) (*FusionAuthEntity, error)
    public FusionAuthEntity(string name, FusionAuthEntityArgs args, CustomResourceOptions? opts = null)
    public FusionAuthEntity(String name, FusionAuthEntityArgs args)
    public FusionAuthEntity(String name, FusionAuthEntityArgs args, CustomResourceOptions options)
    
    type: fusionauth:FusionAuthEntity
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args FusionAuthEntityArgs
    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 FusionAuthEntityArgs
    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 FusionAuthEntityArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FusionAuthEntityArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FusionAuthEntityArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    EntityTypeId string
    The ID of the Entity Type. Types are consulted for permission checks.
    ClientId string
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    ClientSecret string
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    Data string
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    EntityId string
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    Name string
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    TenantId string
    The unique ID of the tenant used to scope this API request.
    EntityTypeId string
    The ID of the Entity Type. Types are consulted for permission checks.
    ClientId string
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    ClientSecret string
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    Data string
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    EntityId string
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    Name string
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    TenantId string
    The unique ID of the tenant used to scope this API request.
    entityTypeId String
    The ID of the Entity Type. Types are consulted for permission checks.
    clientId String
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    clientSecret String
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    data String
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    entityId String
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    name String
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    tenantId String
    The unique ID of the tenant used to scope this API request.
    entityTypeId string
    The ID of the Entity Type. Types are consulted for permission checks.
    clientId string
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    clientSecret string
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    data string
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    entityId string
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    name string
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    tenantId string
    The unique ID of the tenant used to scope this API request.
    entity_type_id str
    The ID of the Entity Type. Types are consulted for permission checks.
    client_id str
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    client_secret str
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    data str
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    entity_id str
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    name str
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    tenant_id str
    The unique ID of the tenant used to scope this API request.
    entityTypeId String
    The ID of the Entity Type. Types are consulted for permission checks.
    clientId String
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    clientSecret String
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    data String
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    entityId String
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    name String
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    tenantId String
    The unique ID of the tenant used to scope this API request.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing FusionAuthEntity Resource

    Get an existing FusionAuthEntity resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: FusionAuthEntityState, opts?: CustomResourceOptions): FusionAuthEntity
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            client_id: Optional[str] = None,
            client_secret: Optional[str] = None,
            data: Optional[str] = None,
            entity_id: Optional[str] = None,
            entity_type_id: Optional[str] = None,
            name: Optional[str] = None,
            tenant_id: Optional[str] = None) -> FusionAuthEntity
    func GetFusionAuthEntity(ctx *Context, name string, id IDInput, state *FusionAuthEntityState, opts ...ResourceOption) (*FusionAuthEntity, error)
    public static FusionAuthEntity Get(string name, Input<string> id, FusionAuthEntityState? state, CustomResourceOptions? opts = null)
    public static FusionAuthEntity get(String name, Output<String> id, FusionAuthEntityState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ClientId string
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    ClientSecret string
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    Data string
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    EntityId string
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    EntityTypeId string
    The ID of the Entity Type. Types are consulted for permission checks.
    Name string
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    TenantId string
    The unique ID of the tenant used to scope this API request.
    ClientId string
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    ClientSecret string
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    Data string
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    EntityId string
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    EntityTypeId string
    The ID of the Entity Type. Types are consulted for permission checks.
    Name string
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    TenantId string
    The unique ID of the tenant used to scope this API request.
    clientId String
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    clientSecret String
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    data String
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    entityId String
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    entityTypeId String
    The ID of the Entity Type. Types are consulted for permission checks.
    name String
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    tenantId String
    The unique ID of the tenant used to scope this API request.
    clientId string
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    clientSecret string
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    data string
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    entityId string
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    entityTypeId string
    The ID of the Entity Type. Types are consulted for permission checks.
    name string
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    tenantId string
    The unique ID of the tenant used to scope this API request.
    client_id str
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    client_secret str
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    data str
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    entity_id str
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    entity_type_id str
    The ID of the Entity Type. Types are consulted for permission checks.
    name str
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    tenant_id str
    The unique ID of the tenant used to scope this API request.
    clientId String
    The OAuth 2.0 client ID. If you leave this blank on create, the value of the Entity ID will be used. Must be a UUID.
    clientSecret String
    The OAuth 2.0 client secret. If you leave this blank on create, a secure secret will be generated for you. If you leave this blank during an update, the previous value will be maintained. For both create and update you can provide a value and it will be stored.
    data String
    An object that can hold any information about the Entity that should be persisted. Please review the limits on data field types as you plan for and build your custom data schema. Must be a JSON serialised string.
    entityId String
    The ID to use for the new Entity. If not specified a secure random UUID will be generated.
    entityTypeId String
    The ID of the Entity Type. Types are consulted for permission checks.
    name String
    A descriptive name for the Entity (i.e. "Raviga" or "Email Service").
    tenantId String
    The unique ID of the tenant used to scope this API request.

    Package Details

    Repository
    fusionauth theogravity/pulumi-fusionauth
    License
    MIT
    Notes
    This Pulumi package is based on the fusionauth Terraform Provider.
    fusionauth logo
    FusionAuth v4.0.1 published on Saturday, Sep 30, 2023 by Theo Gravity