Documentation ¶
Index ¶
- Constants
- Variables
- type AppFileFields
- type AppInstanceFields
- type AppParams
- type Application
- type ApplicationFields
- type Buildpack
- type DomainFields
- type Environment
- type EnvironmentVariable
- type EventFields
- type FeatureFlag
- type InstanceState
- type LastOperationFields
- type Organization
- type OrganizationFields
- type PluginRepo
- type QuotaFields
- type Route
- type RouteSummary
- type SecurityGroup
- type SecurityGroupFields
- type SecurityGroupParams
- type ServiceAuthTokenFields
- type ServiceBindingFields
- type ServiceBroker
- type ServiceInstance
- type ServiceInstanceFields
- type ServiceOffering
- type ServiceOfferingFields
- type ServiceOfferings
- type ServicePlan
- type ServicePlanFields
- type ServicePlanSummary
- type ServicePlanVisibilityFields
- type Space
- type SpaceFields
- type SpaceQuota
- type Stack
- type UserFields
- type UserProvidedService
- type UserProvidedServiceEntity
- type UserProvidedServiceSummary
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 *int64 Domains *[]string EnvironmentVars *map[string]interface{} Guid *string HealthCheckTimeout *int Hosts *[]string InstanceCount *int Memory *int64 Name *string NoHostname bool NoRoute bool UseRandomHostname bool Path *string ServicesToBind *[]string SpaceGuid *string StackGuid *string StackName *string State *string }
func (*AppParams) IsHostEmpty ¶
type Application ¶
type Application struct { ApplicationFields Stack *Stack Routes []RouteSummary Services []ServicePlanSummary }
func (Application) HasRoute ¶
func (model Application) HasRoute(route Route) bool
func (Application) ToParams ¶
func (model Application) ToParams() (params AppParams)
type ApplicationFields ¶
type ApplicationFields struct { Guid string Name string BuildpackUrl string Command string Diego bool DetectedStartCommand string DiskQuota int64 // in Megabytes EnvironmentVars map[string]interface{} InstanceCount int Memory int64 // in Megabytes RunningInstances int HealthCheckTimeout int State string SpaceGuid string PackageUpdatedAt *time.Time }
type DomainFields ¶
func (DomainFields) UrlForHost ¶
func (model DomainFields) UrlForHost(host string) string
type Environment ¶
type Environment struct { System map[string]interface{} `json:"system_env_json,omitempty"` Environment map[string]interface{} `json:"environment_json,omitempty"` Running map[string]interface{} `json:"running_env_json,omitempty"` Staging map[string]interface{} `json:"staging_env_json,omitempty"` Application map[string]interface{} `json:"application_env_json,omitempty"` }
func NewEnvironment ¶
func NewEnvironment() *Environment
type EnvironmentVariable ¶
func NewEnvironmentVariable ¶
func NewEnvironmentVariable(name string, value string) (e EnvironmentVariable)
type EventFields ¶
type FeatureFlag ¶
type FeatureFlag struct { Name string `json:"name"` Enabled bool `json:"enabled"` ErrorMessage string `json:"error_message"` }
func NewFeatureFlag ¶
func NewFeatureFlag(name string, enabled bool, errorMessage string) (f FeatureFlag)
type InstanceState ¶
type InstanceState string
const ( InstanceStarting InstanceState = "starting" InstanceRunning InstanceState = "running" InstanceFlapping InstanceState = "flapping" InstanceDown InstanceState = "down" InstanceCrashed InstanceState = "crashed" )
type LastOperationFields ¶
type Organization ¶
type Organization struct { OrganizationFields Spaces []SpaceFields Domains []DomainFields SpaceQuotas []SpaceQuota }
type OrganizationFields ¶
type OrganizationFields struct { Guid string Name string QuotaDefinition QuotaFields }
type PluginRepo ¶
type QuotaFields ¶
type QuotaFields struct { Guid string `json:"guid,omitempty"` Name string `json:"name"` MemoryLimit int64 `json:"memory_limit"` // in Megabytes InstanceMemoryLimit int64 `json:"instance_memory_limit"` // in Megabytes RoutesLimit int `json:"total_routes"` ServicesLimit int `json:"total_services"` NonBasicServicesAllowed bool `json:"non_basic_services_allowed"` }
func NewQuotaFields ¶
type Route ¶
type Route struct { Guid string Host string Domain DomainFields Space SpaceFields Apps []ApplicationFields }
type RouteSummary ¶
type RouteSummary struct { Guid string Host string Domain DomainFields }
func (RouteSummary) URL ¶
func (model RouteSummary) URL() string
type SecurityGroup ¶
type SecurityGroup struct { SecurityGroupFields Spaces []Space }
represents a fully instantiated model returned by the CC (e.g.: with its attributes and the fields for its child objects)
type SecurityGroupFields ¶
represents just the attributes for an security group
type SecurityGroupParams ¶
type SecurityGroupParams struct { Name string `json:"name,omitempty"` Guid string `json:"guid,omitempty"` Rules []map[string]interface{} `json:"rules"` }
represents the JSON that we send up to CC when the user creates / updates a record
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 ServicePlanFields struct { Guid string Name string Free bool Public bool Description string Active bool ServiceOfferingGuid string OrgNames []string }
func (ServicePlanFields) OrgHasVisibility ¶
func (servicePlanFields ServicePlanFields) OrgHasVisibility(orgName string) bool
type ServicePlanSummary ¶
type Space ¶
type Space struct { SpaceFields Organization OrganizationFields Applications []ApplicationFields ServiceInstances []ServiceInstanceFields Domains []DomainFields SecurityGroups []SecurityGroupFields SpaceQuotaGuid string }
type SpaceFields ¶
type SpaceQuota ¶
type SpaceQuota struct { Guid string `json:"guid,omitempty"` Name string `json:"name"` MemoryLimit int64 `json:"memory_limit"` // in Megabytes InstanceMemoryLimit int64 `json:"instance_memory_limit"` // in Megabytes RoutesLimit int `json:"total_routes"` ServicesLimit int `json:"total_services"` NonBasicServicesAllowed bool `json:"non_basic_services_allowed"` OrgGuid string `json:"organization_guid"` }
func NewSpaceQuota ¶
type UserFields ¶
type UserProvidedService ¶
type UserProvidedServiceEntity ¶
type UserProvidedServiceEntity struct {
UserProvidedService `json:"entity"`
}
type UserProvidedServiceSummary ¶
type UserProvidedServiceSummary struct { Total int `json:"total_results"` Resources []UserProvidedServiceEntity `json:"resources"` }
Source Files ¶
- app_event.go
- app_file.go
- app_instance.go
- application.go
- buildpack.go
- domain.go
- environment.go
- environment_variable.go
- feature_flag.go
- organization.go
- plugin_repo.go
- quota.go
- route.go
- security_group.go
- service_auth_token.go
- service_binding.go
- service_broker.go
- service_instance.go
- service_offering.go
- service_plan.go
- service_plan_visibility.go
- space.go
- space_quota.go
- stack.go
- user.go
- user_provided_service.go
- user_roles.go
Click to show internal directories.
Click to hide internal directories.