Show / Hide Table of Contents

Class PreauthenticatedRequestSummary

Get summary information about pre-authenticated requests.

Inheritance
object
PreauthenticatedRequestSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ObjectstorageService.Models
Assembly: OCI.DotNetSDK.Objectstorage.dll
Syntax
public class PreauthenticatedRequestSummary

Properties

AccessType

Declaration
[Required(ErrorMessage = "AccessType is required.")]
[JsonProperty(PropertyName = "accessType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PreauthenticatedRequestSummary.AccessTypeEnum? AccessType { get; set; }
Property Value
Type Description
PreauthenticatedRequestSummary.AccessTypeEnum?

The operation that can be performed on this resource.

Remarks

Required

BucketListingAction

Declaration
[JsonProperty(PropertyName = "bucketListingAction")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PreauthenticatedRequest.BucketListingActionEnum? BucketListingAction { get; set; }
Property Value
Type Description
PreauthenticatedRequest.BucketListingActionEnum?

Specifies whether a list operation is allowed on a PAR with accessType "AnyObjectRead" or "AnyObjectReadWrite". Deny: Prevents the user from performing a list operation. ListObjects: Authorizes the user to perform a list operation.

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The unique identifier to use when directly addressing the pre-authenticated request.

Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The user-provided name of the pre-authenticated request.

Remarks

Required

ObjectName

Declaration
[JsonProperty(PropertyName = "objectName")]
public string ObjectName { get; set; }
Property Value
Type Description
string

The name of object that is being granted access to by the pre-authenticated request. This can be null and if it is, the pre-authenticated request grants access to the entire bucket.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date when the pre-authenticated request was created as per RFC 3339.

Remarks

Required

TimeExpires

Declaration
[Required(ErrorMessage = "TimeExpires is required.")]
[JsonProperty(PropertyName = "timeExpires")]
public DateTime? TimeExpires { get; set; }
Property Value
Type Description
DateTime?

The expiration date for the pre-authenticated request as per RFC 3339. After this date the pre-authenticated request will no longer be valid.

Remarks

Required

In this article
Back to top