Documentation ¶
Index ¶
- Constants
- Variables
- type AppFileFields
- type AppInstanceFields
- type AppParams
- type AppSummary
- type Application
- type ApplicationFields
- type Buildpack
- type DomainFields
- type EventFields
- type InstanceState
- type Organization
- type OrganizationFields
- type QuotaFields
- type Route
- type RouteFields
- type RouteSummary
- type ServiceAuthTokenFields
- type ServiceBindingFields
- type ServiceBroker
- type ServiceInstance
- type ServiceInstanceFields
- type ServiceOffering
- type ServiceOfferingFields
- type ServiceOfferings
- type ServicePlan
- type ServicePlanFields
- type Space
- type SpaceFields
- type Stack
- type UserFields
Constants ¶
View Source
const ( ORG_USER = "OrgUser" ORG_MANAGER = "OrgManager" BILLING_MANAGER = "BillingManager" ORG_AUDITOR = "OrgAuditor" SPACE_MANAGER = "SpaceManager" SPACE_DEVELOPER = "SpaceDeveloper" SPACE_AUDITOR = "SpaceAuditor" )
Variables ¶
View Source
var SpaceRoleToUserInput = map[string]string{ SPACE_MANAGER: "SpaceManager", SPACE_DEVELOPER: "SpaceDeveloper", SPACE_AUDITOR: "SpaceAuditor", }
View Source
var UserInputToOrgRole = map[string]string{ "OrgManager": ORG_MANAGER, "BillingManager": BILLING_MANAGER, "OrgAuditor": ORG_AUDITOR, }
View Source
var UserInputToSpaceRole = map[string]string{ "SpaceManager": SPACE_MANAGER, "SpaceDeveloper": SPACE_DEVELOPER, "SpaceAuditor": SPACE_AUDITOR, }
Functions ¶
This section is empty.
Types ¶
type AppFileFields ¶
type AppInstanceFields ¶
type AppParams ¶
type AppParams struct { BuildpackUrl *string Command *string DiskQuota *uint64 Domain *string EnvironmentVars *map[string]string Guid *string HealthCheckTimeout *int Host *string InstanceCount *int Memory *uint64 Name *string NoRoute *bool Path *string RunningInstances *int Services *[]string SpaceGuid *string StackGuid *string StackName *string State *string }
type AppSummary ¶
type AppSummary struct { ApplicationFields RouteSummaries []RouteSummary }
type Application ¶
type Application struct { ApplicationFields Stack Stack Routes []RouteSummary }
func (Application) ToParams ¶
func (model Application) ToParams() (params AppParams)
type ApplicationFields ¶
type DomainFields ¶
func (DomainFields) UrlForHost ¶
func (model DomainFields) UrlForHost(host string) string
type EventFields ¶
type InstanceState ¶
type InstanceState string
const ( InstanceStarting InstanceState = "starting" InstanceRunning InstanceState = "running" InstanceFlapping InstanceState = "flapping" InstanceDown InstanceState = "down" )
type Organization ¶
type Organization struct { OrganizationFields Spaces []SpaceFields Domains []DomainFields }
type OrganizationFields ¶
type OrganizationFields struct { Guid string Name string QuotaDefinition QuotaFields }
type QuotaFields ¶
func NewQuotaFields ¶
func NewQuotaFields(name string, memory uint64) (q QuotaFields)
type Route ¶
type Route struct { RouteSummary Space SpaceFields Apps []ApplicationFields }
type RouteFields ¶
type RouteSummary ¶
type RouteSummary struct { RouteFields Domain DomainFields }
func (RouteSummary) URL ¶
func (model RouteSummary) URL() string
type ServiceAuthTokenFields ¶
type ServiceBindingFields ¶
type ServiceBroker ¶
type ServiceInstance ¶
type ServiceInstance struct { ServiceInstanceFields ServiceBindings []ServiceBindingFields ServicePlan ServicePlanFields ServiceOffering ServiceOfferingFields }
func (ServiceInstance) IsUserProvided ¶
func (inst ServiceInstance) IsUserProvided() bool
type ServiceInstanceFields ¶
type ServiceOffering ¶
type ServiceOffering struct { ServiceOfferingFields Plans []ServicePlanFields }
type ServiceOfferingFields ¶
type ServiceOfferings ¶
type ServiceOfferings []ServiceOffering
func (ServiceOfferings) Len ¶
func (s ServiceOfferings) Len() int
func (ServiceOfferings) Less ¶
func (s ServiceOfferings) Less(i, j int) bool
func (ServiceOfferings) Swap ¶
func (s ServiceOfferings) Swap(i, j int)
type ServicePlan ¶
type ServicePlan struct { ServicePlanFields ServiceOffering ServiceOfferingFields }
type ServicePlanFields ¶
type Space ¶
type Space struct { SpaceFields Organization OrganizationFields Applications []ApplicationFields ServiceInstances []ServiceInstanceFields Domains []DomainFields }
type SpaceFields ¶
Source Files ¶
Click to show internal directories.
Click to hide internal directories.