Skip to content
Open
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 services/serviceaccount/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f15f0e449d347f36dde5feac11c328b72d7f10dc
7df21609559f3652a7fee05149a6c1b729428532
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ class ServiceAccount(BaseModel):
)
internal: StrictBool = Field(description="Flag indicating internal service accounts")
project_id: StrictStr = Field(description="ID of the related project", alias="projectId")
__properties: ClassVar[List[str]] = ["email", "id", "internal", "projectId"]
token_endpoint: StrictStr = Field(
description="Endpoint used to obtain access tokens for the service account", alias="tokenEndpoint"
)
__properties: ClassVar[List[str]] = ["email", "id", "internal", "projectId", "tokenEndpoint"]

model_config = ConfigDict(
populate_by_name=True,
Expand Down Expand Up @@ -97,6 +100,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
"id": obj.get("id"),
"internal": obj.get("internal"),
"projectId": obj.get("projectId"),
"tokenEndpoint": obj.get("tokenEndpoint"),
}
)
return _obj
Loading