-
Notifications
You must be signed in to change notification settings - Fork 19
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
3 changed files
with
93 additions
and
4 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
docs/data-sources/json_dcim_virtual_device_contexts_list.md
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: "netbox_json_dcim_virtual_device_contexts_list Data Source - terraform-provider-netbox" | ||
subcategory: "" | ||
description: |- | ||
Get json output from the dcimvirtualdevicecontextslist Netbox endpoint. | ||
--- | ||
|
||
# netbox_json_dcim_virtual_device_contexts_list (Data Source) | ||
|
||
Get json output from the dcim_virtual_device_contexts_list Netbox endpoint. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "netbox_json_dcim_virtual_device_contexts_list" "test" { | ||
limit = 0 | ||
} | ||
output "example" { | ||
value = jsondecode(data.netbox_json_dcim_virtual_device_contexts_list.test.json) | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `filter` (Block Set) Filter the records returned by the query. (see [below for nested schema](#nestedblock--filter)) | ||
- `limit` (Number) The max number of returned results. If 0 is specified, all records will be returned. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `json` (String) JSON output of the list of objects for this Netbox endpoint. | ||
|
||
<a id="nestedblock--filter"></a> | ||
### Nested Schema for `filter` | ||
|
||
Required: | ||
|
||
- `name` (String) Name of the field to use for filtering. | ||
- `value` (String) Value of the field to use for filtering. | ||
|
||
|
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: "netbox_json_extras_saved_filters_list Data Source - terraform-provider-netbox" | ||
subcategory: "" | ||
description: |- | ||
Get json output from the extrassavedfilters_list Netbox endpoint. | ||
--- | ||
|
||
# netbox_json_extras_saved_filters_list (Data Source) | ||
|
||
Get json output from the extras_saved_filters_list Netbox endpoint. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "netbox_json_extras_saved_filters_list" "test" { | ||
limit = 0 | ||
} | ||
output "example" { | ||
value = jsondecode(data.netbox_json_extras_saved_filters_list.test.json) | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `filter` (Block Set) Filter the records returned by the query. (see [below for nested schema](#nestedblock--filter)) | ||
- `limit` (Number) The max number of returned results. If 0 is specified, all records will be returned. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `json` (String) JSON output of the list of objects for this Netbox endpoint. | ||
|
||
<a id="nestedblock--filter"></a> | ||
### Nested Schema for `filter` | ||
|
||
Required: | ||
|
||
- `name` (String) Name of the field to use for filtering. | ||
- `value` (String) Value of the field to use for filtering. | ||
|
||
|
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