addresses
Creates, updates, deletes, gets or lists an addresses resource.
Overview
| Name | addresses |
| Type | Resource |
| Id | sumologic.service_allowlist.addresses |
Fields
The following fields are returned by SELECT queries:
- listAllowlistedCidrs
List of all allowlisted CIDR notations and/or IP addresses for the organization.
| Name | Datatype | Description |
|---|---|---|
cidr | string | The string representation of the CIDR notation or IP address. (pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(/([0-9]|[1-2][0-9]|3[0-2]))?$, example: 192.35.24.1, x-pattern-message: Invalid CIDR/IP) |
description | string | Description of the CIDR notation or IP address. (example: Accountant) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
listAllowlistedCidrs | select | region | Get a list of all allowlisted CIDR notations and/or IP addresses for the organization. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | SumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2) |
SELECT examples
- listAllowlistedCidrs
Get a list of all allowlisted CIDR notations and/or IP addresses for the organization.
SELECT
cidr,
description
FROM sumologic.service_allowlist.addresses
WHERE region = '{{ region }}' -- required
;