Chilkat Online Tools

TCL / Core Services API / UpdateVirtualCircuit

Back to Collection Items

load ./chilkat.dll

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

# Use this online tool to generate code from sample JSON: Generate Code to Create JSON

# The following JSON is sent in the request body.

# {
#   "bandwidthShapeName": "quis qui eu",
#   "crossConnectMappings": [
#     {
#       "value": "<Error: Too many levels of nesting to fake this schema>"
#     },
#     {
#       "value": "<Error: Too many levels of nesting to fake this schema>"
#     }
#   ],
#   "customerBgpAsn": -71609415,
#   "definedTags": {},
#   "displayName": "et nostrud Lorem dolore",
#   "freeformTags": {},
#   "gatewayId": "consectetur irure",
#   "providerServiceKeyName": "labore in ex",
#   "providerState": "ACTIVE",
#   "referenceComment": "adipisicing commodo",
#   "routingPolicy": [
#     "GLOBAL",
#     "MARKET_LEVEL"
#   ]
# }

set json [new_CkJsonObject]

CkJsonObject_UpdateString $json "bandwidthShapeName" "quis qui eu"
CkJsonObject_UpdateString $json "crossConnectMappings[0].value" "<Error: Too many levels of nesting to fake this schema>"
CkJsonObject_UpdateString $json "crossConnectMappings[1].value" "<Error: Too many levels of nesting to fake this schema>"
CkJsonObject_UpdateInt $json "customerBgpAsn" -71609415
CkJsonObject_UpdateNewObject $json "definedTags"
CkJsonObject_UpdateString $json "displayName" "et nostrud Lorem dolore"
CkJsonObject_UpdateNewObject $json "freeformTags"
CkJsonObject_UpdateString $json "gatewayId" "consectetur irure"
CkJsonObject_UpdateString $json "providerServiceKeyName" "labore in ex"
CkJsonObject_UpdateString $json "providerState" "ACTIVE"
CkJsonObject_UpdateString $json "referenceComment" "adipisicing commodo"
CkJsonObject_UpdateString $json "routingPolicy[0]" "GLOBAL"
CkJsonObject_UpdateString $json "routingPolicy[1]" "MARKET_LEVEL"

CkHttp_SetRequestHeader $http "Content-Type" "application/json"
CkHttp_SetRequestHeader $http "x-content-sha256" "{{content_sha256}}"
CkHttp_SetRequestHeader $http "Authorization" "{{signature}}"
CkHttp_SetRequestHeader $http "Date" "{{date}}"
CkHttp_SetRequestHeader $http "if-match" "officia sed"

set sbRequestBody [new_CkStringBuilder]

CkJsonObject_EmitSb $json $sbRequestBody

# resp is a CkHttpResponse
set resp [CkHttp_PTextSb $http "PUT" "https://iaas.{{region}}.oraclecloud.com/20160918/virtualCircuits/:virtualCircuitId" $sbRequestBody "utf-8" "application/json" 0 0]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $json
    delete_CkStringBuilder $sbRequestBody
    exit
}

set sbResponseBody [new_CkStringBuilder]

CkHttpResponse_GetBodySb $resp $sbResponseBody

set jResp [new_CkJsonObject]

CkJsonObject_LoadSb $jResp $sbResponseBody
CkJsonObject_put_EmitCompact $jResp 0

puts "Response Body:"
puts [CkJsonObject_emit $jResp]

set respStatusCode [CkHttpResponse_get_StatusCode $resp]
puts "Response Status Code = $respStatusCode"
if {$respStatusCode >= 400} then {
    puts "Response Header:"
    puts [CkHttpResponse_header $resp]
    puts "Failed."
    delete_CkHttpResponse $resp

    delete_CkHttp $http
    delete_CkJsonObject $json
    delete_CkStringBuilder $sbRequestBody
    delete_CkStringBuilder $sbResponseBody
    delete_CkJsonObject $jResp
    exit
}

delete_CkHttpResponse $resp

# Sample JSON response:
# (Sample code for parsing the JSON response is shown below)

