Show / Hide Table of Contents

Class ListObjects

To use any of the API operations, you must be authorized in an IAM policy. If you are not authorized, talk to an administrator. If you are an administrator who needs to write policies to give users access, see Getting Started with Policies.

Inheritance
object
ListObjects
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 ListObjects

Properties

NextStartWith

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

The name of the object to use in the start parameter to obtain the next page of a truncated ListObjects response. Avoid entering confidential information. Example: test/object1.log

Objects

Declaration
[Required(ErrorMessage = "Objects is required.")]
[JsonProperty(PropertyName = "objects")]
public List<ObjectSummary> Objects { get; set; }
Property Value
Type Description
List<ObjectSummary>

An array of object summaries.

Remarks

Required

Prefixes

Declaration
[JsonProperty(PropertyName = "prefixes")]
public List<string> Prefixes { get; set; }
Property Value
Type Description
List<string>

Prefixes that are common to the results returned by the request if the request specified a delimiter.

In this article
Back to top