Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check for done operations before waiting on them #1632

Merged
merged 1 commit into from
Jun 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions google/appengine_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ func appEngineOperationWait(client *appengine.APIService, op *appengine.Operatio
}

func appEngineOperationWaitTime(client *appengine.APIService, op *appengine.Operation, appId, activity string, timeoutMin int) error {
if op.Done {
if op.Error != nil {
return AppEngineOperationError(*op.Error)
}
return nil
}

w := &AppEngineOperationWaiter{
Service: client,
Op: op,
Expand Down
7 changes: 7 additions & 0 deletions google/cloudfunctions_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ func cloudFunctionsOperationWait(client *cloudfunctions.Service,

func cloudFunctionsOperationWaitTime(client *cloudfunctions.Service, op *cloudfunctions.Operation,
activity string, timeoutMin int) error {
if op.Done {
if op.Error != nil {
return fmt.Errorf(op.Error.Message)
}
return nil
}

w := &CloudFunctionsOperationWaiter{
Service: client,
Op: op,
Expand Down
7 changes: 7 additions & 0 deletions google/compute_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ func computeOperationWait(client *compute.Service, op *compute.Operation, projec
}

func computeOperationWaitTime(client *compute.Service, op *compute.Operation, project, activity string, timeoutMin int) error {
if op.Status == "DONE" {
if op.Error != nil {
return ComputeOperationError(*op.Error)
}
return nil
}

w := &ComputeOperationWaiter{
Service: client,
Op: op,
Expand Down
14 changes: 14 additions & 0 deletions google/container_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,13 @@ func (w *ContainerBetaOperationWaiter) RefreshFunc() resource.StateRefreshFunc {
}

func containerOperationWait(config *Config, op *container.Operation, project, zone, activity string, timeoutMinutes, minTimeoutSeconds int) error {
if op.Status == "DONE" {
if op.StatusMessage != "" {
return fmt.Errorf(op.StatusMessage)
}
return nil
}

w := &ContainerOperationWaiter{
Service: config.clientContainer,
Op: op,
Expand All @@ -92,6 +99,13 @@ func containerOperationWait(config *Config, op *container.Operation, project, zo
}

func containerBetaOperationWait(config *Config, op *containerBeta.Operation, project, location, activity string, timeoutMinutes, minTimeoutSeconds int) error {
if op.Status == "DONE" {
if op.StatusMessage != "" {
return fmt.Errorf(op.StatusMessage)
}
return nil
}

w := &ContainerBetaOperationWaiter{
Service: config.clientContainerBeta,
Op: op,
Expand Down
7 changes: 7 additions & 0 deletions google/dataproc_cluster_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ func (w *DataprocClusterOperationWaiter) RefreshFunc() resource.StateRefreshFunc
}

func dataprocClusterOperationWait(config *Config, op *dataproc.Operation, activity string, timeoutMinutes, minTimeoutSeconds int) error {
if op.Done {
if op.Error != nil {
return fmt.Errorf("Error code %v, message: %s", op.Error.Code, op.Error.Message)
}
return nil
}

w := &DataprocClusterOperationWaiter{
Service: config.clientDataproc,
Op: op,
Expand Down
9 changes: 7 additions & 2 deletions google/dns_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package google

import (
"fmt"
"github.com/hashicorp/terraform/helper/resource"
"google.golang.org/api/dns/v1beta2"
"log"
"time"

"github.com/hashicorp/terraform/helper/resource"
"google.golang.org/api/dns/v1beta2"
)

type DnsOperationWaiter struct {
Expand Down Expand Up @@ -48,6 +49,10 @@ func dnsOperationWait(service *dns.Service, op *dns.Operation, project, activity
}

func dnsOperationWaitTime(service *dns.Service, op *dns.Operation, project, activity string, timeoutMin int) error {
if op.Status == "done" {
return nil
}

w := &DnsOperationWaiter{
Service: service.ManagedZoneOperations,
Op: op,
Expand Down
7 changes: 7 additions & 0 deletions google/resourcemanager_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ func resourceManagerOperationWait(service *cloudresourcemanager.Service, op *clo
}

func resourceManagerOperationWaitTime(service *cloudresourcemanager.Service, op *cloudresourcemanager.Operation, activity string, timeoutMin int) error {
if op.Done {
if op.Error != nil {
return fmt.Errorf("Error code %v, message: %s", op.Error.Code, op.Error.Message)
}
return nil
}

w := &ResourceManagerOperationWaiter{
Service: service,
Op: op,
Expand Down
7 changes: 7 additions & 0 deletions google/serviceman_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ func serviceManagementOperationWait(config *Config, op *servicemanagement.Operat
}

func serviceManagementOperationWaitTime(config *Config, op *servicemanagement.Operation, activity string, timeoutMin int) (googleapi.RawMessage, error) {
if op.Done {
if op.Error != nil {
return nil, fmt.Errorf("Error code %v, message: %s", op.Error.Code, op.Error.Message)
}
return op.Response, nil
}

w := &ServiceManagementOperationWaiter{
Service: config.clientServiceMan,
Op: op,
Expand Down
7 changes: 7 additions & 0 deletions google/serviceusage_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ func serviceUsageOperationWait(config *Config, op *serviceusage.Operation, activ
}

func serviceUsageOperationWaitTime(config *Config, op *serviceusage.Operation, activity string, timeoutMin int) (googleapi.RawMessage, error) {
if op.Done {
if op.Error != nil {
return nil, fmt.Errorf("Error code %v, message: %s", op.Error.Code, op.Error.Message)
}
return op.Response, nil
}

w := &serviceUsageOperationWaiter{
Service: config.clientServiceUsage,
Op: op,
Expand Down
7 changes: 7 additions & 0 deletions google/spanner_database_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ func (w *SpannerDatabaseOperationWaiter) RefreshFunc() resource.StateRefreshFunc
}

func spannerDatabaseOperationWait(config *Config, op *spanner.Operation, activity string, timeoutMin int) error {
if op.Done {
if op.Error != nil {
return fmt.Errorf("Error code %v, message: %s", op.Error.Code, op.Error.Message)
}
return nil
}

w := &SpannerDatabaseOperationWaiter{
Service: config.clientSpanner,
Op: op,
Expand Down
7 changes: 7 additions & 0 deletions google/spanner_instance_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ func (w *SpannerInstanceOperationWaiter) RefreshFunc() resource.StateRefreshFunc
}

func spannerInstanceOperationWait(config *Config, op *spanner.Operation, activity string, timeoutMin int) error {
if op.Done {
if op.Error != nil {
return fmt.Errorf("Error code %v, message: %s", op.Error.Code, op.Error.Message)
}
return nil
}

w := &SpannerInstanceOperationWaiter{
Service: config.clientSpanner,
Op: op,
Expand Down
7 changes: 7 additions & 0 deletions google/sqladmin_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ func sqladminOperationWait(config *Config, op *sqladmin.Operation, project, acti
}

func sqladminOperationWaitTime(config *Config, op *sqladmin.Operation, project, activity string, timeoutMinutes int) error {
if op.Status == "DONE" {
if op.Error != nil {
return SqlAdminOperationError(*op.Error)
}
return nil
}

w := &SqlAdminOperationWaiter{
Service: config.clientSqlAdmin,
Op: op,
Expand Down