mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
feat: add provisioner key cli commands (#13875)
This commit is contained in:
@ -267,10 +267,10 @@ func (c *Client) ServeProvisionerDaemon(ctx context.Context, req ServeProvisione
|
||||
}
|
||||
|
||||
type ProvisionerKey struct {
|
||||
ID uuid.UUID `json:"id" format:"uuid"`
|
||||
CreatedAt time.Time `json:"created_at" format:"date-time"`
|
||||
OrganizationID uuid.UUID `json:"organization" format:"uuid"`
|
||||
Name string `json:"name"`
|
||||
ID uuid.UUID `json:"id" table:"-" format:"uuid"`
|
||||
CreatedAt time.Time `json:"created_at" table:"created_at" format:"date-time"`
|
||||
OrganizationID uuid.UUID `json:"organization" table:"organization_id" format:"uuid"`
|
||||
Name string `json:"name" table:"name,default_sort"`
|
||||
// HashedSecret - never include the access token in the API response
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user