This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alter list service-accounts to utilize json output
- Loading branch information
Showing
2 changed files
with
23 additions
and
6 deletions.
There are no files selected for viewing
21 changes: 18 additions & 3 deletions
21
server/src/server/wrapper/connected/CcloudServiceAccount.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
export default class ServiceAccount { | ||
Id: number; | ||
Name: string; | ||
Description: string; // Currently isn't parsed properly (whitespace and space in general gets trimemd away) | ||
id: number; | ||
name: string; | ||
description: string; // Currently isn't parsed properly (whitespace and space in general gets trimemd away) | ||
} | ||
|
||
export type ListServiceAccounts = Array<ServiceAccount>; |