# Networking

# VPCs

## Create VPC

`$ nirvana networking:vpcs create`

**post** `/v1/networking/vpcs`

Create a VPC

### Parameters

- `--name: string`

  Name of the VPC.

- `--project-id: string`

  Project ID the VPC belongs to.

- `--region: "us-sva-2"`

  Region the resource is in.

- `--subnet-name: string`

  Name of the subnet to create.

- `--tag: optional array of string`

  Tags to attach to the VPC.

### Returns

- `operation: object { id, created_at, details, 6 more }`

  Operation details.

  - `id: string`

    Unique identifier for the Operation.

  - `created_at: string`

    When the Operation was created.

  - `details: object { changes }`

    Structured details about what an operation is changing.

    - `changes: map[OperationFieldDiff]`

      Map of changed field names to their from/to diffs. Keys depend on the parent operation's kind+type.

      - `from: string or number or boolean or array of string`

        Previous value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

      - `to: string or number or boolean or array of string`

        New value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

  - `kind: "vm" or "volume" or "vpc" or 3 more`

    Kind of Operation.

    - `"vm"`

    - `"volume"`

    - `"vpc"`

    - `"firewall_rule"`

    - `"nks_cluster"`

    - `"nks_node_pool"`

  - `project_id: string`

    Project ID the Operation belongs to.

  - `resource_id: string`

    ID of the resource that the Operation is acting on.

  - `status: "pending" or "running" or "done" or 2 more`

    Status of the Operation.

    - `"pending"`

    - `"running"`

    - `"done"`

    - `"failed"`

    - `"unknown"`

  - `type: "create" or "update" or "delete" or "restart"`

    Type of Operation.

    - `"create"`

    - `"update"`

    - `"delete"`

    - `"restart"`

  - `updated_at: string`

    When the Operation was updated.

### Example

```cli
nirvana networking:vpcs create \
  --api-key 'My API Key' \
  --name my-vpc \
  --project-id 123e4567-e89b-12d3-a456-426614174000 \
  --region us-sva-2 \
  --subnet-name my-subnet
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "details": {
    "changes": {
      "foo": {
        "from": "string",
        "to": "string"
      }
    }
  },
  "kind": "vm",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "resource_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "pending",
  "type": "create",
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## Get VPC Details

`$ nirvana networking:vpcs get`

**get** `/v1/networking/vpcs/{vpc_id}`

Get details about a VPC

### Parameters

- `--vpc-id: string`

  VPC ID

### Returns

- `vpc: object { id, created_at, firewall_rule_ids, 7 more }`

  VPC details.

  - `id: string`

    Unique identifier for the VPC.

  - `created_at: string`

    When the VPC was created.

  - `firewall_rule_ids: array of string`

    IDs of the Firewall Rules associated with the VPC.

  - `name: string`

    Name of the VPC.

  - `project_id: string`

    Project ID the VPC belongs to.

  - `region: "us-sva-2"`

    Region the resource is in.

    - `"us-sva-2"`

  - `status: "pending" or "creating" or "updating" or 4 more`

    Status of the resource.

    - `"pending"`

    - `"creating"`

    - `"updating"`

    - `"ready"`

    - `"deleting"`

    - `"deleted"`

    - `"error"`

  - `subnet: object { id, cidr, created_at, 2 more }`

    Subnet of the VPC.

    - `id: string`

      Unique identifier for the Subnet.

    - `cidr: string`

      CIDR block for the Subnet.

    - `created_at: string`

      When the Subnet was created.

    - `name: string`

      Name of the Subnet.

    - `updated_at: string`

      When the Subnet was updated.

  - `tags: array of string`

    Tags to attach to the VPC.

  - `updated_at: string`

    When the VPC was updated.

### Example

```cli
nirvana networking:vpcs get \
  --api-key 'My API Key' \
  --vpc-id vpc_id
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "firewall_rule_ids": [
    "123e4567-e89b-12d3-a456-426614174001",
    "123e4567-e89b-12d3-a456-426614174002"
  ],
  "name": "my-vpc",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "region": "us-sva-2",
  "status": "ready",
  "subnet": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "cidr": "10.128.35.128/25",
    "created_at": "2025-01-01T00:00:00Z",
    "name": "my-subnet",
    "updated_at": "2025-01-01T00:00:00Z"
  },
  "tags": [
    "production",
    "ethereum"
  ],
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## Update VPC

`$ nirvana networking:vpcs update`

**patch** `/v1/networking/vpcs/{vpc_id}`

Update a VPC

### Parameters

- `--vpc-id: string`

  VPC ID

- `--name: optional string`

  Name of the VPC.

- `--subnet-name: optional string`

  Name of the subnet to create.

- `--tag: optional array of string`

  Tags to attach to the VPC.

### Returns

- `operation: object { id, created_at, details, 6 more }`

  Operation details.

  - `id: string`

    Unique identifier for the Operation.

  - `created_at: string`

    When the Operation was created.

  - `details: object { changes }`

    Structured details about what an operation is changing.

    - `changes: map[OperationFieldDiff]`

      Map of changed field names to their from/to diffs. Keys depend on the parent operation's kind+type.

      - `from: string or number or boolean or array of string`

        Previous value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

      - `to: string or number or boolean or array of string`

        New value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

  - `kind: "vm" or "volume" or "vpc" or 3 more`

    Kind of Operation.

    - `"vm"`

    - `"volume"`

    - `"vpc"`

    - `"firewall_rule"`

    - `"nks_cluster"`

    - `"nks_node_pool"`

  - `project_id: string`

    Project ID the Operation belongs to.

  - `resource_id: string`

    ID of the resource that the Operation is acting on.

  - `status: "pending" or "running" or "done" or 2 more`

    Status of the Operation.

    - `"pending"`

    - `"running"`

    - `"done"`

    - `"failed"`

    - `"unknown"`

  - `type: "create" or "update" or "delete" or "restart"`

    Type of Operation.

    - `"create"`

    - `"update"`

    - `"delete"`

    - `"restart"`

  - `updated_at: string`

    When the Operation was updated.

