-
Notifications
You must be signed in to change notification settings - Fork 46
/
models.go
43 lines (38 loc) · 880 Bytes
/
models.go
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
34
35
36
37
38
39
40
41
42
43
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package metadata
type MetaData struct {
Authentication Authentication
DnsSuffixes DnsSuffixes
Name string
ResourceIdentifiers ResourceIdentifiers
ResourceManagerEndpoint string
}
type Authentication struct {
Audiences []string
LoginEndpoint string
IdentityProvider string
Tenant string
}
type DnsSuffixes struct {
Attestation string
FrontDoor string
KeyVault string
ManagedHSM string
MariaDB string
MySql string
Postgresql string
SqlServer string
Storage string
StorageSync string
Synapse string
}
type ResourceIdentifiers struct {
Attestation string
Batch string
LogAnalytics string
Media string
MicrosoftGraph string
OSSRDBMS string
Synapse string
}