Documentation ¶
Index ¶
Constants ¶
View Source
const (
DefaultInitTimeout = 5 * time.Minute
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CFDataClient ¶
type Client ¶
type Client struct {
Client *cfclient.Client
}
func (*Client) ListServicePlans ¶
func (*Client) ListServices ¶
func (*Client) ListSpaces ¶ added in v0.38.0
type Pagination ¶ added in v0.100.0
type Pagination struct { TotalResults int `json:"total_results"` TotalPages int `json:"total_pages"` First struct { Href string `json:"href"` } `json:"first"` Last struct { Href string `json:"href"` } `json:"last"` Next struct { Href string `json:"href"` } `json:"next"` Previous struct { Href string `json:"href"` } `json:"previous"` }
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
func (*Store) CollectOrgs ¶ added in v0.38.0
func (*Store) CollectServicePlans ¶
func (*Store) CollectServices ¶
func (*Store) CollectSpaces ¶ added in v0.38.0
type V3Org ¶ added in v0.83.0
type V3Org struct { Guid string `json:"guid"` Name string `json:"name"` CreatedAt string `json:"created_at"` UpdatedAt string `json:"updated_at"` Metadata V3OrgMetadata `json:"metadata"` Relationships V3OrgRelationships `json:"relationships"` }
type V3OrgMetadata ¶ added in v0.83.0
type V3OrgMetadata struct {
Annotations V3OrgMetadataAnnotations `json:"annotations"`
}
type V3OrgMetadataAnnotations ¶ added in v0.83.0
type V3OrgMetadataAnnotations struct {
Owner string `json:"owner"`
}
type V3OrgRelationships ¶ added in v0.83.0
type V3OrgRelationships struct {
Quota V3OrgRelationshipsQuota `json:"quota"`
}
type V3OrgRelationshipsQuota ¶ added in v0.83.0
type V3OrgRelationshipsQuota struct {
Data V3OrgRelationshipsQuotaData `json:"data"`
}
type V3OrgRelationshipsQuotaData ¶ added in v0.83.0
type V3OrgRelationshipsQuotaData struct {
Guid string `json:"guid"`
}
type V3OrgsResponse ¶ added in v0.83.0
type V3OrgsResponse struct { Pagination Pagination `json:"pagination"` Resources []V3Org `json:"resources"` }
Click to show internal directories.
Click to hide internal directories.