You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`api_token`|`str`|**Required**| The Linode account personal access token. It is necessary to run the module. <br/>It can be exposed by the environment variable `LINODE_API_TOKEN` instead. <br/>See details in [Usage](https://github.com/linode/ansible_linode?tab=readme-ov-file#usage). |
16
+
17
+
## Examples
18
+
19
+
```yaml
20
+
- name: Get Info of a Linode Region VPC Availability
| `id` | <center>`str`</center> | <center>**Required**</center> | The ID of the Region VPC Availability to resolve. |
31
+
32
+
## Return Values
33
+
34
+
- `region_vpc_availability`- The returned Region VPC Availability.
35
+
36
+
- Sample Response:
37
+
```json
38
+
{
39
+
"region": "us-mia",
40
+
"available": true,
41
+
"available_ipv6_prefix_lengths": [
42
+
48,
43
+
52
44
+
]
45
+
}
46
+
```
47
+
- See the [Linode API response documentation](https://techdocs.akamai.com/linode-api/reference/get-region-vpc-availability) for a list of returned fields
| `name` | <center>`str`</center> | <center>**Required**</center> | The name of the field to filter on. Valid filterable fields can be found [here](TODO). |
38
+
| `name` | <center>`str`</center> | <center>**Required**</center> | The name of the field to filter on. Valid filterable fields can be found [here](https://techdocs.akamai.com/linode-api/reference/get-regions-vpc-availability). |
39
39
| `values` | <center>`list`</center> | <center>**Required**</center> | A list of values to allow for this field. Fields will pass this filter if at least one of these values matches. |
40
40
41
41
## Return Values
@@ -71,6 +71,6 @@ WARNING! This module makes use of beta endpoints and requires the C(api_version)
71
71
}
72
72
]
73
73
```
74
-
- See the [Linode API response documentation](TODO) for a list of returned fields
74
+
- See the [Linode API response documentation](https://techdocs.akamai.com/linode-api/reference/get-regions-vpc-availability) for a list of returned fields
0 commit comments