-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
617 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "nxos_feature_ngmvpn Data Source - terraform-provider-nxos" | ||
subcategory: "Feature" | ||
description: |- | ||
This data source can read the Next Generation Multicast VPN Feature. | ||
API Documentation: fmNgmvpn https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/Feature%20Management/fm:NgMvpn/ | ||
--- | ||
|
||
# nxos_feature_ngmvpn (Data Source) | ||
|
||
This data source can read the Next Generation Multicast VPN Feature. | ||
|
||
- API Documentation: [fmNgmvpn](https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/Feature%20Management/fm:NgMvpn/) | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "nxos_feature_ngmvpn" "example" { | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `device` (String) A device name from the provider configuration. | ||
|
||
### Read-Only | ||
|
||
- `admin_state` (String) Administrative state. | ||
- `id` (String) The distinguished name of the object. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "nxos_feature_ngmvpn Resource - terraform-provider-nxos" | ||
subcategory: "Feature" | ||
description: |- | ||
This resource can manage the Next Generation Multicast VPN Feature. | ||
API Documentation: fmNgmvpn https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/Feature%20Management/fm:NgMvpn/ | ||
--- | ||
|
||
# nxos_feature_ngmvpn (Resource) | ||
|
||
This resource can manage the Next Generation Multicast VPN Feature. | ||
|
||
- API Documentation: [fmNgmvpn](https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/Feature%20Management/fm:NgMvpn/) | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "nxos_feature_ngmvpn" "example" { | ||
admin_state = "enabled" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `admin_state` (String) Administrative state. | ||
- Choices: `enabled`, `disabled` | ||
|
||
### Optional | ||
|
||
- `device` (String) A device name from the provider configuration. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The distinguished name of the object. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
terraform import nxos_feature_ngmvpn.example "sys/fm/ngmvpn" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
data "nxos_feature_ngmvpn" "example" { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
terraform import nxos_feature_ngmvpn.example "sys/fm/ngmvpn" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
resource "nxos_feature_ngmvpn" "example" { | ||
admin_state = "enabled" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: Feature ngMVPN | ||
class_name: fmNgmvpn | ||
dn: sys/fm/ngmvpn | ||
ds_description: This data source can read the Next Generation Multicast VPN Feature. | ||
res_description: This resource can manage the Next Generation Multicast VPN Feature. | ||
doc_path: Feature%20Management/fm:NgMvpn/ | ||
doc_category: Feature | ||
attributes: | ||
- nxos_name: adminSt | ||
tf_name: admin_state | ||
type: String | ||
mandatory: true | ||
description: "Administrative state." | ||
enum_values: | ||
- enabled | ||
- disabled | ||
example: enabled | ||
delete_value: disabled |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.