File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,10 +22,13 @@ const (
2222)
2323
2424var (
25- ErrInstanceNotFound = errors .New ("instance not found" )
25+ ErrInstanceNotFound = errors .New ("instance not found" )
26+ // Deprecated: ErrInstanceStatusUndefined is no longer used and will be removed after 2026-11-07
2627 ErrInstanceStatusUndefined = errors .New ("instance status undefined" )
27- ErrInstanceCreationFailed = errors .New ("instance creation failed" )
28- ErrInstanceIsBeingDeleted = errors .New ("instance is being deleted" )
28+ // Deprecated: ErrInstanceCreationFailed is no longer used and will be removed after 2026-11-07
29+ ErrInstanceCreationFailed = errors .New ("instance creation failed" )
30+ // Deprecated: ErrInstanceIsBeingDeleted is no longer used and will be removed after 2026-11-07
31+ ErrInstanceIsBeingDeleted = errors .New ("instance is being deleted" )
2932)
3033
3134// createOrUpdateInstanceWaitHandler contains the shared logic for waiting on instance creation or updates.
Original file line number Diff line number Diff line change @@ -17,8 +17,10 @@ const timeoutMinutes time.Duration = 10
1717var (
1818 ErrInstanceNotFound = errors .New ("instance not found" )
1919 ErrInstanceStatusUndefined = errors .New ("instance status undefined" )
20- ErrInstanceCreationFailed = errors .New ("instance creation failed" )
21- ErrInstanceIsBeingDeleted = errors .New ("instance is being deleted" )
20+ // Deprecated: ErrInstanceCreationFailed is no longer used and will be removed after 2026-11-07
21+ ErrInstanceCreationFailed = errors .New ("instance creation failed" )
22+ // Deprecated: ErrInstanceIsBeingDeleted is no longer used and will be removed after 2026-11-07
23+ ErrInstanceIsBeingDeleted = errors .New ("instance is being deleted" )
2224)
2325
2426// EdgeCloudApiClient is the interface for Edge Cloud API calls which require a waiter.
You can’t perform that action at this time.
0 commit comments