CreatePreauthenticatedRequestDetails

Details for creating a preauthenticated request.

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

Name Type Description
name string A user-specified name for the pre-authenticated request.
objectName string Name of object to grant access to. Omit for bucket-level access.
accessType string The operation that can be performed.
timeExpires string The expiration date for the pre-authenticated request.
View JSON Schema on GitHub

JSON Schema

oracle-cloud-createpreauthenticatedrequestdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePreauthenticatedRequestDetails",
  "title": "CreatePreauthenticatedRequestDetails",
  "type": "object",
  "description": "Details for creating a preauthenticated request.",
  "required": [
    "name",
    "accessType",
    "timeExpires"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "A user-specified name for the pre-authenticated request.",
      "example": "my-par"
    },
    "objectName": {
      "type": "string",
      "description": "Name of object to grant access to. Omit for bucket-level access.",
      "example": "example-value"
    },
    "accessType": {
      "type": "string",
      "description": "The operation that can be performed.",
      "enum": [
        "ObjectRead",
        "ObjectWrite",
        "ObjectReadWrite",
        "AnyObjectRead",
        "AnyObjectWrite",
        "AnyObjectReadWrite"
      ],
      "example": "ObjectRead"
    },
    "timeExpires": {
      "type": "string",
      "format": "date-time",
      "description": "The expiration date for the pre-authenticated request.",
      "example": "2026-12-31T23:59:59Z"
    }
  }
}