Skip to content
Merged
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
3 changes: 2 additions & 1 deletion openapi/schemas/identity.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2553,7 +2553,8 @@
"Capability": {
"enum": [
"SkipContentCheck",
"PreheatBoost"
"PreheatBoost",
"ManagedImageFaucet"
],
"description": "The named platform-wide capability entitlements a customer can be granted. Each maps to a\n`capability` object in the authorization graph; convert to its object id with\nstring CapabilityExtensions.ToObjectId(Capability capability). Kept as a typed enum so\ncapability grants read explicitly at call sites (and, later, on endpoint contracts) instead of\npassing raw id strings around."
},
Expand Down
3 changes: 2 additions & 1 deletion openapi/schemas/rapidata.filtered.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -42916,7 +42916,8 @@
"Capability": {
"enum": [
"SkipContentCheck",
"PreheatBoost"
"PreheatBoost",
"ManagedImageFaucet"
],
"description": "The named platform-wide capability entitlements a customer can be granted. Each maps to a\n`capability` object in the authorization graph; convert to its object id with\nstring CapabilityExtensions.ToObjectId(Capability capability). Kept as a typed enum so\ncapability grants read explicitly at call sites (and, later, on endpoint contracts) instead of\npassing raw id strings around."
},
Expand Down
3 changes: 2 additions & 1 deletion openapi/schemas/rapidata.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -44756,7 +44756,8 @@
"Capability": {
"enum": [
"SkipContentCheck",
"PreheatBoost"
"PreheatBoost",
"ManagedImageFaucet"
],
"description": "The named platform-wide capability entitlements a customer can be granted. Each maps to a\n`capability` object in the authorization graph; convert to its object id with\nstring CapabilityExtensions.ToObjectId(Capability capability). Kept as a typed enum so\ncapability grants read explicitly at call sites (and, later, on endpoint contracts) instead of\npassing raw id strings around."
},
Expand Down
1 change: 1 addition & 0 deletions src/rapidata/api_client/models/capability.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class Capability(str, Enum):
"""
SKIPCONTENTCHECK = 'SkipContentCheck'
PREHEATBOOST = 'PreheatBoost'
MANAGEDIMAGEFAUCET = 'ManagedImageFaucet'

@classmethod
def from_json(cls, json_str: str) -> Self:
Expand Down
Loading