Skip to content

Commit 275c904

Browse files
remove storage_size atrribute
1 parent f426207 commit 275c904

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

internal/provider/resource_appdata_dsource.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -283,10 +283,6 @@ func resourceAppdataDsource() *schema.Resource {
283283
Type: schema.TypeString,
284284
Computed: true,
285285
},
286-
"storage_size": {
287-
Type: schema.TypeInt,
288-
Computed: true,
289-
},
290286
"plugin_version": {
291287
Type: schema.TypeString,
292288
Computed: true,
@@ -529,7 +525,6 @@ func resourceDsourceRead(ctx context.Context, d *schema.ResourceData, meta inter
529525
d.Set("database_type", result.GetDatabaseType())
530526
d.Set("name", result.GetName())
531527
d.Set("is_replica", result.GetIsReplica())
532-
d.Set("storage_size", result.GetStorageSize())
533528
d.Set("plugin_version", result.GetPluginVersion())
534529
d.Set("creation_date", result.GetCreationDate().String())
535530
d.Set("group_name", result.GetGroupName())

internal/provider/resource_oracle_dsource.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -487,10 +487,6 @@ func resourceOracleDsource() *schema.Resource {
487487
Type: schema.TypeString,
488488
Computed: true,
489489
},
490-
"storage_size": {
491-
Type: schema.TypeInt,
492-
Computed: true,
493-
},
494490
"plugin_version": {
495491
Type: schema.TypeString,
496492
Computed: true,

0 commit comments

Comments
 (0)