Skip to content

Commit

Permalink
chore: updated vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
Edgar López committed Nov 24, 2020
1 parent 8e9c23f commit 38ed624
Show file tree
Hide file tree
Showing 23 changed files with 246 additions and 2,165 deletions.
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module github.com/terraform-providers/terraform-provider-nutanix
require (
github.com/client9/misspell v0.3.4
github.com/golangci/golangci-lint v1.25.0
github.com/hashicorp/terraform v0.13.5
github.com/hashicorp/terraform-plugin-sdk v1.7.0
github.com/mitchellh/gox v1.0.1
github.com/spf13/cast v1.3.1
Expand Down
236 changes: 0 additions & 236 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion nutanix/data_source_protection_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
)

func dataSourceNutanixProtectionRule() *schema.Resource {
Expand Down
4 changes: 2 additions & 2 deletions nutanix/data_source_protection_rule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"testing"

"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
)

func TestAccNutanixProtectionRuleDataSource_basic(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions nutanix/data_source_protection_rules.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package nutanix

import (
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
v3 "github.com/terraform-providers/terraform-provider-nutanix/client/v3"
)

Expand Down
2 changes: 1 addition & 1 deletion nutanix/data_source_protection_rules_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package nutanix
import (
"testing"

"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
)

func TestAccNutanixProtectionRulesDataSource_basic(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion nutanix/data_source_recovery_plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
)

func dataSourceNutanixRecoveryPlan() *schema.Resource {
Expand Down
4 changes: 2 additions & 2 deletions nutanix/data_source_recovery_plan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"testing"

"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
)

func TestAccNutanixRecoveryPlanDataSource_basic(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions nutanix/data_source_recovery_plans.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package nutanix

import (
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
v3 "github.com/terraform-providers/terraform-provider-nutanix/client/v3"
)

Expand Down
2 changes: 1 addition & 1 deletion nutanix/data_source_recovery_plans_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package nutanix
import (
"testing"

"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
)

func TestAccNutanixRecoveryPlansDataSource_basic(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions nutanix/resource_nutanix_protection_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"log"
"strings"

"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/spf13/cast"
v3 "github.com/terraform-providers/terraform-provider-nutanix/client/v3"
"github.com/terraform-providers/terraform-provider-nutanix/utils"
Expand Down
6 changes: 3 additions & 3 deletions nutanix/resource_nutanix_protection_rule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package nutanix

import (
"fmt"
"github.com/hashicorp/terraform-plugin-sdk/terraform"
"strings"
"testing"
"time"

"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
)

func TestAccNutanixProtectionRule_basic(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions nutanix/resource_nutanix_recovery_plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"log"
"strings"

"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/spf13/cast"
v3 "github.com/terraform-providers/terraform-provider-nutanix/client/v3"
"github.com/terraform-providers/terraform-provider-nutanix/utils"
Expand Down
6 changes: 3 additions & 3 deletions nutanix/resource_nutanix_recovery_plan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package nutanix

import (
"fmt"
"github.com/hashicorp/terraform-plugin-sdk/terraform"
"strings"
"testing"
"time"

"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
)

func TestAccNutanixRecoveryPlan_basic(t *testing.T) {
Expand Down
12 changes: 4 additions & 8 deletions vendor/golang.org/x/tools/go/gcexportdata/gcexportdata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 38ed624

Please sign in to comment.