blob: baa56c9e92f031c2aba77d2fa08ef9b8e3ce6588 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// CertificateDestinationStore undocumented
type CertificateDestinationStore int
const (
// CertificateDestinationStoreVComputerCertStoreRoot undocumented
CertificateDestinationStoreVComputerCertStoreRoot CertificateDestinationStore = 0
// CertificateDestinationStoreVComputerCertStoreIntermediate undocumented
CertificateDestinationStoreVComputerCertStoreIntermediate CertificateDestinationStore = 1
// CertificateDestinationStoreVUserCertStoreIntermediate undocumented
CertificateDestinationStoreVUserCertStoreIntermediate CertificateDestinationStore = 2
)
// CertificateDestinationStorePComputerCertStoreRoot returns a pointer to CertificateDestinationStoreVComputerCertStoreRoot
func CertificateDestinationStorePComputerCertStoreRoot() *CertificateDestinationStore {
v := CertificateDestinationStoreVComputerCertStoreRoot
return &v
}
// CertificateDestinationStorePComputerCertStoreIntermediate returns a pointer to CertificateDestinationStoreVComputerCertStoreIntermediate
func CertificateDestinationStorePComputerCertStoreIntermediate() *CertificateDestinationStore {
v := CertificateDestinationStoreVComputerCertStoreIntermediate
return &v
}
// CertificateDestinationStorePUserCertStoreIntermediate returns a pointer to CertificateDestinationStoreVUserCertStoreIntermediate
func CertificateDestinationStorePUserCertStoreIntermediate() *CertificateDestinationStore {
v := CertificateDestinationStoreVUserCertStoreIntermediate
return &v
}
|