Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Credentials ¶
type Credentials []string
Credentials is the collection of credential keys.
In order to encourage good design, this does not include the values even though they exist. Buildpacks should only extract values at startup/runtime and not embed them in image.
func (*Credentials) UnmarshalJSON ¶
func (c *Credentials) UnmarshalJSON(text []byte) error
type Service ¶
type Service struct {
// BindingName is the binding name of this service.
BindingName string `json:"binding_name"`
// Credentials is the collection of credential keys.
Credentials Credentials `json:"credentials"`
// InstanceName is the instance name of this service.
InstanceName string `json:"instance_name"`
// Label is the type of service.
Label string `json:"label"`
// Plan is the plan type of this service.
Plan string `json:"plan"`
// Tags is the collection of tags of the service.
Tags []string `json:"tags"`
}
Click to show internal directories.
Click to hide internal directories.