...
1 package managedapplications
2
3
4
5
6
7
8
9
10 type ApplicationArtifactType string
11
12 const (
13
14 Custom ApplicationArtifactType = "Custom"
15
16 Template ApplicationArtifactType = "Template"
17 )
18
19
20 func PossibleApplicationArtifactTypeValues() []ApplicationArtifactType {
21 return []ApplicationArtifactType{Custom, Template}
22 }
23
24
25 type ApplicationLockLevel string
26
27 const (
28
29 CanNotDelete ApplicationLockLevel = "CanNotDelete"
30
31 None ApplicationLockLevel = "None"
32
33 ReadOnly ApplicationLockLevel = "ReadOnly"
34 )
35
36
37 func PossibleApplicationLockLevelValues() []ApplicationLockLevel {
38 return []ApplicationLockLevel{CanNotDelete, None, ReadOnly}
39 }
40
41
42 type ProvisioningState string
43
44 const (
45
46 Accepted ProvisioningState = "Accepted"
47
48 Canceled ProvisioningState = "Canceled"
49
50 Created ProvisioningState = "Created"
51
52 Creating ProvisioningState = "Creating"
53
54 Deleted ProvisioningState = "Deleted"
55
56 Deleting ProvisioningState = "Deleting"
57
58 Failed ProvisioningState = "Failed"
59
60 Ready ProvisioningState = "Ready"
61
62 Running ProvisioningState = "Running"
63
64 Succeeded ProvisioningState = "Succeeded"
65
66 Updating ProvisioningState = "Updating"
67 )
68
69
70 func PossibleProvisioningStateValues() []ProvisioningState {
71 return []ProvisioningState{Accepted, Canceled, Created, Creating, Deleted, Deleting, Failed, Ready, Running, Succeeded, Updating}
72 }
73
74
75 type ResourceIdentityType string
76
77 const (
78
79 SystemAssigned ResourceIdentityType = "SystemAssigned"
80 )
81
82
83 func PossibleResourceIdentityTypeValues() []ResourceIdentityType {
84 return []ResourceIdentityType{SystemAssigned}
85 }
86
View as plain text