63
63
// ServiceInstanceStateActive is the string representing a service instance in an active state.
64
64
ServiceInstanceStateActive = ServiceInstanceState ("active" )
65
65
66
+ // ServiceInstanceStateProvisioning is the string representing a service instance in a provisioning state.
67
+ ServiceInstanceStateProvisioning = ServiceInstanceState ("provisioning" )
68
+
69
+ // ServiceInstanceStateFailed is the string representing a service instance in a failed state.
70
+ ServiceInstanceStateFailed = ServiceInstanceState ("failed" )
71
+
66
72
// ServiceInstanceStateRemoved is the string representing a service instance in a removed state.
67
73
ServiceInstanceStateRemoved = ServiceInstanceState ("removed" )
68
74
)
74
80
// TransitGatewayStateAvailable is the string representing a transit gateway in available state.
75
81
TransitGatewayStateAvailable = TransitGatewayState ("available" )
76
82
83
+ // TransitGatewayStatePending is the string representing a transit gateway in pending state.
84
+ TransitGatewayStatePending = TransitGatewayState ("pending" )
85
+
86
+ // TransitGatewayStateFailed is the string representing a transit gateway in failed state.
87
+ TransitGatewayStateFailed = TransitGatewayState ("failed" )
88
+
77
89
// TransitGatewayStateDeletePending is the string representing a transit gateway in deleting state.
78
90
TransitGatewayStateDeletePending = TransitGatewayState ("deleting" )
79
91
)
@@ -84,6 +96,15 @@ type TransitGatewayConnectionState string
84
96
var (
85
97
// TransitGatewayConnectionStateAttached is the string representing a transit gateway connection in attached state.
86
98
TransitGatewayConnectionStateAttached = TransitGatewayConnectionState ("attached" )
99
+
100
+ // TransitGatewayConnectionStateFailed is the string representing a transit gateway connection in failed state.
101
+ TransitGatewayConnectionStateFailed = TransitGatewayConnectionState ("failed" )
102
+
103
+ // TransitGatewayConnectionStatePending is the string representing a transit gateway connection in pending state.
104
+ TransitGatewayConnectionStatePending = TransitGatewayConnectionState ("pending" )
105
+
106
+ // TransitGatewayConnectionStateDeleting is the string representing a transit gateway connection in deleting state.
107
+ TransitGatewayConnectionStateDeleting = TransitGatewayConnectionState ("deleting" )
87
108
)
88
109
89
110
// VPCLoadBalancerState describes the state of the load balancer.
@@ -96,16 +117,41 @@ var (
96
117
// VPCLoadBalancerStateCreatePending is the string representing the load balancer in a queued state.
97
118
VPCLoadBalancerStateCreatePending = VPCLoadBalancerState ("create_pending" )
98
119
99
- // VPCLoadBalancerStateDeletePending is the string representing the load balancer in a failed state.
120
+ // VPCLoadBalancerStateDeletePending is the string representing the load balancer in deleting state.
100
121
VPCLoadBalancerStateDeletePending = VPCLoadBalancerState ("delete_pending" )
101
122
)
102
123
124
+ // VPCSubnetState describes the state of a VPC Subnet.
125
+ type VPCSubnetState string
126
+
127
+ var (
128
+ // VPCSubnetStateDeleting is the string representing a VPC subnet in deleting state.
129
+ VPCSubnetStateDeleting = VPCSubnetState ("deleting" )
130
+ )
131
+
132
+ // VPCState describes the state of a VPC.
133
+ type VPCState string
134
+
135
+ var (
136
+ // VPCStatePending is the string representing a VPC in pending state.
137
+ VPCStatePending = VPCState ("pending" )
138
+
139
+ // VPCStateDeleting is the string representing a VPC in deleting state.
140
+ VPCStateDeleting = VPCState ("deleting" )
141
+ )
142
+
103
143
// DHCPServerState describes the state of the DHCP Server.
104
144
type DHCPServerState string
105
145
106
146
var (
107
147
// DHCPServerStateActive indicates the active state of DHCP server.
108
148
DHCPServerStateActive = DHCPServerState ("ACTIVE" )
149
+
150
+ // DHCPServerStateBuild indicates the build state of DHCP server.
151
+ DHCPServerStateBuild = DHCPServerState ("BUILD" )
152
+
153
+ // DHCPServerStateError indicates the error state of DHCP server.
154
+ DHCPServerStateError = DHCPServerState ("ERROR" )
109
155
)
110
156
111
157
// DeletePolicy defines the policy used to identify images to be preserved.
0 commit comments