client.create_project

Creates a project using the specified ID.

Input ParametersTypeDefaultDescription
project_idstrNoneA unique identifier for the project. Must be a lowercase string between 2-30 characters containing only alphanumeric characters and underscores. Additionally, it must not start with a numeric character.
PROJECT_ID = 'example_project'

client.create_project(
    project_id=PROJECT_ID
)
Return TypeDescription
dictA dictionary mapping project_name to the project ID string specified, once the project is successfully created.
{
    'project_name': 'example_project'
}