summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/HealthStateEnum.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/HealthStateEnum.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/HealthStateEnum.go33
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HealthStateEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/HealthStateEnum.go
new file mode 100644
index 00000000..4676928e
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/HealthStateEnum.go
@@ -0,0 +1,33 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+// HealthState undocumented
+type HealthState int
+
+const (
+ // HealthStateVUnknown undocumented
+ HealthStateVUnknown HealthState = 0
+ // HealthStateVHealthy undocumented
+ HealthStateVHealthy HealthState = 1
+ // HealthStateVUnhealthy undocumented
+ HealthStateVUnhealthy HealthState = 2
+)
+
+// HealthStatePUnknown returns a pointer to HealthStateVUnknown
+func HealthStatePUnknown() *HealthState {
+ v := HealthStateVUnknown
+ return &v
+}
+
+// HealthStatePHealthy returns a pointer to HealthStateVHealthy
+func HealthStatePHealthy() *HealthState {
+ v := HealthStateVHealthy
+ return &v
+}
+
+// HealthStatePUnhealthy returns a pointer to HealthStateVUnhealthy
+func HealthStatePUnhealthy() *HealthState {
+ v := HealthStateVUnhealthy
+ return &v
+}