CreateInternetGatewayDetails

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

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

JSON Schema

oracle-cloud-createinternetgatewaydetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateInternetGatewayDetails",
  "title": "CreateInternetGatewayDetails",
  "type": "object",
  "required": [
    "compartmentId",
    "vcnId",
    "isEnabled"
  ],
  "properties": {
    "compartmentId": {
      "type": "string",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "vcnId": {
      "type": "string",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "isEnabled": {
      "type": "boolean",
      "default": true,
      "example": true
    },
    "displayName": {
      "type": "string",
      "example": "my-resource"
    }
  }
}