ip_filter_summaries
Creates, updates, deletes, gets or lists an ip_filter_summaries resource.
Overview
| Name | ip_filter_summaries |
| Type | Resource |
| Id | confluent.iam.ip_filter_summaries |
Fields
The following fields are returned by SELECT queries:
- get_iam_v2_ip_filter_summary
IP Filter Summary.
| Name | Datatype | Description |
|---|---|---|
api_version | string | APIVersion defines the schema version of this representation of a resource. (iam/v2) |
categories | array | Summary of the operation groups and IP filters created in those operation groups. |
kind | string | Kind defines the object this REST resource represents. (IpFilterSummary) |
scope | string | The scope associated with this object. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_iam_v2_ip_filter_summary | select | scope | Make a request to read an IP filter summary. |
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 |
|---|---|---|
scope | string | Scope the operation to the given scope. (example: crn://confluent.cloud/organization=org-123/environment=env-abc) |
SELECT examples
- get_iam_v2_ip_filter_summary
Make a request to read an IP filter summary.
SELECT
api_version,
categories,
kind,
scope
FROM confluent.iam.ip_filter_summaries
WHERE scope = '{{ scope }}' -- required
;