1
0
mirror of https://github.com/rancher/types.git synced 2025-08-31 12:48:45 +00:00

Generated changes

This commit is contained in:
Dan Ramich
2018-06-11 10:08:25 -07:00
committed by Craig Jellick
parent a6785a56fe
commit 49325930b2
7 changed files with 240 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
package client
const (
AzureADConfigType = "azureADConfig"
AzureADConfigFieldAccessMode = "accessMode"
AzureADConfigFieldAllowedPrincipalIDs = "allowedPrincipalIds"
AzureADConfigFieldAnnotations = "annotations"
AzureADConfigFieldApplicationID = "applicationId"
AzureADConfigFieldApplicationSecret = "applicationSecret"
AzureADConfigFieldAuthEndpoint = "authEndpoint"
AzureADConfigFieldCreated = "created"
AzureADConfigFieldCreatorID = "creatorId"
AzureADConfigFieldEnabled = "enabled"
AzureADConfigFieldEndpoint = "endpoint"
AzureADConfigFieldGraphEndpoint = "graphEndpoint"
AzureADConfigFieldLabels = "labels"
AzureADConfigFieldName = "name"
AzureADConfigFieldOwnerReferences = "ownerReferences"
AzureADConfigFieldRancherURL = "rancherUrl"
AzureADConfigFieldRemoved = "removed"
AzureADConfigFieldTenantID = "tenantId"
AzureADConfigFieldTokenEndpoint = "tokenEndpoint"
AzureADConfigFieldType = "type"
AzureADConfigFieldUuid = "uuid"
)
type AzureADConfig struct {
AccessMode string `json:"accessMode,omitempty" yaml:"accessMode,omitempty"`
AllowedPrincipalIDs []string `json:"allowedPrincipalIds,omitempty" yaml:"allowedPrincipalIds,omitempty"`
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
ApplicationID string `json:"applicationId,omitempty" yaml:"applicationId,omitempty"`
ApplicationSecret string `json:"applicationSecret,omitempty" yaml:"applicationSecret,omitempty"`
AuthEndpoint string `json:"authEndpoint,omitempty" yaml:"authEndpoint,omitempty"`
Created string `json:"created,omitempty" yaml:"created,omitempty"`
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"`
Endpoint string `json:"endpoint,omitempty" yaml:"endpoint,omitempty"`
GraphEndpoint string `json:"graphEndpoint,omitempty" yaml:"graphEndpoint,omitempty"`
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
RancherURL string `json:"rancherUrl,omitempty" yaml:"rancherUrl,omitempty"`
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
TenantID string `json:"tenantId,omitempty" yaml:"tenantId,omitempty"`
TokenEndpoint string `json:"tokenEndpoint,omitempty" yaml:"tokenEndpoint,omitempty"`
Type string `json:"type,omitempty" yaml:"type,omitempty"`
Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
}

View File

@@ -0,0 +1,12 @@
package client
const (
AzureADConfigApplyInputType = "azureADConfigApplyInput"
AzureADConfigApplyInputFieldCode = "code"
AzureADConfigApplyInputFieldConfig = "config"
)
type AzureADConfigApplyInput struct {
Code string `json:"code,omitempty" yaml:"code,omitempty"`
Config *AzureADConfig `json:"config,omitempty" yaml:"config,omitempty"`
}

View File

@@ -0,0 +1,10 @@
package client
const (
AzureADConfigTestOutputType = "azureADConfigTestOutput"
AzureADConfigTestOutputFieldRedirectURL = "redirectUrl"
)
type AzureADConfigTestOutput struct {
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
}

View File

@@ -0,0 +1,16 @@
package client
const (
AzureADLoginType = "azureADLogin"
AzureADLoginFieldCode = "code"
AzureADLoginFieldDescription = "description"
AzureADLoginFieldResponseType = "responseType"
AzureADLoginFieldTTLMillis = "ttl"
)
type AzureADLogin struct {
Code string `json:"code,omitempty" yaml:"code,omitempty"`
Description string `json:"description,omitempty" yaml:"description,omitempty"`
ResponseType string `json:"responseType,omitempty" yaml:"responseType,omitempty"`
TTLMillis int64 `json:"ttl,omitempty" yaml:"ttl,omitempty"`
}

View File

@@ -0,0 +1,28 @@
package client
const (
AzureADProviderType = "azureADProvider"
AzureADProviderFieldAnnotations = "annotations"
AzureADProviderFieldCreated = "created"
AzureADProviderFieldCreatorID = "creatorId"
AzureADProviderFieldLabels = "labels"
AzureADProviderFieldName = "name"
AzureADProviderFieldOwnerReferences = "ownerReferences"
AzureADProviderFieldRedirectURL = "redirectUrl"
AzureADProviderFieldRemoved = "removed"
AzureADProviderFieldType = "type"
AzureADProviderFieldUuid = "uuid"
)
type AzureADProvider struct {
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
Created string `json:"created,omitempty" yaml:"created,omitempty"`
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
Type string `json:"type,omitempty" yaml:"type,omitempty"`
Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
}