### Example

```cli
nirvana networking:vpcs update \
  --api-key 'My API Key' \
  --vpc-id vpc_id
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "details": {
    "changes": {
      "foo": {
        "from": "string",
        "to": "string"
      }
    }
  },
  "kind": "vm",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "resource_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "pending",
  "type": "create",
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## Delete VPC

`$ nirvana networking:vpcs delete`

**delete** `/v1/networking/vpcs/{vpc_id}`

Delete a VPC

### Parameters

- `--vpc-id: string`

  VPC ID

### Returns

- `operation: object { id, created_at, details, 6 more }`

  Operation details.

  - `id: string`

    Unique identifier for the Operation.

  - `created_at: string`

    When the Operation was created.

  - `details: object { changes }`

    Structured details about what an operation is changing.

    - `changes: map[OperationFieldDiff]`

      Map of changed field names to their from/to diffs. Keys depend on the parent operation's kind+type.

      - `from: string or number or boolean or array of string`

        Previous value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

      - `to: string or number or boolean or array of string`

        New value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

  - `kind: "vm" or "volume" or "vpc" or 3 more`

    Kind of Operation.

    - `"vm"`

    - `"volume"`

    - `"vpc"`

    - `"firewall_rule"`

    - `"nks_cluster"`

    - `"nks_node_pool"`

  - `project_id: string`

    Project ID the Operation belongs to.

  - `resource_id: string`

    ID of the resource that the Operation is acting on.

  - `status: "pending" or "running" or "done" or 2 more`

    Status of the Operation.

    - `"pending"`

    - `"running"`

    - `"done"`

    - `"failed"`

    - `"unknown"`

  - `type: "create" or "update" or "delete" or "restart"`

    Type of Operation.

    - `"create"`

    - `"update"`

    - `"delete"`

    - `"restart"`

  - `updated_at: string`

    When the Operation was updated.

### Example

```cli
nirvana networking:vpcs delete \
  --api-key 'My API Key' \
  --vpc-id vpc_id
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "details": {
    "changes": {
      "foo": {
        "from": "string",
        "to": "string"
      }
    }
  },
  "kind": "vm",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "resource_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "pending",
  "type": "create",
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## List VPCs

`$ nirvana networking:vpcs list`

**get** `/v1/networking/vpcs`

List all VPCs

### Parameters

- `--project-id: string`

  Project ID of resources to request

- `--cursor: optional string`

  Pagination cursor returned by a previous request

- `--limit: optional number`

  Maximum number of items to return

### Returns

- `vpc_list: object { items, pagination }`

  - `items: array of VPC`

    - `id: string`

      Unique identifier for the VPC.

    - `created_at: string`

      When the VPC was created.

    - `firewall_rule_ids: array of string`

      IDs of the Firewall Rules associated with the VPC.

    - `name: string`

      Name of the VPC.

    - `project_id: string`

      Project ID the VPC belongs to.

    - `region: "us-sva-2"`

      Region the resource is in.

      - `"us-sva-2"`

    - `status: "pending" or "creating" or "updating" or 4 more`

      Status of the resource.

      - `"pending"`

      - `"creating"`

      - `"updating"`

      - `"ready"`

      - `"deleting"`

      - `"deleted"`

      - `"error"`

    - `subnet: object { id, cidr, created_at, 2 more }`

      Subnet of the VPC.

      - `id: string`

        Unique identifier for the Subnet.

      - `cidr: string`

        CIDR block for the Subnet.

      - `created_at: string`

        When the Subnet was created.

      - `name: string`

        Name of the Subnet.

      - `updated_at: string`

        When the Subnet was updated.

    - `tags: array of string`

      Tags to attach to the VPC.

    - `updated_at: string`

      When the VPC was updated.

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

### Example

```cli
nirvana networking:vpcs list \
  --api-key 'My API Key' \
  --project-id project_id
```

#### Response

```json
{
  "items": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "created_at": "2025-01-01T00:00:00Z",
      "firewall_rule_ids": [
        "123e4567-e89b-12d3-a456-426614174001",
        "123e4567-e89b-12d3-a456-426614174002"
      ],
      "name": "my-vpc",
      "project_id": "123e4567-e89b-12d3-a456-426614174000",
      "region": "us-sva-2",
      "status": "ready",
      "subnet": {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "cidr": "10.128.35.128/25",
        "created_at": "2025-01-01T00:00:00Z",
        "name": "my-subnet",
        "updated_at": "2025-01-01T00:00:00Z"
      },
      "tags": [
        "production",
        "ethereum"
      ],
      "updated_at": "2025-01-01T00:00:00Z"
    }
  ],
  "pagination": {
    "next_cursor": "RhwniMT4B74siYZcPF8TnCdGI1l9rpPvg",
    "previous_cursor": "ARhwnmi1hA7wEbHbMjdYQlOB_ZusP4fYvw",
    "total_count": 125
  }
}
```

## Domain Types

### Subnet

- `subnet: object { id, cidr, created_at, 2 more }`

  Subnet of the VPC.

  - `id: string`

    Unique identifier for the Subnet.

  - `cidr: string`

    CIDR block for the Subnet.

  - `created_at: string`

    When the Subnet was created.

  - `name: string`

    Name of the Subnet.

  - `updated_at: string`

    When the Subnet was updated.

### VPC

