-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #486 from Venafi/provision-to-machine-identity
feat(cloud-provisioning): Adds function to provision certificate to existing machine identity
- Loading branch information
Showing
10 changed files
with
469 additions
and
382 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package domain | ||
|
||
type WorkFlowResponseData struct { | ||
Result interface{} `json:"result"` | ||
WorkflowID string `json:"workflowId"` | ||
WorkflowName string `json:"workflowName"` | ||
WsClientID string `json:"wsClientId"` | ||
} | ||
|
||
type WorkflowResponse struct { | ||
SpecVersion string `json:"specversion"` | ||
Id string `json:"id"` | ||
Source string `json:"source"` | ||
Type string `json:"type"` | ||
Subject string `json:"subject"` | ||
DataContentType string `json:"datacontenttype"` | ||
Time string `json:"time"` | ||
Data WorkFlowResponseData `json:"data"` | ||
EventKind string `json:"eventkind"` | ||
EventResource string `json:"eventresource"` | ||
Recipient string `json:"recipient"` | ||
CorrelationID string `json:"correlationid"` | ||
Stream string `json:"stream"` | ||
} |
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
Oops, something went wrong.