create_project
Initiate the creation of a new Google Cloud Platform (GCP) project, optionally specifying a project ID or allowing auto-generation, and link it to the first available billing account.
Instructions
Creates a new GCP project and attempts to attach it to the first available billing account. A project ID can be optionally specified; otherwise it will be automatically generated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | No | Optional. The desired ID for the new GCP project. If not provided, an ID will be auto-generated. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "Optional. The desired ID for the new GCP project. If not provided, an ID will be auto-generated.",
"type": "string"
}
},
"type": "object"
}