Oracle Cloud Infrastructure · Schema
PreauthenticatedRequest
A preauthenticated request with access URI.
Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier. |
| name | string | The user-provided name. |
| accessUri | string | The URI to embed in a URL. |
| objectName | string | The name of the object. |
| accessType | string | |
| timeExpires | string | |
| timeCreated | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/oracle-cloud/refs/heads/main/json-schema/object-storage-preauthenticated-request-schema.json",
"title": "PreauthenticatedRequest",
"description": "A preauthenticated request with access URI.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier.",
"example": "ocid1.resource.oc1.iad.abcdefg123456"
},
"name": {
"type": "string",
"description": "The user-provided name.",
"example": "example-value"
},
"accessUri": {
"type": "string",
"description": "The URI to embed in a URL.",
"example": "example-value"
},
"objectName": {
"type": "string",
"description": "The name of the object.",
"example": "example-value"
},
"accessType": {
"type": "string",
"enum": "['ObjectRead', 'ObjectWrite', 'ObjectReadWrite', 'AnyObjectRead', 'AnyObjectWrite', 'AnyObjectReadWrite']",
"example": "ObjectRead"
},
"timeExpires": {
"type": "string",
"format": "date-time",
"example": "2026-04-18T10:30:00Z"
},
"timeCreated": {
"type": "string",
"format": "date-time",
"example": "2026-04-18T10:30:00Z"
}
}
}