- `vpc: object { id, created_at, firewall_rule_ids, 7 more }`

  VPC details.

  - `id: string`

    Unique identifier for the VPC.

  - `created_at: string`

    When the VPC was created.

  - `firewall_rule_ids: array of string`

    IDs of the Firewall Rules associated with the VPC.

  - `name: string`

    Name of the VPC.

  - `project_id: string`

    Project ID the VPC belongs to.

  - `region: "us-sva-2"`

    Region the resource is in.

    - `"us-sva-2"`

  - `status: "pending" or "creating" or "updating" or 4 more`

    Status of the resource.

    - `"pending"`

    - `"creating"`

    - `"updating"`

    - `"ready"`

    - `"deleting"`

    - `"deleted"`

    - `"error"`

  - `subnet: object { id, cidr, created_at, 2 more }`

    Subnet of the VPC.

    - `id: string`

      Unique identifier for the Subnet.

    - `cidr: string`

      CIDR block for the Subnet.

    - `created_at: string`

      When the Subnet was created.

    - `name: string`

      Name of the Subnet.

    - `updated_at: string`

      When the Subnet was updated.

  - `tags: array of string`

    Tags to attach to the VPC.

  - `updated_at: string`

    When the VPC was updated.

### VPC List

- `vpc_list: object { items, pagination }`

  - `items: array of VPC`

    - `id: string`

      Unique identifier for the VPC.

    - `created_at: string`

      When the VPC was created.

    - `firewall_rule_ids: array of string`

      IDs of the Firewall Rules associated with the VPC.

    - `name: string`

      Name of the VPC.

    - `project_id: string`

      Project ID the VPC belongs to.

    - `region: "us-sva-2"`

      Region the resource is in.

      - `"us-sva-2"`

    - `status: "pending" or "creating" or "updating" or 4 more`

      Status of the resource.

      - `"pending"`

      - `"creating"`

      - `"updating"`

      - `"ready"`

      - `"deleting"`

      - `"deleted"`

      - `"error"`

    - `subnet: object { id, cidr, created_at, 2 more }`

      Subnet of the VPC.

      - `id: string`

        Unique identifier for the Subnet.

      - `cidr: string`

        CIDR block for the Subnet.

      - `created_at: string`

        When the Subnet was created.

      - `name: string`

        Name of the Subnet.

      - `updated_at: string`

        When the Subnet was updated.

    - `tags: array of string`

      Tags to attach to the VPC.

    - `updated_at: string`

      When the VPC was updated.

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

# Availability

## Check Create VPC Availability

`$ nirvana networking:vpcs:availability create`

**post** `/v1/networking/vpcs/availability`

Check if a VPC can be created

### Parameters

- `--name: string`

  Name of the VPC.

- `--project-id: string`

  Project ID the VPC belongs to.

- `--region: "us-sva-2"`

  Region the resource is in.

- `--subnet-name: string`

  Name of the subnet to create.

- `--tag: optional array of string`

  Tags to attach to the VPC.

### Example

```cli
nirvana networking:vpcs:availability create \
  --api-key 'My API Key' \
  --name my-vpc \
  --project-id 123e4567-e89b-12d3-a456-426614174000 \
  --region us-sva-2 \
  --subnet-name my-subnet
```

## Check Update VPC Availability

`$ nirvana networking:vpcs:availability update`

**patch** `/v1/networking/vpcs/{vpc_id}/availability`

Check if a VPC can be updated

### Parameters

- `--vpc-id: string`

  VPC ID

- `--name: optional string`

  Name of the VPC.

- `--subnet-name: optional string`

  Name of the subnet to create.

- `--tag: optional array of string`

  Tags to attach to the VPC.

### Example

```cli
nirvana networking:vpcs:availability update \
  --api-key 'My API Key' \
  --vpc-id vpc_id
```

# Firewall Rules

## Create Firewall Rule

`$ nirvana networking:firewall-rules create`

**post** `/v1/networking/vpcs/{vpc_id}/firewall_rules`

Create a firewall rule

### Parameters

- `--vpc-id: string`

  VPC ID

- `--destination-address: string`

  Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC. Must be in network-aligned/canonical form.

- `--destination-port: array of string`

  Destination ports of the Firewall Rule.

- `--name: string`

  Name of the Firewall Rule.

- `--protocol: "tcp" or "udp"`

  Protocol of the Firewall Rule.

- `--source-address: string`

  Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0. Must be in network-aligned/canonical form.

- `--tag: optional array of string`

  Tags to attach to the Firewall Rule.

### Returns

- `operation: object { id, created_at, details, 6 more }`

  Operation details.

  - `id: string`

    Unique identifier for the Operation.

  - `created_at: string`

    When the Operation was created.

  - `details: object { changes }`

    Structured details about what an operation is changing.

    - `changes: map[OperationFieldDiff]`

      Map of changed field names to their from/to diffs. Keys depend on the parent operation's kind+type.

      - `from: string or number or boolean or array of string`

        Previous value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

      - `to: string or number or boolean or array of string`

        New value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

  - `kind: "vm" or "volume" or "vpc" or 3 more`

    Kind of Operation.

    - `"vm"`

    - `"volume"`

    - `"vpc"`

    - `"firewall_rule"`

    - `"nks_cluster"`

    - `"nks_node_pool"`

  - `project_id: string`

    Project ID the Operation belongs to.

  - `resource_id: string`

    ID of the resource that the Operation is acting on.

  - `status: "pending" or "running" or "done" or 2 more`

    Status of the Operation.

    - `"pending"`

    - `"running"`

    - `"done"`

    - `"failed"`

    - `"unknown"`

  - `type: "create" or "update" or "delete" or "restart"`

    Type of Operation.

    - `"create"`

    - `"update"`

    - `"delete"`

    - `"restart"`

  - `updated_at: string`

    When the Operation was updated.

### Example

