Skip to content

Commit d037728

Browse files
author
Uddipaan Hazarika
committed
DLPXECO-11586 | Updated to dct sdk for v2025.1.2
1 parent 437cb25 commit d037728

13 files changed

+15
-13
lines changed

docs/resources/appdata_dsource.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ resource "delphix_appdata_dsource" "dsource_name" {
125125

126126
* `make_current_account_owner` - (Required) Whether the account creating this reporting schedule must be configured as owner of the reporting schedule.
127127

128+
* `rollback_on_failure` - Dsource linking operation when fails during snapsync creates a tainted dsource on the engine. Setting this flag to true will remove the tainted dsource from state as well as engine. By default, it is set to false, where the tainted dsource is maintained on the terraform state.
129+
128130
* `description` - The notes/description for the dSource.
129131

130132
* `link_type` - (Required) The type of link to create. Default is AppDataDirect.

docs/resources/oracle_dsource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ resource "delphix_oracle_dsource" "test_oracle_dsource" {
5252
* `source_value` - (Required) ID or name of the source to link.
5353
* `description` - The notes (or description) for the dSource.
5454
* `group_id` - ID of the Delphix Continuous Data dataset group where this dSource should belong to. This value is not reflected in DCT. Tags are recommended.
55-
55+
* `rollback_on_failure` - Dsource linking operation when fails during snapsync creates a tainted dsource on the engine. Setting this flag to true will remove the tainted dsource from state as well as engine. By default, it is set to false, where the tainted dsource is maintained on the terraform state.
5656

5757
### Full Backup and Transaction Log Requirements
5858

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.22.0
55
toolchain go1.22.6
66

77
require (
8-
github.com/delphix/dct-sdk-go/v23 v23.0.0
8+
github.com/delphix/dct-sdk-go/v25 v25.1.2
99
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0
1010
)
1111

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ github.com/cyphar/filepath-securejoin v0.2.4/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxG
1919
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
2020
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
2121
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
22-
github.com/delphix/dct-sdk-go/v23 v23.0.0 h1:DsgjOfqkWTomM6gQGazZ5R1giKVHn3FIN7GF/vVS9Zk=
23-
github.com/delphix/dct-sdk-go/v23 v23.0.0/go.mod h1:RWuRLg8IESAoh5XU5D35V8TN6eLCRRSnl5jWkjkr+aA=
22+
github.com/delphix/dct-sdk-go/v25 v25.1.2 h1:wiJui4cZB4xK9Znu9JdWb5N3rKqbnz1oXWaqLXjGHnE=
23+
github.com/delphix/dct-sdk-go/v25 v25.1.2/go.mod h1:Y//bIbAZP6SZhLLZAQMxEfeRXvsvKQwu/kSR8a5hfqc=
2424
github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=
2525
github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ=
2626
github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk=

internal/provider/provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"crypto/tls"
66
"net/http"
77

8-
dctapi "github.com/delphix/dct-sdk-go/v23"
8+
dctapi "github.com/delphix/dct-sdk-go/v25"
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"

internal/provider/resource_appdata_dsource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"encoding/json"
66
"net/http"
77

8-
dctapi "github.com/delphix/dct-sdk-go/v23"
8+
dctapi "github.com/delphix/dct-sdk-go/v25"
99
"github.com/hashicorp/terraform-plugin-log/tflog"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"

internal/provider/resource_database_postgresql.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net/http"
66
"strings"
77

8-
dctapi "github.com/delphix/dct-sdk-go/v23"
8+
dctapi "github.com/delphix/dct-sdk-go/v25"
99
"github.com/hashicorp/terraform-plugin-log/tflog"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"

internal/provider/resource_environment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"github.com/hashicorp/terraform-plugin-log/tflog"
88

9-
dctapi "github.com/delphix/dct-sdk-go/v23"
9+
dctapi "github.com/delphix/dct-sdk-go/v25"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1212
)

internal/provider/resource_oracle_dsource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/hashicorp/terraform-plugin-log/tflog"
99

10-
dctapi "github.com/delphix/dct-sdk-go/v23"
10+
dctapi "github.com/delphix/dct-sdk-go/v25"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1212
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1313
)

internal/provider/resource_vdb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-log/tflog"
1111

12-
dctapi "github.com/delphix/dct-sdk-go/v23"
12+
dctapi "github.com/delphix/dct-sdk-go/v25"
1313
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1414
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1515
)

0 commit comments

Comments
 (0)