Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add experimental --upgrade flag to update-service #1635

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion actor/v2action/actor.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Package v2action contains the business logic for the commands/v2 package
// Package v2action contains the business logic for the commands/v6 package
// Actors in this package should only call CC v2 API endpoints
package v2action

// Warnings is a list of warnings returned back from the cloud controller
Expand Down
1 change: 1 addition & 0 deletions actor/v2action/cloud_controller_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ type CloudControllerClient interface {
UpdateRouteApplication(routeGUID string, appGUID string) (ccv2.Route, ccv2.Warnings, error)
UpdateSecurityGroupSpace(securityGroupGUID string, spaceGUID string) (ccv2.Warnings, error)
UpdateSecurityGroupStagingSpace(securityGroupGUID string, spaceGUID string) (ccv2.Warnings, error)
UpdateServiceInstanceMaintenanceInfo(serviceInstanceGUID string, maintenanceInfo ccv2.MaintenanceInfo) (ccv2.Warnings, error)
UpdateServicePlan(guid string, public bool) (ccv2.Warnings, error)
UpdateSpaceDeveloper(spaceGUID string, uaaID string) (ccv2.Warnings, error)
UpdateSpaceDeveloperByUsername(spaceGUID string, username string) (ccv2.Warnings, error)
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

121 changes: 121 additions & 0 deletions actor/v2action/composite/compositefakes/fake_get_service_plan_actor.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading