This file contains hidden or 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
{"swagger":"2.0","info":{"version":"v1","title":"AST.Emr.Api"},"host":"localhost:59632","schemes":["http"],"paths":{"/api/Allergies/Get":{"get":{"tags":["Allergies"],"operationId":"Allergies_Get","consumes":[],"produces":["application/json","text/json"],"parameters":[{"name":"adusername","in":"query","required":true,"type":"string"},{"name":"asMpid","in":"query","required":true,"type":"string"},{"name":"sessionid","in":"query","required":false,"type":"string"}],"responses":{"200":{"description":"OK","schema":{"type":"object"}}}}},"/api/Allergies":{"get":{"tags":["Allergies"],"operationId":"Allergies_Get","consumes":[],"produces":["application/json","text/json"],"parameters":[{"name":"adusername","in":"query","required":true,"type":"string"},{"name":"asMpid","in":"query","required":true,"type":"string"},{"name":"sessionid","in":"query","required":false,"type":"string"}],"responses":{"200":{"description":"OK","schema":{"type":"object"}}}}},"/api/ApiSettings/Get":{"get":{"tags":["ApiSettings"],"operationId":"Api |
This file contains hidden or 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
sequenceDiagram | |
autonumber | |
Critical Alert Lifecycle | |
Critical Phase: Init New Alert Lifecycle | |
Activate AlertManager | |
RulesEngine->>AlertManager: Alert Triggered | |
end | |
Critical Phase: Obtain Destination Set | |
AlertManager->>+ParticipantProvider: Determine Destination Set |
This file contains hidden or 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
## -------------------------------------------------------------------------------------- | |
## Configuration | |
## -------------------------------------------------------------------------------------- | |
$isEnabled = $OctopusParameters["Octopus.Action.IISWebSite.CreateOrUpdateWebSite"] | |
if (!$isEnabled -or ![Bool]::Parse($isEnabled)) | |
{ | |
exit 0 | |
} |
This file contains hidden or 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
Octopus.Acquire.MaxParallelism | |
Octopus.Action[Deploy Cardio API - Host].Azure.CertificateBytes | |
Octopus.Action[Deploy Cardio API - Host].Azure.CertificateThumbprint | |
Octopus.Action[Deploy Cardio API - Host].Azure.CloudServiceName | |
Octopus.Action[Deploy Cardio API - Host].Azure.Endpoint | |
Octopus.Action[Deploy Cardio API - Host].Azure.Slot | |
Octopus.Action[Deploy Cardio API - Host].Azure.StorageAccountName | |
Octopus.Action[Deploy Cardio API - Host].Azure.SubscriptionId | |
Octopus.Action[Deploy Cardio API - Host].Azure.SwapIfPossible | |
Octopus.Action[Deploy Cardio API - Host].Azure.UploadedPackageUri |
This file contains hidden or 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
public class QueryStringHelper | |
{ | |
private IDictionary _dictionary; | |
public int Count | |
{ | |
get { return _dictionary.Count; } | |
} | |
public String HtmlStringValue |