```cli
nirvana networking:firewall-rules create \
  --api-key 'My API Key' \
  --vpc-id vpc_id \
  --destination-address 10.0.0.0/25 \
  --destination-port "'22'" \
  --destination-port "'80'" \
  --destination-port "'443'" \
  --name my-firewall-rule \
  --protocol tcp \
  --source-address 0.0.0.0/0
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "details": {
    "changes": {
      "foo": {
        "from": "string",
        "to": "string"
      }
    }
  },
  "kind": "vm",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "resource_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "pending",
  "type": "create",
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## Firewall Rule Details

`$ nirvana networking:firewall-rules get`

**get** `/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}`

Get details about a firewall rule

### Parameters

- `--vpc-id: string`

  VPC ID

- `--firewall-rule-id: string`

  Firewall Rule ID

### Returns

- `firewall_rule: object { id, created_at, destination_address, 8 more }`

  Firewall rule details.

  - `id: string`

    Unique identifier for the Firewall Rule.

  - `created_at: string`

    When the Firewall Rule was created.

  - `destination_address: string`

    Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.

  - `destination_ports: array of string`

    Destination ports of the Firewall Rule.

  - `name: string`

    Name of the Firewall Rule.

  - `protocol: "tcp" or "udp"`

    Protocol of the Firewall Rule.

    - `"tcp"`

    - `"udp"`

  - `source_address: string`

    Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.

  - `status: "pending" or "creating" or "updating" or 4 more`

    Status of the resource.

    - `"pending"`

    - `"creating"`

    - `"updating"`

    - `"ready"`

    - `"deleting"`

    - `"deleted"`

    - `"error"`

  - `tags: array of string`

    Tags to attach to the Firewall Rule.

  - `updated_at: string`

    When the Firewall Rule was updated.

  - `vpc_id: string`

    ID of the VPC the Firewall Rule belongs to.

### Example

```cli
nirvana networking:firewall-rules get \
  --api-key 'My API Key' \
  --vpc-id vpc_id \
  --firewall-rule-id firewall_rule_id
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "destination_address": "10.0.0.0/25",
  "destination_ports": [
    "22",
    "80",
    "443"
  ],
  "name": "my-firewall-rule",
  "protocol": "tcp",
  "source_address": "0.0.0.0/0",
  "status": "ready",
  "tags": [
    "production",
    "ethereum"
  ],
  "updated_at": "2025-01-01T00:00:00Z",
  "vpc_id": "123e4567-e89b-12d3-a456-426614174000"
}
```

## Update Firewall Rule

`$ nirvana networking:firewall-rules update`

**patch** `/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}`

Update a firewall rule

### Parameters

- `--vpc-id: string`

  VPC ID

- `--firewall-rule-id: string`

  Firewall Rule ID

- `--destination-address: optional string`

  Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC. Must be in network-aligned/canonical form.

- `--destination-port: optional array of string`

  Destination ports of the Firewall Rule.

- `--name: optional string`

  Name of the Firewall Rule.

- `--protocol: optional "tcp" or "udp"`

  Protocol of the Firewall Rule.

- `--source-address: optional string`

  Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0. Must be in network-aligned/canonical form.

- `--tag: optional array of string`

  Tags to attach to the Firewall Rule.

### Returns

- `operation: object { id, created_at, details, 6 more }`

  Operation details.

  - `id: string`

    Unique identifier for the Operation.

  - `created_at: string`

    When the Operation was created.

  - `details: object { changes }`

    Structured details about what an operation is changing.

    - `changes: map[OperationFieldDiff]`

      Map of changed field names to their from/to diffs. Keys depend on the parent operation's kind+type.

      - `from: string or number or boolean or array of string`

        Previous value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

      - `to: string or number or boolean or array of string`

        New value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

  - `kind: "vm" or "volume" or "vpc" or 3 more`

    Kind of Operation.

    - `"vm"`

    - `"volume"`

    - `"vpc"`

    - `"firewall_rule"`

    - `"nks_cluster"`

    - `"nks_node_pool"`

  - `project_id: string`

    Project ID the Operation belongs to.

  - `resource_id: string`

    ID of the resource that the Operation is acting on.

  - `status: "pending" or "running" or "done" or 2 more`

    Status of the Operation.

    - `"pending"`

    - `"running"`

    - `"done"`

    - `"failed"`

    - `"unknown"`

  - `type: "create" or "update" or "delete" or "restart"`

    Type of Operation.

    - `"create"`

    - `"update"`

    - `"delete"`

    - `"restart"`

  - `updated_at: string`

    When the Operation was updated.

### Example

```cli
nirvana networking:firewall-rules update \
  --api-key 'My API Key' \
  --vpc-id vpc_id \
  --firewall-rule-id firewall_rule_id
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "details": {
    "changes": {
      "foo": {
        "from": "string",
        "to": "string"
      }
    }
  },
  "kind": "vm",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "resource_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "pending",
  "type": "create",
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## Delete Firewall Rule

`$ nirvana networking:firewall-rules delete`

**delete** `/v1/networking/vpcs/{vpc_id}/firewall_rules/{firewall_rule_id}`

Delete a firewall rule

### Parameters

- `--vpc-id: string`

  VPC ID

- `--firewall-rule-id: string`

  Firewall Rule ID

### Returns

