# `Twilio.Api.V2010.SIP.IpAccessControlListService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/api/v2010/sip/ip_access_control_list_service.ex#L2)

Access control lists of IP address resources

Operations: `list`, `create`, `fetch`, `update`, `delete`

# `create`

```elixir
@spec create(Twilio.Client.t(), map(), keyword()) ::
  {:ok, Twilio.Resources.Api.V2010.SIP.IpAccessControlList.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Create a new IpAccessControlList resource

Operation: `CreateSipIpAccessControlList` | Tags: Api20100401IpAccessControlList

## Required Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `FriendlyName` | string | A human readable descriptive text that describes the IpAccessControlList, up to 255 characters long. |

# `delete`

```elixir
@spec delete(Twilio.Client.t(), String.t(), keyword()) ::
  {:ok, map()} | {:ok, map(), map()} | :ok | {:error, Twilio.Error.t()}
```

Delete an IpAccessControlList from the requested account

Operation: `DeleteSipIpAccessControlList` | Tags: Api20100401IpAccessControlList

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), keyword()) ::
  {:ok, Twilio.Resources.Api.V2010.SIP.IpAccessControlList.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Fetch a specific instance of an IpAccessControlList

Operation: `FetchSipIpAccessControlList` | Tags: Api20100401IpAccessControlList

# `list`

```elixir
@spec list(Twilio.Client.t(), map(), keyword()) ::
  {:ok, Twilio.Page.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Retrieve a list of IpAccessControlLists that belong to the account used to make the request

Operation: `ListSipIpAccessControlList` | Tags: Api20100401IpAccessControlList

# `stream`

```elixir
@spec stream(Twilio.Client.t(), map(), keyword()) :: Enumerable.t()
```

Stream: Retrieve a list of IpAccessControlLists that belong to the account used to make the request (lazy auto-pagination).

# `update`

```elixir
@spec update(Twilio.Client.t(), String.t(), map(), keyword()) ::
  {:ok, Twilio.Resources.Api.V2010.SIP.IpAccessControlList.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Rename an IpAccessControlList

Operation: `UpdateSipIpAccessControlList` | Tags: Api20100401IpAccessControlList

## Required Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `FriendlyName` | string | A human readable descriptive text, up to 255 characters long. |

---

*Consult [api-reference.md](api-reference.md) for complete listing*
