1
0
mirror of https://github.com/rancher/types.git synced 2025-07-06 10:16:12 +00:00

Go generate

This commit is contained in:
Nathan Jenan 2018-02-06 13:03:25 -07:00 committed by Darren Shepherd
parent 3bddee4be2
commit edada69514

View File

@ -18,6 +18,7 @@ const (
AzureKubernetesServiceConfigFieldSSHPublicKeyContents = "sshPublicKeyContents"
AzureKubernetesServiceConfigFieldSubscriptionID = "subscriptionId"
AzureKubernetesServiceConfigFieldTag = "tags"
AzureKubernetesServiceConfigFieldTenantID = "tenantId"
)
type AzureKubernetesServiceConfig struct {
@ -37,4 +38,5 @@ type AzureKubernetesServiceConfig struct {
SSHPublicKeyContents string `json:"sshPublicKeyContents,omitempty"`
SubscriptionID string `json:"subscriptionId,omitempty"`
Tag map[string]string `json:"tags,omitempty"`
TenantID string `json:"tenantId,omitempty"`
}