|
1 | 1 | # generated by datamodel-codegen: |
2 | 2 | # filename: schema.json |
3 | | -# timestamp: 2025-05-08T09:34:57+00:00 |
| 3 | +# timestamp: 2025-06-24T21:03:56+00:00 |
4 | 4 | # using the command: |
5 | 5 | # datamodel-codegen --input tests\usethis\_integrations\ci\bitbucket\schema.json --input-file-type jsonschema --output src\usethis\_integrations\ci\bitbucket\schema.py --enum-field-as-literal all --field-constraints --use-double-quotes --use-union-operator --use-standard-collections --use-default-kwarg --output-model-type pydantic_v2.BaseModel --target-python-version 3.10 |
6 | 6 | # ruff: noqa: ERA001 |
@@ -380,11 +380,23 @@ class StepBase(BaseModel): |
380 | 380 | title="Step Caches", |
381 | 381 | ) |
382 | 382 | clone: Clone | None = None |
| 383 | + concurrency_group: str | None = Field( |
| 384 | + default=None, |
| 385 | + alias="concurrency-group", |
| 386 | + description="The concurrency group for the step.", |
| 387 | + max_length=50, |
| 388 | + title="Concurrency group", |
| 389 | + ) |
383 | 390 | deployment: str | None = Field( |
384 | 391 | default=None, |
385 | 392 | description="The deployment environment for the step.", |
386 | 393 | title="Step Deployment Environment", |
387 | 394 | ) |
| 395 | + environment: str | None = Field( |
| 396 | + default=None, |
| 397 | + description="The environment for the step.", |
| 398 | + title="Step Environment", |
| 399 | + ) |
388 | 400 | fail_fast: FailFast | None = Field( |
389 | 401 | default=None, |
390 | 402 | alias="fail-fast", |
@@ -445,6 +457,11 @@ class Stage(BaseModel): |
445 | 457 | description="The deployment environment for the stage.", |
446 | 458 | title="Stage Deployment Environment", |
447 | 459 | ) |
| 460 | + environment: str | None = Field( |
| 461 | + default=None, |
| 462 | + description="The environment for the stage.", |
| 463 | + title="Stage Environment", |
| 464 | + ) |
448 | 465 | name: str | None = Field( |
449 | 466 | default=None, description="The name of the stage.", title="Stage Name" |
450 | 467 | ) |
|
0 commit comments