...
1 package managedapplications
2
3
4
5
6
7
8
9
10 type ActionType string
11
12 const (
13
14 Internal ActionType = "Internal"
15 )
16
17
18 func PossibleActionTypeValues() []ActionType {
19 return []ActionType{Internal}
20 }
21
22
23 type ApplicationArtifactType string
24
25 const (
26
27 Custom ApplicationArtifactType = "Custom"
28
29 Template ApplicationArtifactType = "Template"
30 )
31
32
33 func PossibleApplicationArtifactTypeValues() []ApplicationArtifactType {
34 return []ApplicationArtifactType{Custom, Template}
35 }
36
37
38 type ApplicationLockLevel string
39
40 const (
41
42 CanNotDelete ApplicationLockLevel = "CanNotDelete"
43
44 None ApplicationLockLevel = "None"
45
46 ReadOnly ApplicationLockLevel = "ReadOnly"
47 )
48
49
50 func PossibleApplicationLockLevelValues() []ApplicationLockLevel {
51 return []ApplicationLockLevel{CanNotDelete, None, ReadOnly}
52 }
53
54
55 type Origin string
56
57 const (
58
59 System Origin = "system"
60
61 User Origin = "user"
62
63 Usersystem Origin = "user,system"
64 )
65
66
67 func PossibleOriginValues() []Origin {
68 return []Origin{System, User, Usersystem}
69 }
70
71
72 type ProvisioningState string
73
74 const (
75
76 Accepted ProvisioningState = "Accepted"
77
78 Canceled ProvisioningState = "Canceled"
79
80 Created ProvisioningState = "Created"
81
82 Creating ProvisioningState = "Creating"
83
84 Deleted ProvisioningState = "Deleted"
85
86 Deleting ProvisioningState = "Deleting"
87
88 Failed ProvisioningState = "Failed"
89
90 Ready ProvisioningState = "Ready"
91
92 Running ProvisioningState = "Running"
93
94 Succeeded ProvisioningState = "Succeeded"
95
96 Updating ProvisioningState = "Updating"
97 )
98
99
100 func PossibleProvisioningStateValues() []ProvisioningState {
101 return []ProvisioningState{Accepted, Canceled, Created, Creating, Deleted, Deleting, Failed, Ready, Running, Succeeded, Updating}
102 }
103
104
105 type ResourceIdentityType string
106
107 const (
108
109 SystemAssigned ResourceIdentityType = "SystemAssigned"
110 )
111
112
113 func PossibleResourceIdentityTypeValues() []ResourceIdentityType {
114 return []ResourceIdentityType{SystemAssigned}
115 }
116
View as plain text