|
| 1 | +## stackit beta intake create |
| 2 | + |
| 3 | +Creates a new Intake |
| 4 | + |
| 5 | +### Synopsis |
| 6 | + |
| 7 | +Creates a new Intake. |
| 8 | + |
| 9 | +``` |
| 10 | +stackit beta intake create [flags] |
| 11 | +``` |
| 12 | + |
| 13 | +### Examples |
| 14 | + |
| 15 | +``` |
| 16 | + Create a new Intake with required parameters |
| 17 | + $ stackit beta intake create --display-name my-intake --runner-id xxx --catalog-uri "http://dremio.example.com" --catalog-warehouse "my-warehouse" |
| 18 | +
|
| 19 | + Create a new Intake with a description, labels, and Dremio authentication |
| 20 | + $ stackit beta intake create --display-name my-intake --runner-id xxx --description "Production intake" --labels "env=prod,team=billing" --catalog-uri "http://dremio.example.com" --catalog-warehouse "my-warehouse" --catalog-auth-type "dremio" --dremio-token-endpoint "https://auth.dremio.cloud/oauth/token" --dremio-pat "MY_TOKEN" |
| 21 | +
|
| 22 | + Create a new Intake with manual partitioning by a date field |
| 23 | + $ stackit beta intake create --display-name my-partitioned-intake --runner-id xxx --catalog-uri "http://dremio.example.com" --catalog-warehouse "my-warehouse" --catalog-partitioning "manual" --catalog-partition-by "day(__intake_ts)" |
| 24 | +``` |
| 25 | + |
| 26 | +### Options |
| 27 | + |
| 28 | +``` |
| 29 | + --catalog-auth-type string Authentication type for the catalog (e.g., 'none', 'dremio') |
| 30 | + --catalog-namespace string The namespace to which data shall be written (default: 'intake') |
| 31 | + --catalog-partition-by strings List of Iceberg partitioning expressions. Only used when --catalog-partitioning is 'manual' |
| 32 | + --catalog-partitioning string The target table's partitioning. One of 'none', 'intake-time', 'manual' |
| 33 | + --catalog-table-name string The table name to identify the table in Iceberg |
| 34 | + --catalog-uri string The URI to the Iceberg catalog endpoint |
| 35 | + --catalog-warehouse string The Iceberg warehouse to connect to |
| 36 | + --description string Description |
| 37 | + --display-name string Display name |
| 38 | + --dremio-pat string Dremio personal access token. Required if auth-type is 'dremio' |
| 39 | + --dremio-token-endpoint string Dremio OAuth 2.0 token endpoint URL. Required if auth-type is 'dremio' |
| 40 | + -h, --help Help for "stackit beta intake create" |
| 41 | + --labels stringToString Labels in key=value format, separated by commas. Example: --labels "key1=value1,key2=value2" (default []) |
| 42 | + --runner-id string The UUID of the Intake Runner to use |
| 43 | +``` |
| 44 | + |
| 45 | +### Options inherited from parent commands |
| 46 | + |
| 47 | +``` |
| 48 | + -y, --assume-yes If set, skips all confirmation prompts |
| 49 | + --async If set, runs the command asynchronously |
| 50 | + -o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"] |
| 51 | + -p, --project-id string Project ID |
| 52 | + --region string Target region for region-specific requests |
| 53 | + --verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info") |
| 54 | +``` |
| 55 | + |
| 56 | +### SEE ALSO |
| 57 | + |
| 58 | +* [stackit beta intake](./stackit_beta_intake.md) - Provides functionality for intake |
| 59 | + |
0 commit comments