- `operation: object { id, created_at, details, 6 more }`

  Operation details.

  - `id: string`

    Unique identifier for the Operation.

  - `created_at: string`

    When the Operation was created.

  - `details: object { changes }`

    Structured details about what an operation is changing.

    - `changes: map[OperationFieldDiff]`

      Map of changed field names to their from/to diffs. Keys depend on the parent operation's kind+type.

      - `from: string or number or boolean or array of string`

        Previous value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

      - `to: string or number or boolean or array of string`

        New value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

  - `kind: "vm" or "volume" or "vpc" or 3 more`

    Kind of Operation.

    - `"vm"`

    - `"volume"`

    - `"vpc"`

    - `"firewall_rule"`

    - `"nks_cluster"`

    - `"nks_node_pool"`

  - `project_id: string`

    Project ID the Operation belongs to.

  - `resource_id: string`

    ID of the resource that the Operation is acting on.

  - `status: "pending" or "running" or "done" or 2 more`

    Status of the Operation.

    - `"pending"`

    - `"running"`

    - `"done"`

    - `"failed"`

    - `"unknown"`

  - `type: "create" or "update" or "delete" or "restart"`

    Type of Operation.

    - `"create"`

    - `"update"`

    - `"delete"`

    - `"restart"`

  - `updated_at: string`

    When the Operation was updated.

### Example

```cli
nirvana networking:firewall-rules delete \
  --api-key 'My API Key' \
  --vpc-id vpc_id \
  --firewall-rule-id firewall_rule_id
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "details": {
    "changes": {
      "foo": {
        "from": "string",
        "to": "string"
      }
    }
  },
  "kind": "vm",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "resource_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "pending",
  "type": "create",
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## List Firewall Rules

`$ nirvana networking:firewall-rules list`

**get** `/v1/networking/vpcs/{vpc_id}/firewall_rules`

List all firewall rules

### Parameters

- `--vpc-id: string`

  VPC ID

- `--cursor: optional string`

  Pagination cursor returned by a previous request

- `--limit: optional number`

  Maximum number of items to return

### Returns

- `firewall_rule_list: object { items, pagination }`

  - `items: array of FirewallRule`

    - `id: string`

      Unique identifier for the Firewall Rule.

    - `created_at: string`

      When the Firewall Rule was created.

    - `destination_address: string`

      Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.

    - `destination_ports: array of string`

      Destination ports of the Firewall Rule.

    - `name: string`

      Name of the Firewall Rule.

    - `protocol: "tcp" or "udp"`

      Protocol of the Firewall Rule.

      - `"tcp"`

      - `"udp"`

    - `source_address: string`

      Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.

    - `status: "pending" or "creating" or "updating" or 4 more`

      Status of the resource.

      - `"pending"`

      - `"creating"`

      - `"updating"`

      - `"ready"`

      - `"deleting"`

      - `"deleted"`

      - `"error"`

    - `tags: array of string`

      Tags to attach to the Firewall Rule.

    - `updated_at: string`

      When the Firewall Rule was updated.

    - `vpc_id: string`

      ID of the VPC the Firewall Rule belongs to.

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

### Example

```cli
nirvana networking:firewall-rules list \
  --api-key 'My API Key' \
  --vpc-id vpc_id
