1package attestation
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License. See License.txt in the project root for license information.
5//
6// Code generated by Microsoft (R) AutoRest Code Generator.
7// Changes may cause incorrect behavior and will be lost if the code is regenerated.
8
9// ServiceStatus enumerates the values for service status.
10type ServiceStatus string
11
12const (
13	// Error ...
14	Error ServiceStatus = "Error"
15	// NotReady ...
16	NotReady ServiceStatus = "NotReady"
17	// Ready ...
18	Ready ServiceStatus = "Ready"
19)
20
21// PossibleServiceStatusValues returns an array of possible values for the ServiceStatus const type.
22func PossibleServiceStatusValues() []ServiceStatus {
23	return []ServiceStatus{Error, NotReady, Ready}
24}
25