# {
#   "bandwidthShapeName": "aliquip quis",
#   "bgpManagement": "PROVIDER_MANAGED",
#   "bgpSessionState": "UP",
#   "compartmentId": "ex voluptate ea eiusmod",
#   "crossConnectMappings": [
#     {
#       "value": "<Error: Too many levels of nesting to fake this schema>"
#     },
#     {
#       "value": "<Error: Too many levels of nesting to fake this schema>"
#     }
#   ],
#   "customerBgpAsn": 32592947,
#   "definedTags": {},
#   "displayName": "sunt exercitation",
#   "freeformTags": {},
#   "gatewayId": "sed deserunt magna",
#   "id": "ex Duis amet culpa",
#   "lifecycleState": "PROVISIONING",
#   "oracleBgpAsn": 34318225,
#   "providerName": "ullamco occaecat culpa cillum",
#   "providerServiceId": "nisi ex culpa dolor",
#   "providerServiceKeyName": "nostru",
#   "providerServiceName": "laboris labore",
#   "providerState": "ACTIVE",
#   "publicPrefixes": [
#     "proident et amet qui dolor",
#     "tempor nostrud"
#   ],
#   "referenceComment": "laboris fugiat do",
#   "region": "dolore sint ut non",
#   "routingPolicy": [
#     "MARKET_LEVEL",
#     "GLOBAL"
#   ],
#   "serviceType": "LAYER2",
#   "timeCreated": "2021-02-05T13:31:56.554Z",
#   "type": "PUBLIC"
# }

# Sample code for parsing the JSON response...
# Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

set bandwidthShapeName [CkJsonObject_stringOf $jResp "bandwidthShapeName"]
set bgpManagement [CkJsonObject_stringOf $jResp "bgpManagement"]
set bgpSessionState [CkJsonObject_stringOf $jResp "bgpSessionState"]
set compartmentId [CkJsonObject_stringOf $jResp "compartmentId"]
set customerBgpAsn [CkJsonObject_IntOf $jResp "customerBgpAsn"]
set displayName [CkJsonObject_stringOf $jResp "displayName"]
set gatewayId [CkJsonObject_stringOf $jResp "gatewayId"]
set id [CkJsonObject_stringOf $jResp "id"]
set lifecycleState [CkJsonObject_stringOf $jResp "lifecycleState"]
set oracleBgpAsn [CkJsonObject_IntOf $jResp "oracleBgpAsn"]
set providerName [CkJsonObject_stringOf $jResp "providerName"]
set providerServiceId [CkJsonObject_stringOf $jResp "providerServiceId"]
set providerServiceKeyName [CkJsonObject_stringOf $jResp "providerServiceKeyName"]
set providerServiceName [CkJsonObject_stringOf $jResp "providerServiceName"]
set providerState [CkJsonObject_stringOf $jResp "providerState"]
set referenceComment [CkJsonObject_stringOf $jResp "referenceComment"]
set region [CkJsonObject_stringOf $jResp "region"]
set serviceType [CkJsonObject_stringOf $jResp "serviceType"]
set timeCreated [CkJsonObject_stringOf $jResp "timeCreated"]
set v_type [CkJsonObject_stringOf $jResp "type"]
set i 0
set count_i [CkJsonObject_SizeOfArray $jResp "crossConnectMappings"]
while {$i < $count_i} {
    CkJsonObject_put_I $jResp $i
    set value [CkJsonObject_stringOf $jResp "crossConnectMappings[i].value"]
    set i [expr $i + 1]
}
set i 0
set count_i [CkJsonObject_SizeOfArray $jResp "publicPrefixes"]
while {$i < $count_i} {
    CkJsonObject_put_I $jResp $i
    set strVal [CkJsonObject_stringOf $jResp "publicPrefixes[i]"]
    set i [expr $i + 1]
}
set i 0
set count_i [CkJsonObject_SizeOfArray $jResp "routingPolicy"]
while {$i < $count_i} {
    CkJsonObject_put_I $jResp $i
    set strVal [CkJsonObject_stringOf $jResp "routingPolicy[i]"]
    set i [expr $i + 1]
}

delete_CkHttp $http
delete_CkJsonObject $json
delete_CkStringBuilder $sbRequestBody
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp

Curl Command