```

#### Response

```json
{
  "items": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "created_at": "2025-01-01T00:00:00Z",
      "destination_address": "10.0.0.0/25",
      "destination_ports": [
        "22",
        "80",
        "443"
      ],
      "name": "my-firewall-rule",
      "protocol": "tcp",
      "source_address": "0.0.0.0/0",
      "status": "ready",
      "tags": [
        "production",
        "ethereum"
      ],
      "updated_at": "2025-01-01T00:00:00Z",
      "vpc_id": "123e4567-e89b-12d3-a456-426614174000"
    }
  ],
  "pagination": {
    "next_cursor": "RhwniMT4B74siYZcPF8TnCdGI1l9rpPvg",
    "previous_cursor": "ARhwnmi1hA7wEbHbMjdYQlOB_ZusP4fYvw",
    "total_count": 125
  }
}
```

## Domain Types

### Firewall Rule

- `firewall_rule: object { id, created_at, destination_address, 8 more }`

  Firewall rule details.

  - `id: string`

    Unique identifier for the Firewall Rule.

  - `created_at: string`

    When the Firewall Rule was created.

  - `destination_address: string`

    Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.

  - `destination_ports: array of string`

    Destination ports of the Firewall Rule.

  - `name: string`

    Name of the Firewall Rule.

  - `protocol: "tcp" or "udp"`

    Protocol of the Firewall Rule.

    - `"tcp"`

    - `"udp"`

  - `source_address: string`

    Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.

  - `status: "pending" or "creating" or "updating" or 4 more`

    Status of the resource.

    - `"pending"`

    - `"creating"`

    - `"updating"`

    - `"ready"`

    - `"deleting"`

    - `"deleted"`

    - `"error"`

  - `tags: array of string`

    Tags to attach to the Firewall Rule.

  - `updated_at: string`

    When the Firewall Rule was updated.

  - `vpc_id: string`

    ID of the VPC the Firewall Rule belongs to.

### Firewall Rule List

- `firewall_rule_list: object { items, pagination }`

  - `items: array of FirewallRule`

    - `id: string`

      Unique identifier for the Firewall Rule.

    - `created_at: string`

      When the Firewall Rule was created.

    - `destination_address: string`

      Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.

    - `destination_ports: array of string`

      Destination ports of the Firewall Rule.

    - `name: string`

      Name of the Firewall Rule.

    - `protocol: "tcp" or "udp"`

      Protocol of the Firewall Rule.

      - `"tcp"`

      - `"udp"`

    - `source_address: string`

      Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.

    - `status: "pending" or "creating" or "updating" or 4 more`

      Status of the resource.

      - `"pending"`

      - `"creating"`

      - `"updating"`

      - `"ready"`

      - `"deleting"`

      - `"deleted"`

      - `"error"`

    - `tags: array of string`

      Tags to attach to the Firewall Rule.

    - `updated_at: string`

      When the Firewall Rule was updated.

    - `vpc_id: string`

      ID of the VPC the Firewall Rule belongs to.

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

# Connect

## Domain Types

### Connect Bandwidth Mbps

- `connect_bandwidth_mbps: 50 or 200 or 500 or 2 more`

  Connect Connection speed in Mbps

  - `50`

  - `200`

  - `500`

  - `1000`

  - `2000`

### Connect Connection

- `connect_connection: object { id, asn, aws, 13 more }`

  Connect Connection details.

  - `id: string`

    Unique identifier for the Connect Connection

  - `asn: number`

    ASN

  - `aws: object { region }`

    AWS provider configuration

    - `region: string`

      AWS region where the connection is established

  - `bandwidth_mbps: 50 or 200 or 500 or 2 more`

    Connect Connection speed in Mbps

    - `50`

    - `200`

    - `500`

    - `1000`

    - `2000`

  - `cidrs: array of string`

    CIDRs for the Connect Connection

  - `created_at: string`

    When the Connect Connection was created

  - `name: string`

    Name of the Connect Connection

  - `project_id: string`

    Project ID the Connect Connection belongs to

  - `provider_asn: number`

    Provider ASN

  - `provider_cidrs: array of string`

    Provider CIDRs for the Connect Connection

  - `provider_router_ip: string`

    Provider Router IP for the Connect Connection

  - `region: "us-sva-2"`

    Region the resource is in.

    - `"us-sva-2"`

  - `router_ip: string`

    Router IP

  - `status: "pending" or "creating" or "updating" or 4 more`

    Status of the resource.

    - `"pending"`

    - `"creating"`

    - `"updating"`

    - `"ready"`

    - `"deleting"`

    - `"deleted"`

    - `"error"`

  - `tags: array of string`

    Tags to attach to the Connect Connection

  - `updated_at: string`

    When the Connect Connection was updated

### Connect Connection AWS Config

- `connect_connection_aws_config: object { region }`

  AWS provider configuration

  - `region: string`

    AWS region where the connection is established

### Connect Connection AWS Config Request

- `connect_connection_aws_config_request: object { account_id, region }`

  AWS provider configuration

  - `account_id: string`

    AWS account id

  - `region: string`

    AWS region where the connection will be established

### Connect Connection List

- `connect_connection_list: object { items, pagination }`

  - `items: array of ConnectConnection`

    - `id: string`

      Unique identifier for the Connect Connection

    - `asn: number`

      ASN

    - `aws: object { region }`

      AWS provider configuration

      - `region: string`

        AWS region where the connection is established

    - `bandwidth_mbps: 50 or 200 or 500 or 2 more`

      Connect Connection speed in Mbps

      - `50`

      - `200`

      - `500`

      - `1000`

      - `2000`

    - `cidrs: array of string`

      CIDRs for the Connect Connection

    - `created_at: string`

      When the Connect Connection was created

    - `name: string`

      Name of the Connect Connection

    - `project_id: string`

      Project ID the Connect Connection belongs to

    - `provider_asn: number`

      Provider ASN

    - `provider_cidrs: array of string`

      Provider CIDRs for the Connect Connection

    - `provider_router_ip: string`

      Provider Router IP for the Connect Connection

    - `region: "us-sva-2"`

      Region the resource is in.

      - `"us-sva-2"`

    - `router_ip: string`

      Router IP

    - `status: "pending" or "creating" or "updating" or 4 more`

      Status of the resource.

      - `"pending"`

      - `"creating"`

      - `"updating"`

      - `"ready"`

      - `"deleting"`

      - `"deleted"`

      - `"error"`

    - `tags: array of string`

      Tags to attach to the Connect Connection

    - `updated_at: string`

      When the Connect Connection was updated

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

### Connect Route

- `connect_route: object { nirvana_region, provider, provider_region }`

  Routes supported for Connect.

  - `nirvana_region: "us-sva-2"`

    Region the resource is in.

    - `"us-sva-2"`

  - `provider: string`

    Provider name.

  - `provider_region: string`

    Provider region name.

### Connect Route List

- `connect_route_list: object { items, pagination }`

  - `items: array of ConnectRoute`

    - `nirvana_region: "us-sva-2"`

      Region the resource is in.

      - `"us-sva-2"`

    - `provider: string`

      Provider name.

    - `provider_region: string`

      Provider region name.

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

# Connections

## Create Connect Connection

`$ nirvana networking:connect:connections create`

**post** `/v1/networking/connect/connections`

Create a Connect Connection

### Parameters

- `--bandwidth-mbps: 50 or 200 or 500 or 2 more`

  Connect Connection speed in Mbps

- `--cidr: array of string`

  CIDRs for the Connect Connection. Must be in network-aligned/canonical form.

- `--name: string`

  Name of the Connect Connection

- `--project-id: string`

  Project ID the Connect Connection belongs to

- `--provider-cidr: array of string`

  Provider CIDRs. Must be in network-aligned/canonical form.

- `--region: "us-sva-2"`

  Region the resource is in.

- `--aws: optional object { account_id, region }`

  AWS provider configuration

- `--tag: optional array of string`

  Tags to attach to the Connect Connection

### Returns

- `operation: object { id, created_at, details, 6 more }`

  Operation details.

  - `id: string`

    Unique identifier for the Operation.

  - `created_at: string`

    When the Operation was created.

  - `details: object { changes }`

    Structured details about what an operation is changing.

    - `changes: map[OperationFieldDiff]`

      Map of changed field names to their from/to diffs. Keys depend on the parent operation's kind+type.

      - `from: string or number or boolean or array of string`

        Previous value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

      - `to: string or number or boolean or array of string`

        New value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

  - `kind: "vm" or "volume" or "vpc" or 3 more`

    Kind of Operation.

    - `"vm"`

    - `"volume"`

    - `"vpc"`

    - `"firewall_rule"`

    - `"nks_cluster"`

    - `"nks_node_pool"`

  - `project_id: string`

    Project ID the Operation belongs to.

  - `resource_id: string`

    ID of the resource that the Operation is acting on.

  - `status: "pending" or "running" or "done" or 2 more`

    Status of the Operation.

    - `"pending"`

    - `"running"`

    - `"done"`

    - `"failed"`

    - `"unknown"`

  - `type: "create" or "update" or "delete" or "restart"`

    Type of Operation.

    - `"create"`

    - `"update"`

    - `"delete"`

    - `"restart"`

  - `updated_at: string`

    When the Operation was updated.

### Example

```cli
nirvana networking:connect:connections create \
  --api-key 'My API Key' \
  --bandwidth-mbps 50 \
  --cidr 10.0.0.0/16 \
  --name my-connect-connection \
  --project-id 123e4567-e89b-12d3-a456-426614174000 \
  --provider-cidr 172.16.0.0/16 \
  --region us-sva-2
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "details": {
    "changes": {
      "foo": {
        "from": "string",
        "to": "string"
      }
    }
  },
  "kind": "vm",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "resource_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "pending",
  "type": "create",
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## Get Connect Connection

