refactor: restructure project — separate tools, config, generated, provider
TOOLS/ — generators + scripts + config + ARCHITECTURE.md ├── yaml-generator/ (code) ├── resource-generator/ (code) ├── docs-generator/ (code) ├── scripts/ (← devops/*.sh) ├── config/ (← devops/profiles/ + devops/config/) │ ├── test/ profile.env, services_list.txt, operation_timeouts.json │ ├── prod/ │ └── dev/ └── ARCHITECTURE.md (← devops/ARCHITECTURE.md) generated/ — pipeline output only (gitignored) ├── test/resources_yaml/, go/, docs/, provider_build/ ├── prod/ └── dev/ provider/ — code only, no generated files resources_yaml/ — DELETED (generated) internal/resources_gen/ — DELETED (generated) devops/ — removed (replaced by TOOLS/scripts + TOOLS/config + generated/) Generators now fail if NUBES_*_DIR not set (no defaults to provider/). Provider requires pipeline to populate resources_gen/ before build.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
# Resource nubes_s3
|
||||
|
||||
Service ID: `12`
|
||||
|
||||
Service Name: S3 Object Storage
|
||||
|
||||
[Manual](s3.md) | [Create params](s3_params_create.md) | [Modify params](s3_params_modify.md) | [Output params](s3_outputs.md) | [Operations](s3_ops.md) | [Example](s3_example.md)
|
||||
|
||||
## Modify params
|
||||
|
||||
<table class="resource-table resource-table-compact">
|
||||
<thead><tr><th>ID</th><th>Code</th><th>Type</th><th>Description</th><th>Constraints</th></tr></thead>
|
||||
<tbody>
|
||||
<tr><td>50</td><td><strong><code class="code-no-wrap">max_size_gb_per_user</code></strong></td><td><code>integer</code></td><td>maxSizeGb. Передаём руками</td><td>minvalue=1; maxvalue=50000</td></tr>
|
||||
<tr><td>51</td><td><strong><code class="code-no-wrap">max_objects_per_bucket</code></strong></td><td><code>integer</code></td><td>Квота на бакет. Кол-во объектов. Передаём руками</td><td>minvalue=1; maxvalue=10000000</td></tr>
|
||||
<tr><td>52</td><td><strong><code class="code-no-wrap">max_buckets_per_user</code></strong></td><td><code>integer</code></td><td>Квота на пользователя. Количество бакетов пользователя. Передаём руками</td><td>minvalue=1; maxvalue=1000</td></tr>
|
||||
</tbody></table>
|
||||
Reference in New Issue
Block a user