InternetGateway

An internet gateway for a VCN.

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

Name Type Description
id string
compartmentId string
vcnId string
displayName string
isEnabled boolean
lifecycleState string
timeCreated string
View JSON Schema on GitHub

JSON Schema

oracle-cloud-internetgateway-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InternetGateway",
  "title": "InternetGateway",
  "type": "object",
  "description": "An internet gateway for a VCN.",
  "properties": {
    "id": {
      "type": "string",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "compartmentId": {
      "type": "string",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "vcnId": {
      "type": "string",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "displayName": {
      "type": "string",
      "example": "my-internet-gateway"
    },
    "isEnabled": {
      "type": "boolean",
      "example": true
    },
    "lifecycleState": {
      "type": "string",
      "enum": [
        "PROVISIONING",
        "AVAILABLE",
        "TERMINATING",
        "TERMINATED"
      ],
      "example": "PROVISIONING"
    },
    "timeCreated": {
      "type": "string",
      "format": "date-time",
      "example": "2026-04-18T10:30:00Z"
    }
  }
}