`$ nirvana networking:connect:connections get`

**get** `/v1/networking/connect/connections/{connection_id}`

Get Connect Connection details

### Parameters

- `--connection-id: string`

  Connect Connection ID

### Returns

- `connect_connection: object { id, asn, aws, 13 more }`

  Connect Connection details.

  - `id: string`

    Unique identifier for the Connect Connection

  - `asn: number`

    ASN

  - `aws: object { region }`

    AWS provider configuration

    - `region: string`

      AWS region where the connection is established

  - `bandwidth_mbps: 50 or 200 or 500 or 2 more`

    Connect Connection speed in Mbps

    - `50`

    - `200`

    - `500`

    - `1000`

    - `2000`

  - `cidrs: array of string`

    CIDRs for the Connect Connection

  - `created_at: string`

    When the Connect Connection was created

  - `name: string`

    Name of the Connect Connection

  - `project_id: string`

    Project ID the Connect Connection belongs to

  - `provider_asn: number`

    Provider ASN

  - `provider_cidrs: array of string`

    Provider CIDRs for the Connect Connection

  - `provider_router_ip: string`

    Provider Router IP for the Connect Connection

  - `region: "us-sva-2"`

    Region the resource is in.

    - `"us-sva-2"`

  - `router_ip: string`

    Router IP

  - `status: "pending" or "creating" or "updating" or 4 more`

    Status of the resource.

    - `"pending"`

    - `"creating"`

    - `"updating"`

    - `"ready"`

    - `"deleting"`

    - `"deleted"`

    - `"error"`

  - `tags: array of string`

    Tags to attach to the Connect Connection

  - `updated_at: string`

    When the Connect Connection was updated

### Example

```cli
nirvana networking:connect:connections get \
  --api-key 'My API Key' \
  --connection-id connection_id
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "asn": 64512,
  "aws": {
    "region": "us-east-1"
  },
  "bandwidth_mbps": 50,
  "cidrs": [
    "10.0.0.0/16"
  ],
  "created_at": "2025-01-01T00:00:00Z",
  "name": "my-connect-connection",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "provider_asn": 64513,
  "provider_cidrs": [
    "172.16.0.0/16"
  ],
  "provider_router_ip": "169.254.1.43",
  "region": "us-sva-2",
  "router_ip": "169.254.1.42",
  "status": "ready",
  "tags": [
    "production",
    "ethereum"
  ],
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## Update Connect Connection

`$ nirvana networking:connect:connections update`

**patch** `/v1/networking/connect/connections/{connection_id}`

Update Connect Connection details

### Parameters

- `--connection-id: string`

  Connect Connection ID

- `--name: optional string`

  Name of the Connect Connection.

- `--tag: optional array of string`

  Tags to attach to the Connect Connection

### Returns

- `operation: object { id, created_at, details, 6 more }`

  Operation details.

  - `id: string`

    Unique identifier for the Operation.

  - `created_at: string`

    When the Operation was created.

  - `details: object { changes }`

    Structured details about what an operation is changing.

    - `changes: map[OperationFieldDiff]`

      Map of changed field names to their from/to diffs. Keys depend on the parent operation's kind+type.

      - `from: string or number or boolean or array of string`

        Previous value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

      - `to: string or number or boolean or array of string`

        New value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

  - `kind: "vm" or "volume" or "vpc" or 3 more`

    Kind of Operation.

    - `"vm"`

    - `"volume"`

    - `"vpc"`

    - `"firewall_rule"`

    - `"nks_cluster"`

    - `"nks_node_pool"`

  - `project_id: string`

    Project ID the Operation belongs to.

  - `resource_id: string`

    ID of the resource that the Operation is acting on.

  - `status: "pending" or "running" or "done" or 2 more`

    Status of the Operation.

    - `"pending"`

    - `"running"`

    - `"done"`

    - `"failed"`

    - `"unknown"`

  - `type: "create" or "update" or "delete" or "restart"`

    Type of Operation.

    - `"create"`

    - `"update"`

    - `"delete"`

    - `"restart"`

  - `updated_at: string`

    When the Operation was updated.

### Example

```cli
nirvana networking:connect:connections update \
  --api-key 'My API Key' \
  --connection-id connection_id
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "details": {
    "changes": {
      "foo": {
        "from": "string",
        "to": "string"
      }
    }
  },
  "kind": "vm",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "resource_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "pending",
  "type": "create",
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## Delete Connect Connection

`$ nirvana networking:connect:connections delete`

**delete** `/v1/networking/connect/connections/{connection_id}`

Delete Connect Connection

### Parameters

- `--connection-id: string`

  Connect Connection ID

### Returns

