Skip to content

Commit 522a8e5

Browse files
Generate certificates
1 parent 49a8aca commit 522a8e5

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

services/certificates/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
00b020b2998425397c9a0e51364fe8846fa66880
1+
568afec85141220c49baac1aa7878893ae82307d

services/certificates/src/stackit/certificates/models/usage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Usage(BaseModel):
2929
Usage
3030
""" # noqa: E501
3131

32-
count: Optional[StrictInt] = Field(default=None, description="Number of Load Balancers using this certificate.")
32+
count: Optional[StrictInt] = Field(default=None, description="Number of listeners using this certificate.")
3333
items: Optional[List[UsageItem]] = Field(
3434
default=None, description="List of Load Balancers with their associated listeners that use this certificate."
3535
)

services/certificates/src/stackit/certificates/models/usage_item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class UsageItem(BaseModel):
2929

3030
listener_names: Optional[List[StrictStr]] = Field(
3131
default=None,
32-
description="A list of listener names on this Load Balancer that are using the certificate.",
32+
description="The list of listener names in this Load Balancer, that are using the certificate.",
3333
alias="listenerNames",
3434
)
3535
load_balancer_name: Optional[StrictStr] = Field(

0 commit comments

Comments
 (0)