Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import (

func dataSourceManagementNuageDataCenterServer() *schema.Resource {
return &schema.Resource{
Read: dataSourceNuageDataCenterServerRead,
Read: dataSourceNuageDataCenterServerRead,
DeprecationMessage: "This Data Source will be deprecated In R82.10",
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ func resourceManagementNuageDataCenterServer() *schema.Resource {
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
DeprecationMessage: "This resource will be deprecated In R82.10",
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ description: |- Use this data source to get information on an existing Nuage Dat

Use this data source to get information on an existing Nuage Data Center Server.

### Note:
Nuage DC is deprecated from R82.10 and above

## Example Usage

```hcl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ description: |- This resource allows you to execute Check Point nuage data cente

This resource allows you to execute Check Point Nuage Data Center Server.

### Note:
Nuage DC is deprecated from R82.10 and above

## Example Usage

```hcl
Expand Down