- `operation: object { id, created_at, details, 6 more }`

  Operation details.

  - `id: string`

    Unique identifier for the Operation.

  - `created_at: string`

    When the Operation was created.

  - `details: object { changes }`

    Structured details about what an operation is changing.

    - `changes: map[OperationFieldDiff]`

      Map of changed field names to their from/to diffs. Keys depend on the parent operation's kind+type.

      - `from: string or number or boolean or array of string`

        Previous value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

      - `to: string or number or boolean or array of string`

        New value.

        - `union_member_0: string`

        - `union_member_1: number`

        - `union_member_2: boolean`

        - `union_member_3: array of string`

  - `kind: "vm" or "volume" or "vpc" or 3 more`

    Kind of Operation.

    - `"vm"`

    - `"volume"`

    - `"vpc"`

    - `"firewall_rule"`

    - `"nks_cluster"`

    - `"nks_node_pool"`

  - `project_id: string`

    Project ID the Operation belongs to.

  - `resource_id: string`

    ID of the resource that the Operation is acting on.

  - `status: "pending" or "running" or "done" or 2 more`

    Status of the Operation.

    - `"pending"`

    - `"running"`

    - `"done"`

    - `"failed"`

    - `"unknown"`

  - `type: "create" or "update" or "delete" or "restart"`

    Type of Operation.

    - `"create"`

    - `"update"`

    - `"delete"`

    - `"restart"`

  - `updated_at: string`

    When the Operation was updated.

### Example

```cli
nirvana networking:connect:connections delete \
  --api-key 'My API Key' \
  --connection-id connection_id
```

#### Response

```json
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2025-01-01T00:00:00Z",
  "details": {
    "changes": {
      "foo": {
        "from": "string",
        "to": "string"
      }
    }
  },
  "kind": "vm",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "resource_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "pending",
  "type": "create",
  "updated_at": "2025-01-01T00:00:00Z"
}
```

## List Connect Connection

`$ nirvana networking:connect:connections list`

**get** `/v1/networking/connect/connections`

List all Connect Connections

### Parameters

- `--project-id: string`

  Project ID of resources to request

- `--cursor: optional string`

  Pagination cursor returned by a previous request

- `--limit: optional number`

  Maximum number of items to return

### Returns

- `connect_connection_list: object { items, pagination }`

  - `items: array of ConnectConnection`

    - `id: string`

      Unique identifier for the Connect Connection

    - `asn: number`

      ASN

    - `aws: object { region }`

      AWS provider configuration

      - `region: string`

        AWS region where the connection is established

    - `bandwidth_mbps: 50 or 200 or 500 or 2 more`

      Connect Connection speed in Mbps

      - `50`

      - `200`

      - `500`

      - `1000`

      - `2000`

    - `cidrs: array of string`

      CIDRs for the Connect Connection

    - `created_at: string`

      When the Connect Connection was created

    - `name: string`

      Name of the Connect Connection

    - `project_id: string`

      Project ID the Connect Connection belongs to

    - `provider_asn: number`

      Provider ASN

    - `provider_cidrs: array of string`

      Provider CIDRs for the Connect Connection

    - `provider_router_ip: string`

      Provider Router IP for the Connect Connection

    - `region: "us-sva-2"`

      Region the resource is in.

      - `"us-sva-2"`

    - `router_ip: string`

      Router IP

    - `status: "pending" or "creating" or "updating" or 4 more`

      Status of the resource.

      - `"pending"`

      - `"creating"`

      - `"updating"`

      - `"ready"`

      - `"deleting"`

      - `"deleted"`

      - `"error"`

    - `tags: array of string`

      Tags to attach to the Connect Connection

    - `updated_at: string`

      When the Connect Connection was updated

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

### Example

```cli
nirvana networking:connect:connections list \
  --api-key 'My API Key' \
  --project-id project_id
```

#### Response

```json
{
  "items": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "asn": 64512,
      "aws": {
        "region": "us-east-1"
      },
      "bandwidth_mbps": 50,
      "cidrs": [
        "10.0.0.0/16"
      ],
      "created_at": "2025-01-01T00:00:00Z",
      "name": "my-connect-connection",
      "project_id": "123e4567-e89b-12d3-a456-426614174000",
      "provider_asn": 64513,
      "provider_cidrs": [
        "172.16.0.0/16"
      ],
      "provider_router_ip": "169.254.1.43",
      "region": "us-sva-2",
      "router_ip": "169.254.1.42",
      "status": "ready",
      "tags": [
        "production",
        "ethereum"
      ],
      "updated_at": "2025-01-01T00:00:00Z"
    }
  ],
  "pagination": {
    "next_cursor": "RhwniMT4B74siYZcPF8TnCdGI1l9rpPvg",
    "previous_cursor": "ARhwnmi1hA7wEbHbMjdYQlOB_ZusP4fYvw",
    "total_count": 125
  }
}
```

# Routes

## List Connect Supported Routes

`$ nirvana networking:connect:routes list`

**get** `/v1/networking/connect/routes`

List all supported routes with regions for Connect.

### Parameters

- `--cursor: optional string`

  Pagination cursor returned by a previous request

- `--limit: optional number`

  Maximum number of items to return

### Returns

- `connect_route_list: object { items, pagination }`

  - `items: array of ConnectRoute`

    - `nirvana_region: "us-sva-2"`

      Region the resource is in.

      - `"us-sva-2"`

    - `provider: string`

      Provider name.

    - `provider_region: string`

      Provider region name.

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

### Example

```cli
nirvana networking:connect:routes list \
  --api-key 'My API Key'
```

#### Response

```json
{
  "items": [
    {
      "nirvana_region": "us-sva-2",
      "provider": "aws",
      "provider_region": "us-east-1"
    }
  ],
  "pagination": {
    "next_cursor": "RhwniMT4B74siYZcPF8TnCdGI1l9rpPvg",
    "previous_cursor": "ARhwnmi1hA7wEbHbMjdYQlOB_ZusP4fYvw",
    "total_count": 125
  }
}
```
