1. Packages
  2. Propelauth Provider
  3. API Docs
  4. ProjectInfo
propelauth 0.4.1 published on Friday, Mar 7, 2025 by propelauth

propelauth.ProjectInfo

Explore with Pulumi AI

propelauth logo
propelauth 0.4.1 published on Friday, Mar 7, 2025 by propelauth

    Project Info resource. This is for configuring the basic project information in PropelAuth.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as propelauth from "@pulumi/propelauth";
    
    // Set project-level metadata for your PropelAuth project.
    const example = new propelauth.ProjectInfo("example", {});
    
    import pulumi
    import pulumi_propelauth as propelauth
    
    # Set project-level metadata for your PropelAuth project.
    example = propelauth.ProjectInfo("example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/propelauth/propelauth"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Set project-level metadata for your PropelAuth project.
    		_, err := propelauth.NewProjectInfo(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Propelauth = Pulumi.Propelauth;
    
    return await Deployment.RunAsync(() => 
    {
        // Set project-level metadata for your PropelAuth project.
        var example = new Propelauth.ProjectInfo("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.propelauth.ProjectInfo;
    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) {
            // Set project-level metadata for your PropelAuth project.
            var example = new ProjectInfo("example");
    
        }
    }
    
    resources:
      # Set project-level metadata for your PropelAuth project.
      example:
        type: propelauth:ProjectInfo
    

    Create ProjectInfo Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ProjectInfo(name: string, args?: ProjectInfoArgs, opts?: CustomResourceOptions);
    @overload
    def ProjectInfo(resource_name: str,
                    args: Optional[ProjectInfoArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProjectInfo(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    name: Optional[str] = None)
    func NewProjectInfo(ctx *Context, name string, args *ProjectInfoArgs, opts ...ResourceOption) (*ProjectInfo, error)
    public ProjectInfo(string name, ProjectInfoArgs? args = null, CustomResourceOptions? opts = null)
    public ProjectInfo(String name, ProjectInfoArgs args)
    public ProjectInfo(String name, ProjectInfoArgs args, CustomResourceOptions options)
    
    type: propelauth:ProjectInfo
    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 ProjectInfoArgs
    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 ProjectInfoArgs
    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 ProjectInfoArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProjectInfoArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProjectInfoArgs
    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 projectInfoResource = new Propelauth.ProjectInfo("projectInfoResource", new()
    {
        Name = "string",
    });
    
    example, err := propelauth.NewProjectInfo(ctx, "projectInfoResource", &propelauth.ProjectInfoArgs{
    Name: pulumi.String("string"),
    })
    
    var projectInfoResource = new ProjectInfo("projectInfoResource", ProjectInfoArgs.builder()
        .name("string")
        .build());
    
    project_info_resource = propelauth.ProjectInfo("projectInfoResource", name="string")
    
    const projectInfoResource = new propelauth.ProjectInfo("projectInfoResource", {name: "string"});
    
    type: propelauth:ProjectInfo
    properties:
        name: string
    

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

    Name string
    The project's name. It will be used in emails and hosted page titles.
    Name string
    The project's name. It will be used in emails and hosted page titles.
    name String
    The project's name. It will be used in emails and hosted page titles.
    name string
    The project's name. It will be used in emails and hosted page titles.
    name str
    The project's name. It will be used in emails and hosted page titles.
    name String
    The project's name. It will be used in emails and hosted page titles.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ProjectInfo 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 ProjectInfo Resource

    Get an existing ProjectInfo 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?: ProjectInfoState, opts?: CustomResourceOptions): ProjectInfo
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            name: Optional[str] = None) -> ProjectInfo
    func GetProjectInfo(ctx *Context, name string, id IDInput, state *ProjectInfoState, opts ...ResourceOption) (*ProjectInfo, error)
    public static ProjectInfo Get(string name, Input<string> id, ProjectInfoState? state, CustomResourceOptions? opts = null)
    public static ProjectInfo get(String name, Output<String> id, ProjectInfoState state, CustomResourceOptions options)
    resources:  _:    type: propelauth:ProjectInfo    get:      id: ${id}
    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:
    Name string
    The project's name. It will be used in emails and hosted page titles.
    Name string
    The project's name. It will be used in emails and hosted page titles.
    name String
    The project's name. It will be used in emails and hosted page titles.
    name string
    The project's name. It will be used in emails and hosted page titles.
    name str
    The project's name. It will be used in emails and hosted page titles.
    name String
    The project's name. It will be used in emails and hosted page titles.

    Import

    As there is only one project_info per project there’s no need to specify the id,

    $ pulumi import propelauth:index/projectInfo:ProjectInfo but requires an id to be specified, so we can use an arbitrary string here.
    
    $ pulumi import propelauth:index/projectInfo:ProjectInfo example arbitrary_string_here
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    propelauth propelauth/terraform-provider-propelauth
    License
    Notes
    This Pulumi package is based on the propelauth Terraform Provider.
    propelauth logo
    propelauth 0.4.1 published on Friday, Mar 7, 2025 by propelauth