pulumi/sdk/go/common/diag/errors.go

83 lines
2.9 KiB
Go
Raw Normal View History

2018-05-22 21:43:36 +02:00
// Copyright 2016-2018, Pulumi Corporation.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package diag
import (
"github.com/pulumi/pulumi/sdk/v3/go/common/resource"
)
// newError registers a new error message underneath the given id.
func newError(urn resource.URN, id ID, message string) *Diag {
return &Diag{URN: urn, ID: id, Message: message}
}
// Plan and apply errors are in the [2000,3000) range.
func GetResourceOperationFailedError(urn resource.URN) *Diag {
2019-11-20 02:17:17 +01:00
return newError(urn, 2000, "%v")
}
func GetDuplicateResourceURNError(urn resource.URN) *Diag {
return newError(urn, 2001, "Duplicate resource URN '%v'; try giving it a unique name")
}
func GetResourceInvalidError(urn resource.URN) *Diag {
return newError(urn, 2002, "%v resource '%v' has a problem: %v")
}
func GetResourcePropertyInvalidValueError(urn resource.URN) *Diag {
return newError(urn, 2003, "%v resource '%v': property %v value %v has a problem: %v")
}
func GetPreviewFailedError(urn resource.URN) *Diag {
return newError(urn, 2005, "Preview failed: %v")
}
func GetBadProviderError(urn resource.URN) *Diag {
return newError(urn, 2006, "bad provider reference '%v' for resource '%v': %v")
}
func GetUnknownProviderError(urn resource.URN) *Diag {
return newError(urn, 2007, "unknown provider '%v' for resource '%v'")
}
Support aliases for renaming, re-typing, or re-parenting resources (#2774) Adds a new resource option `aliases` which can be used to rename a resource. When making a breaking change to the name or type of a resource or component, the old name can be added to the list of `aliases` for a resource to ensure that existing resources will be migrated to the new name instead of being deleted and replaced with the new named resource. There are two key places this change is implemented. The first is the step generator in the engine. When computing whether there is an old version of a registered resource, we now take into account the aliases specified on the registered resource. That is, we first look up the resource by its new URN in the old state, and then by any aliases provided (in order). This can allow the resource to be matched as a (potential) update to an existing resource with a different URN. The second is the core `Resource` constructor in the JavaScript (and soon Python) SDKs. This change ensures that when a parent resource is aliased, that all children implicitly inherit corresponding aliases. It is similar to how many other resource options are "inherited" implicitly from the parent. Four specific scenarios are explicitly tested as part of this PR: 1. Renaming a resource 2. Adopting a resource into a component (as the owner of both component and consumption codebases) 3. Renaming a component instance (as the owner of the consumption codebase without changes to the component) 4. Changing the type of a component (as the owner of the component codebase without changes to the consumption codebase) 4. Combining (1) and (3) to make both changes to a resource at the same time
2019-06-01 08:01:01 +02:00
func GetDuplicateResourceAliasError(urn resource.URN) *Diag {
return newError(urn, 2008,
"Duplicate resource alias '%v' applied to resource with URN '%v' conflicting with resource with URN '%v'",
)
}
2019-09-21 02:50:44 +02:00
func GetTargetCouldNotBeFoundError() *Diag {
return newError("", 2010, "Target '%v' could not be found in the stack.")
}
2019-09-21 02:50:44 +02:00
func GetTargetCouldNotBeFoundDidYouForgetError() *Diag {
return newError("", 2011, "Target '%v' could not be found in the stack. "+
2019-09-20 04:28:14 +02:00
"Did you forget to escape $ in your shell?")
}
func GetCannotDeleteParentResourceWithoutAlsoDeletingChildError(urn resource.URN) *Diag {
return newError(urn, 2012, "Cannot delete parent resource '%v' without also deleting child '%v'.")
}
func GetResourceWillBeCreatedButWasNotSpecifiedInTargetList(urn resource.URN) *Diag {
return newError(urn, 2013, `Resource '%v' depends on '%v' which was was not specified in --target list.`)
}
func GetResourceWillBeDestroyedButWasNotSpecifiedInTargetList(urn resource.URN) *Diag {
return newError(urn, 2014, `Resource '%v' will be destroyed but was not specified in --target list.
Either include resource in --target list or pass --target-dependents to proceed.`)
2019-09-20 04:28:14 +02:00
}