本文整理匯總了Golang中github.com/cloudfoundry/cli/cf/api/resources.ApplicationResource類的典型用法代碼示例。如果您正苦於以下問題:Golang ApplicationResource類的具體用法?Golang ApplicationResource怎麽用?Golang ApplicationResource使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了ApplicationResource類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: GetApp
func (repo CloudControllerApplicationRepository) GetApp(appGuid string) (app models.Application, apiErr error) {
path := fmt.Sprintf("%s/v2/apps/%s", repo.config.ApiEndpoint(), appGuid)
appResources := new(resources.ApplicationResource)
apiErr = repo.gateway.GetResource(path, appResources)
if apiErr != nil {
return
}
app = appResources.ToModel()
return
}
示例2: Create
func (repo CloudControllerApplicationRepository) Create(params models.AppParams) (models.Application, error) {
appResource := resources.NewApplicationEntityFromAppParams(params)
data, err := json.Marshal(appResource)
if err != nil {
return models.Application{}, fmt.Errorf("%s: %s", T("Failed to marshal JSON"), err.Error())
}
resource := new(resources.ApplicationResource)
err = repo.gateway.CreateResource(repo.config.APIEndpoint(), "/v2/apps", bytes.NewReader(data), resource)
if err != nil {
return models.Application{}, err
}
return resource.ToModel(), nil
}
示例3: Create
func (repo CloudControllerApplicationRepository) Create(params models.AppParams) (createdApp models.Application, apiErr error) {
data, err := repo.formatAppJSON(params)
if err != nil {
apiErr = errors.NewWithError(T("Failed to marshal JSON"), err)
return
}
resource := new(resources.ApplicationResource)
apiErr = repo.gateway.CreateResource(repo.config.ApiEndpoint(), "/v2/apps", strings.NewReader(data), resource)
if apiErr != nil {
return
}
createdApp = resource.ToModel()
return
}
示例4: Update
func (repo CloudControllerApplicationRepository) Update(appGuid string, params models.AppParams) (updatedApp models.Application, apiErr error) {
data, err := repo.formatAppJSON(params)
if err != nil {
apiErr = errors.NewWithError(T("Failed to marshal JSON"), err)
return
}
path := fmt.Sprintf("/v2/apps/%s?inline-relations-depth=1", appGuid)
resource := new(resources.ApplicationResource)
apiErr = repo.gateway.UpdateResource(repo.config.ApiEndpoint(), path, strings.NewReader(data), resource)
if apiErr != nil {
return
}
updatedApp = resource.ToModel()
return
}
示例5: Update
func (repo CloudControllerApplicationRepository) Update(appGUID string, params models.AppParams) (updatedApp models.Application, apiErr error) {
appResource := resources.NewApplicationEntityFromAppParams(params)
data, err := json.Marshal(appResource)
if err != nil {
return models.Application{}, fmt.Errorf("%s: %s", T("Failed to marshal JSON"), err.Error())
}
path := fmt.Sprintf("/v2/apps/%s?inline-relations-depth=1", appGUID)
resource := new(resources.ApplicationResource)
apiErr = repo.gateway.UpdateResource(repo.config.APIEndpoint(), path, bytes.NewReader(data), resource)
if apiErr != nil {
return
}
updatedApp = resource.ToModel()
return
}
示例6:
package resources_test
import (
"encoding/json"
"time"
"github.com/cloudfoundry/cli/cf/api/resources"
"github.com/cloudfoundry/cli/cf/models"
testtime "github.com/cloudfoundry/cli/testhelpers/time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Application resources", func() {
var resource *resources.ApplicationResource
Describe("New Application", func() {
BeforeEach(func() {
resource = new(resources.ApplicationResource)
})
It("Adds a packageUpdatedAt timestamp", func() {
err := json.Unmarshal([]byte(`
{
"metadata": {
"guid":"application-1-guid"
},
"entity": {
"package_updated_at": "2013-10-07T16:51:07+00:00"
}
}`), &resource)