Skip to main content

addresses

Creates, updates, deletes, gets or lists an addresses resource.

Overview

Nameaddresses
TypeResource
Idsumologic.service_allowlist.addresses

Fields

The following fields are returned by SELECT queries:

List of all allowlisted CIDR notations and/or IP addresses for the organization.

NameDatatypeDescription
cidrstringThe 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)
descriptionstringDescription of the CIDR notation or IP address. (example: Accountant)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listAllowlistedCidrsselectregionGet 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.

NameDatatypeDescription
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)

SELECT examples

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
;