terraform/vendor/github.com/aws/aws-sdk-go/service/elasticache/waiters.go

200 lines
4.9 KiB
Go
Raw Normal View History

// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
package elasticache
import (
"github.com/aws/aws-sdk-go/private/waiter"
)
2016-10-17 23:21:08 +02:00
// WaitUntilCacheClusterAvailable uses the Amazon ElastiCache API operation
// DescribeCacheClusters to wait for a condition to be met before returning.
// If the condition is not meet within the max attempt window an error will
// be returned.
func (c *ElastiCache) WaitUntilCacheClusterAvailable(input *DescribeCacheClustersInput) error {
waiterCfg := waiter.Config{
Operation: "DescribeCacheClusters",
Delay: 15,
MaxAttempts: 40,
Acceptors: []waiter.WaitAcceptor{
{
State: "success",
Matcher: "pathAll",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "available",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "deleted",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "deleting",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "incompatible-network",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "restore-failed",
},
},
}
w := waiter.Waiter{
Client: c,
Input: input,
Config: waiterCfg,
}
return w.Wait()
}
2016-10-17 23:21:08 +02:00
// WaitUntilCacheClusterDeleted uses the Amazon ElastiCache API operation
// DescribeCacheClusters to wait for a condition to be met before returning.
// If the condition is not meet within the max attempt window an error will
// be returned.
func (c *ElastiCache) WaitUntilCacheClusterDeleted(input *DescribeCacheClustersInput) error {
waiterCfg := waiter.Config{
Operation: "DescribeCacheClusters",
Delay: 15,
MaxAttempts: 40,
Acceptors: []waiter.WaitAcceptor{
{
State: "success",
Matcher: "pathAll",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "deleted",
},
{
State: "success",
Matcher: "error",
Argument: "",
Expected: "CacheClusterNotFound",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "available",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "creating",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "incompatible-network",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "modifying",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "restore-failed",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "CacheClusters[].CacheClusterStatus",
Expected: "snapshotting",
},
},
}
w := waiter.Waiter{
Client: c,
Input: input,
Config: waiterCfg,
}
return w.Wait()
}
2016-10-17 23:21:08 +02:00
// WaitUntilReplicationGroupAvailable uses the Amazon ElastiCache API operation
// DescribeReplicationGroups to wait for a condition to be met before returning.
// If the condition is not meet within the max attempt window an error will
// be returned.
func (c *ElastiCache) WaitUntilReplicationGroupAvailable(input *DescribeReplicationGroupsInput) error {
waiterCfg := waiter.Config{
Operation: "DescribeReplicationGroups",
Delay: 15,
MaxAttempts: 40,
Acceptors: []waiter.WaitAcceptor{
{
State: "success",
Matcher: "pathAll",
Argument: "ReplicationGroups[].Status",
Expected: "available",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "ReplicationGroups[].Status",
Expected: "deleted",
},
},
}
w := waiter.Waiter{
Client: c,
Input: input,
Config: waiterCfg,
}
return w.Wait()
}
2016-10-17 23:21:08 +02:00
// WaitUntilReplicationGroupDeleted uses the Amazon ElastiCache API operation
// DescribeReplicationGroups to wait for a condition to be met before returning.
// If the condition is not meet within the max attempt window an error will
// be returned.
func (c *ElastiCache) WaitUntilReplicationGroupDeleted(input *DescribeReplicationGroupsInput) error {
waiterCfg := waiter.Config{
Operation: "DescribeReplicationGroups",
Delay: 15,
MaxAttempts: 40,
Acceptors: []waiter.WaitAcceptor{
{
State: "success",
Matcher: "pathAll",
Argument: "ReplicationGroups[].Status",
Expected: "deleted",
},
{
State: "failure",
Matcher: "pathAny",
Argument: "ReplicationGroups[].Status",
Expected: "available",
},
{
State: "success",
Matcher: "error",
Argument: "",
Expected: "ReplicationGroupNotFoundFault",
},
},
}
w := waiter.Waiter{
Client: c,
Input: input,
Config: waiterCfg,
}
return w.Wait()
}