diff --git a/docs/modules/lke_type_list.md b/docs/modules/lke_type_list.md index 813cebb3..83239ead 100644 --- a/docs/modules/lke_type_list.md +++ b/docs/modules/lke_type_list.md @@ -42,7 +42,7 @@ List and filter on LKE Types. | Field | Type | Required | Description | |-----------|------|----------|------------------------------------------------------------------------------| -| `name` |
`str`
|
**Required**
| The name of the field to filter on. Valid filterable fields can be found [here](https://techdocs.akamai.com/linode-api/reference/api). | +| `name` |
`str`
|
**Required**
| The name of the field to filter on. Valid filterable fields can be found [here](https://techdocs.akamai.com/linode-api/reference/get-lke-types). | | `values` |
`list`
|
**Required**
| A list of values to allow for this field. Fields will pass this filter if at least one of these values matches. | ## Return Values @@ -75,6 +75,6 @@ List and filter on LKE Types. } ] ``` - - See the [Linode API response documentation](https://techdocs.akamai.com/linode-api/reference/api) for a list of returned fields + - See the [Linode API response documentation](https://techdocs.akamai.com/linode-api/reference/get-lke-types) for a list of returned fields diff --git a/docs/modules/nodebalancer_type_list.md b/docs/modules/nodebalancer_type_list.md index e0ee9284..f11f6ed5 100644 --- a/docs/modules/nodebalancer_type_list.md +++ b/docs/modules/nodebalancer_type_list.md @@ -42,7 +42,7 @@ List and filter on Node Balancer Types. | Field | Type | Required | Description | |-----------|------|----------|------------------------------------------------------------------------------| -| `name` |
`str`
|
**Required**
| The name of the field to filter on. Valid filterable fields can be found [here](https://techdocs.akamai.com/linode-api/reference/api). | +| `name` |
`str`
|
**Required**
| The name of the field to filter on. Valid filterable fields can be found [here](https://techdocs.akamai.com/linode-api/reference/get-node-balancer-types). | | `values` |
`list`
|
**Required**
| A list of values to allow for this field. Fields will pass this filter if at least one of these values matches. | ## Return Values @@ -75,6 +75,6 @@ List and filter on Node Balancer Types. } ] ``` - - See the [Linode API response documentation](https://techdocs.akamai.com/linode-api/reference/api) for a list of returned fields + - See the [Linode API response documentation](https://techdocs.akamai.com/linode-api/reference/get-node-balancer-types) for a list of returned fields diff --git a/plugins/modules/lke_type_list.py b/plugins/modules/lke_type_list.py index 76b91e04..229fd84a 100644 --- a/plugins/modules/lke_type_list.py +++ b/plugins/modules/lke_type_list.py @@ -13,6 +13,7 @@ result_display_name="LKE Types", result_field_name="lke_types", endpoint_template="/lke/types", + result_docs_url="https://techdocs.akamai.com/linode-api/reference/get-lke-types", examples=docs.specdoc_examples, result_samples=docs.result_lke_type_samples, ) diff --git a/plugins/modules/nodebalancer_type_list.py b/plugins/modules/nodebalancer_type_list.py index 0baf6535..625cf3bb 100644 --- a/plugins/modules/nodebalancer_type_list.py +++ b/plugins/modules/nodebalancer_type_list.py @@ -15,6 +15,7 @@ result_display_name="Node Balancer Types", result_field_name="nodebalancer_types", endpoint_template="/nodebalancers/types", + result_docs_url="https://techdocs.akamai.com/linode-api/reference/get-node-balancer-types", examples=docs.specdoc_examples, result_samples=docs.result_nodebalancer_type_samples, )