Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 78987ec

Browse files
Amulyam24Karthik-K-N
authored andcommittedFeb 9, 2024
Add delete cluster flow
1 parent 05a4210 commit 78987ec

File tree

11 files changed

+328
-37
lines changed

11 files changed

+328
-37
lines changed
 

‎api/v1beta2/types.go

+19
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,25 @@ var (
5353
PowerVSImageStateImporting = PowerVSImageState("importing")
5454
)
5555

56+
// ServiceInstanceState describes the state of a service instance.
57+
type ServiceInstanceState string
58+
59+
var (
60+
// ServiceInstanceStateActive is the string representing a service instance in an active state.
61+
ServiceInstanceStateActive = ServiceInstanceState("active")
62+
63+
// ServiceInstanceStateRemoved is the string representing a service instance in a removed state.
64+
ServiceInstanceStateRemoved = ServiceInstanceState("removed")
65+
)
66+
67+
// TransitGatewayState describes the state of an IBM Transit Gateway.
68+
type TransitGatewayState string
69+
70+
var (
71+
// TransitGatewayStateDeletePending is the string representing a transit gateway in deleting state.
72+
TransitGatewayStateDeletePending = TransitGatewayState("deleting")
73+
)
74+
5675
// VPCLoadBalancerState describes the state of the load balancer.
5776
type VPCLoadBalancerState string
5877

0 commit comments

Comments
 (0)
Please sign in to comment.