Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 2.14 KB

account_availability_list.md

File metadata and controls

52 lines (38 loc) · 2.14 KB

account_availability_list

List and filter on Account Availabilitys.

Examples

- name: List all of the region resource availabilities to the account
  linode.cloud.account_availability_list: {}

Parameters

Field Type Required Description
order str Optional The order to list Account Availabilitys in. (Choices: desc, asc; Default: asc)
order_by str Optional The attribute to order Account Availabilitys by.
filters (sub-options) list Optional A list of filters to apply to the resulting Account Availabilitys.
count int Optional The number of Account Availabilitys to return. If undefined, all results will be returned.

filters

Field Type Required Description
name str Required The name of the field to filter on. Valid filterable fields can be found here.
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

  • account_availabilities - The returned Account Availabilitys.

    • Sample Response:
      [
          {
            "region": "ap-west",
            "unavailable": ["Linode"]
          },
          {
            "region": "ca-central",
            "unavailable": ["Linode", "Block Storage"]
          }
      ]
    • See the Linode API response documentation for a list of returned fields