curl -X PUT
	-H "if-match: officia sed"
	-H "Content-Type: application/json"
	-H "Date: {{date}}"
	-H "Authorization: {{signature}}"
	-H "x-content-sha256: {{content_sha256}}"
	-d '{
    "bandwidthShapeName": "quis qui eu",
    "crossConnectMappings": [
        {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        },
        {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        }
    ],
    "customerBgpAsn": -71609415,
    "definedTags": {},
    "displayName": "et nostrud Lorem dolore",
    "freeformTags": {},
    "gatewayId": "consectetur irure",
    "providerServiceKeyName": "labore in ex",
    "providerState": "ACTIVE",
    "referenceComment": "adipisicing commodo",
    "routingPolicy": [
        "GLOBAL",
        "MARKET_LEVEL"
    ]
}'
https://iaas.{{region}}.oraclecloud.com/20160918/virtualCircuits/:virtualCircuitId

Postman Collection Item JSON

{
  "name": "UpdateVirtualCircuit",
  "request": {
    "method": "PUT",
    "header": [
      {
        "description": "For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`\nparameter to the value of the etag from a previous GET or POST response for that resource. The resource\nwill be updated or deleted only if the etag you provide matches the resource's current etag value.\n",
        "key": "if-match",
        "value": "officia sed"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Date",
        "value": "{{date}}",
        "description": "(Required) Current Date",
        "type": "text"
      },
      {
        "key": "Authorization",
        "value": "{{signature}}",
        "description": "(Required) Signature Authentication on Authorization header",
        "type": "text"
      },
      {
        "key": "x-content-sha256",
        "value": "{{content_sha256}}",
        "description": "(Required) Content sha256 for POST, PUT and PATCH operations",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"bandwidthShapeName\": \"quis qui eu\",\n    \"crossConnectMappings\": [\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    ],\n    \"customerBgpAsn\": -71609415,\n    \"definedTags\": {},\n    \"displayName\": \"et nostrud Lorem dolore\",\n    \"freeformTags\": {},\n    \"gatewayId\": \"consectetur irure\",\n    \"providerServiceKeyName\": \"labore in ex\",\n    \"providerState\": \"ACTIVE\",\n    \"referenceComment\": \"adipisicing commodo\",\n    \"routingPolicy\": [\n        \"GLOBAL\",\n        \"MARKET_LEVEL\"\n    ]\n}"
    },
    "url": {
      "raw": "{{baseUrl}}/virtualCircuits/:virtualCircuitId",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "virtualCircuits",
        ":virtualCircuitId"
      ],
      "variable": [
        {
          "key": "virtualCircuitId",
          "value": "amet ut",
          "description": "(Required) The [OCID](/Content/General/Concepts/identifiers.htm) of the virtual circuit."
        }
      ]
    },
    "description": "Updates the specified virtual circuit. This can be called by\neither the customer who owns the virtual circuit, or the\nprovider (when provisioning or de-provisioning the virtual\ncircuit from their end). The documentation for\n[UpdateVirtualCircuitDetails](#/en/iaas/latest/requests/UpdateVirtualCircuitDetails)\nindicates who can update each property of the virtual circuit.\n\n**Important:** If the virtual circuit is working and in the\nPROVISIONED state, updating any of the network-related properties\n(such as the DRG being used, the BGP ASN, and so on) will cause the virtual\ncircuit's state to switch to PROVISIONING and the related BGP\nsession to go down. After Oracle re-provisions the virtual circuit,\nits state will return to PROVISIONED. Make sure you confirm that\nthe associated BGP session is back up. For more information\nabout the various states and how to test connectivity, see\n[FastConnect Overview](/iaas/Content/Network/Concepts/fastconnect.htm).\n\nTo change the list of public IP prefixes for a public virtual circuit,\nuse [BulkAddVirtualCircuitPublicPrefixes](#/en/iaas/latest/VirtualCircuitPublicPrefix/BulkAddVirtualCircuitPublicPrefixes)\nand\n[BulkDeleteVirtualCircuitPublicPrefixes](#/en/iaas/latest/VirtualCircuitPublicPrefix/BulkDeleteVirtualCircuitPublicPrefixes).\nUpdating the list of prefixes does NOT cause the BGP session to go down. However,\nOracle must verify the customer's ownership of each added prefix before\ntraffic for that prefix will flow across the virtual circuit.\n"
  },
  "response": [
    {
      "name": "The virtual circuit was updated.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`\nparameter to the value of the etag from a previous GET or POST response for that resource. The resource\nwill be updated or deleted only if the etag you provide matches the resource's current etag value.\n",
            "key": "if-match",
            "value": "officia sed"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bandwidthShapeName\": \"null\",\n    \"crossConnectMappings\": [\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    ],\n    \"customerBgpAsn\": 5551116,\n    \"definedTags\": {},\n    \"displayName\": \"minim consequat\",\n    \"freeformTags\": {},\n    \"gatewayId\": \"deserunt aliqua dolore consectetur\",\n    \"providerServiceKeyName\": \"consequat magna commodo dolore\",\n    \"providerState\": \"ACTIVE\",\n    \"referenceComment\": \"in aute velit et id\",\n    \"routingPolicy\": [\n        \"ORACLE_SERVICE_NETWORK\",\n        \"MARKET_LEVEL\"\n    ]\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/virtualCircuits/:virtualCircuitId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "virtualCircuits",
            ":virtualCircuitId"
          ],
          "variable": [
            {
              "key": "virtualCircuitId"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "etag",
          "value": "officia sed",
          "description": "For optimistic concurrency control. See `if-match`.\n"
        },
        {
          "key": "opc-request-id",
          "value": "officia sed",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact\nOracle about a particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"bandwidthShapeName\": \"aliquip quis\",\n \"bgpManagement\": \"PROVIDER_MANAGED\",\n \"bgpSessionState\": \"UP\",\n \"compartmentId\": \"ex voluptate ea eiusmod\",\n \"crossConnectMappings\": [\n  {\n   \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n  },\n  {\n   \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n  }\n ],\n \"customerBgpAsn\": 32592947,\n \"definedTags\": {},\n \"displayName\": \"sunt exercitation\",\n \"freeformTags\": {},\n \"gatewayId\": \"sed deserunt magna\",\n \"id\": \"ex Duis amet culpa\",\n \"lifecycleState\": \"PROVISIONING\",\n \"oracleBgpAsn\": 34318225,\n \"providerName\": \"ullamco occaecat culpa cillum\",\n \"providerServiceId\": \"nisi ex culpa dolor\",\n \"providerServiceKeyName\": \"nostru\",\n \"providerServiceName\": \"laboris labore\",\n \"providerState\": \"ACTIVE\",\n \"publicPrefixes\": [\n  \"proident et amet qui dolor\",\n  \"tempor nostrud\"\n ],\n \"referenceComment\": \"laboris fugiat do\",\n \"region\": \"dolore sint ut non\",\n \"routingPolicy\": [\n  \"MARKET_LEVEL\",\n  \"GLOBAL\"\n ],\n \"serviceType\": \"LAYER2\",\n \"timeCreated\": \"2021-02-05T13:31:56.554Z\",\n \"type\": \"PUBLIC\"\n}"
    },
    {
      "name": "Bad Request",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`\nparameter to the value of the etag from a previous GET or POST response for that resource. The resource\nwill be updated or deleted only if the etag you provide matches the resource's current etag value.\n",
            "key": "if-match",
            "value": "officia sed"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bandwidthShapeName\": \"null\",\n    \"crossConnectMappings\": [\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    ],\n    \"customerBgpAsn\": 5551116,\n    \"definedTags\": {},\n    \"displayName\": \"minim consequat\",\n    \"freeformTags\": {},\n    \"gatewayId\": \"deserunt aliqua dolore consectetur\",\n    \"providerServiceKeyName\": \"consequat magna commodo dolore\",\n    \"providerState\": \"ACTIVE\",\n    \"referenceComment\": \"in aute velit et id\",\n    \"routingPolicy\": [\n        \"ORACLE_SERVICE_NETWORK\",\n        \"MARKET_LEVEL\"\n    ]\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/virtualCircuits/:virtualCircuitId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "virtualCircuits",
            ":virtualCircuitId"
          ],
          "variable": [
            {
              "key": "virtualCircuitId"
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "officia sed",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact\nOracle about a particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"et exercitation Excepteur\",\n \"message\": \"irure sit\"\n}"
    },
    {
      "name": "Unauthorized",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`\nparameter to the value of the etag from a previous GET or POST response for that resource. The resource\nwill be updated or deleted only if the etag you provide matches the resource's current etag value.\n",
            "key": "if-match",
            "value": "officia sed"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bandwidthShapeName\": \"null\",\n    \"crossConnectMappings\": [\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    ],\n    \"customerBgpAsn\": 5551116,\n    \"definedTags\": {},\n    \"displayName\": \"minim consequat\",\n    \"freeformTags\": {},\n    \"gatewayId\": \"deserunt aliqua dolore consectetur\",\n    \"providerServiceKeyName\": \"consequat magna commodo dolore\",\n    \"providerState\": \"ACTIVE\",\n    \"referenceComment\": \"in aute velit et id\",\n    \"routingPolicy\": [\n        \"ORACLE_SERVICE_NETWORK\",\n        \"MARKET_LEVEL\"\n    ]\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/virtualCircuits/:virtualCircuitId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "virtualCircuits",
            ":virtualCircuitId"
          ],
          "variable": [
            {
              "key": "virtualCircuitId"
            }
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "officia sed",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact\nOracle about a particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"et exercitation Excepteur\",\n \"message\": \"irure sit\"\n}"
    },
    {
      "name": "Forbidden",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`\nparameter to the value of the etag from a previous GET or POST response for that resource. The resource\nwill be updated or deleted only if the etag you provide matches the resource's current etag value.\n",
            "key": "if-match",
            "value": "officia sed"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bandwidthShapeName\": \"null\",\n    \"crossConnectMappings\": [\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    ],\n    \"customerBgpAsn\": 5551116,\n    \"definedTags\": {},\n    \"displayName\": \"minim consequat\",\n    \"freeformTags\": {},\n    \"gatewayId\": \"deserunt aliqua dolore consectetur\",\n    \"providerServiceKeyName\": \"consequat magna commodo dolore\",\n    \"providerState\": \"ACTIVE\",\n    \"referenceComment\": \"in aute velit et id\",\n    \"routingPolicy\": [\n        \"ORACLE_SERVICE_NETWORK\",\n        \"MARKET_LEVEL\"\n    ]\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/virtualCircuits/:virtualCircuitId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "virtualCircuits",
            ":virtualCircuitId"
          ],
          "variable": [
            {
              "key": "virtualCircuitId"
            }
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "officia sed",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact\nOracle about a particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"et exercitation Excepteur\",\n \"message\": \"irure sit\"\n}"
    },
    {
      "name": "Not Found",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`\nparameter to the value of the etag from a previous GET or POST response for that resource. The resource\nwill be updated or deleted only if the etag you provide matches the resource's current etag value.\n",
            "key": "if-match",
            "value": "officia sed"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bandwidthShapeName\": \"null\",\n    \"crossConnectMappings\": [\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    ],\n    \"customerBgpAsn\": 5551116,\n    \"definedTags\": {},\n    \"displayName\": \"minim consequat\",\n    \"freeformTags\": {},\n    \"gatewayId\": \"deserunt aliqua dolore consectetur\",\n    \"providerServiceKeyName\": \"consequat magna commodo dolore\",\n    \"providerState\": \"ACTIVE\",\n    \"referenceComment\": \"in aute velit et id\",\n    \"routingPolicy\": [\n        \"ORACLE_SERVICE_NETWORK\",\n        \"MARKET_LEVEL\"\n    ]\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/virtualCircuits/:virtualCircuitId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "virtualCircuits",
            ":virtualCircuitId"
          ],
          "variable": [
            {
              "key": "virtualCircuitId"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "officia sed",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact\nOracle about a particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"et exercitation Excepteur\",\n \"message\": \"irure sit\"\n}"
    },
    {
      "name": "Conflict",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`\nparameter to the value of the etag from a previous GET or POST response for that resource. The resource\nwill be updated or deleted only if the etag you provide matches the resource's current etag value.\n",
            "key": "if-match",
            "value": "officia sed"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bandwidthShapeName\": \"null\",\n    \"crossConnectMappings\": [\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    ],\n    \"customerBgpAsn\": 5551116,\n    \"definedTags\": {},\n    \"displayName\": \"minim consequat\",\n    \"freeformTags\": {},\n    \"gatewayId\": \"deserunt aliqua dolore consectetur\",\n    \"providerServiceKeyName\": \"consequat magna commodo dolore\",\n    \"providerState\": \"ACTIVE\",\n    \"referenceComment\": \"in aute velit et id\",\n    \"routingPolicy\": [\n        \"ORACLE_SERVICE_NETWORK\",\n        \"MARKET_LEVEL\"\n    ]\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/virtualCircuits/:virtualCircuitId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "virtualCircuits",
            ":virtualCircuitId"
          ],
          "variable": [
            {
              "key": "virtualCircuitId"
            }
          ]
        }
      },
      "status": "Conflict",
      "code": 409,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "officia sed",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact\nOracle about a particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"et exercitation Excepteur\",\n \"message\": \"irure sit\"\n}"
    },
    {
      "name": "Precondition Failed",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`\nparameter to the value of the etag from a previous GET or POST response for that resource. The resource\nwill be updated or deleted only if the etag you provide matches the resource's current etag value.\n",
            "key": "if-match",
            "value": "officia sed"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bandwidthShapeName\": \"null\",\n    \"crossConnectMappings\": [\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    ],\n    \"customerBgpAsn\": 5551116,\n    \"definedTags\": {},\n    \"displayName\": \"minim consequat\",\n    \"freeformTags\": {},\n    \"gatewayId\": \"deserunt aliqua dolore consectetur\",\n    \"providerServiceKeyName\": \"consequat magna commodo dolore\",\n    \"providerState\": \"ACTIVE\",\n    \"referenceComment\": \"in aute velit et id\",\n    \"routingPolicy\": [\n        \"ORACLE_SERVICE_NETWORK\",\n        \"MARKET_LEVEL\"\n    ]\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/virtualCircuits/:virtualCircuitId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "virtualCircuits",
            ":virtualCircuitId"
          ],
          "variable": [
            {
              "key": "virtualCircuitId"
            }
          ]
        }
      },
      "status": "Precondition Failed",
      "code": 412,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "officia sed",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact\nOracle about a particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"et exercitation Excepteur\",\n \"message\": \"irure sit\"\n}"
    },
    {
      "name": "Internal Server Error",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`\nparameter to the value of the etag from a previous GET or POST response for that resource. The resource\nwill be updated or deleted only if the etag you provide matches the resource's current etag value.\n",
            "key": "if-match",
            "value": "officia sed"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bandwidthShapeName\": \"null\",\n    \"crossConnectMappings\": [\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    ],\n    \"customerBgpAsn\": 5551116,\n    \"definedTags\": {},\n    \"displayName\": \"minim consequat\",\n    \"freeformTags\": {},\n    \"gatewayId\": \"deserunt aliqua dolore consectetur\",\n    \"providerServiceKeyName\": \"consequat magna commodo dolore\",\n    \"providerState\": \"ACTIVE\",\n    \"referenceComment\": \"in aute velit et id\",\n    \"routingPolicy\": [\n        \"ORACLE_SERVICE_NETWORK\",\n        \"MARKET_LEVEL\"\n    ]\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/virtualCircuits/:virtualCircuitId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "virtualCircuits",
            ":virtualCircuitId"
          ],
          "variable": [
            {
              "key": "virtualCircuitId"
            }
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "officia sed",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact\nOracle about a particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"et exercitation Excepteur\",\n \"message\": \"irure sit\"\n}"
    },
    {
      "name": "An error has occurred.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": "For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`\nparameter to the value of the etag from a previous GET or POST response for that resource. The resource\nwill be updated or deleted only if the etag you provide matches the resource's current etag value.\n",
            "key": "if-match",
            "value": "officia sed"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bandwidthShapeName\": \"null\",\n    \"crossConnectMappings\": [\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    ],\n    \"customerBgpAsn\": 5551116,\n    \"definedTags\": {},\n    \"displayName\": \"minim consequat\",\n    \"freeformTags\": {},\n    \"gatewayId\": \"deserunt aliqua dolore consectetur\",\n    \"providerServiceKeyName\": \"consequat magna commodo dolore\",\n    \"providerState\": \"ACTIVE\",\n    \"referenceComment\": \"in aute velit et id\",\n    \"routingPolicy\": [\n        \"ORACLE_SERVICE_NETWORK\",\n        \"MARKET_LEVEL\"\n    ]\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/virtualCircuits/:virtualCircuitId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "virtualCircuits",
            ":virtualCircuitId"
          ],
          "variable": [
            {
              "key": "virtualCircuitId"
            }
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "opc-request-id",
          "value": "officia sed",
          "description": "Unique Oracle-assigned identifier for the request. If you need to contact\nOracle about a particular request, please provide the request ID.\n"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"code\": \"et exercitation Excepteur\",\n \"message\": \"irure sit\"\n}"
    }
  ]
}