Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19059,7 +19059,7 @@ components:
type: object
IPAllowlistEntryType:
default: ip_allowlist_entry
description: IP allowlist Entry type.
description: IP allowlist entry type.
enum:
- ip_allowlist_entry
example: ip_allowlist_entry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__(
:param id: The unique identifier of the IP allowlist entry.
:type id: str, optional

:param type: IP allowlist Entry type.
:param type: IP allowlist entry type.
:type type: IPAllowlistEntryType
"""
if attributes is not unset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class IPAllowlistEntryType(ModelSimple):
"""
IP allowlist Entry type.
IP allowlist entry type.

:param value: If omitted defaults to "ip_allowlist_entry". Must be one of ["ip_allowlist_entry"].
:type value: str
Expand Down
Loading