Show / Hide Table of Contents

Class ListAwrHubObjectsRequest

Inheritance
object
ListAwrHubObjectsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Requests
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class ListAwrHubObjectsRequest : IOciRequest
Examples

Click here to see an example of how to use ListAwrHubObjects request.

Properties

AwrHubSourceId

Declaration
[Required(ErrorMessage = "AwrHubSourceId is required.")]
[HttpConverter(TargetEnum.Path, "awrHubSourceId")]
public string AwrHubSourceId { get; set; }
Property Value
Type Description
string

Unique Awr Hub Source identifier

Remarks

Required

Delimiter

Declaration
[HttpConverter(TargetEnum.Query, "delimiter")]
public string Delimiter { get; set; }
Property Value
Type Description
string

When this parameter is set, only objects whose names do not contain the delimiter character (after an optionally specified prefix) are returned in the Awr Hub list objects key of the response body. Scanned objects whose names contain the delimiter have the part of their name up to the first occurrence of the delimiter (including the optional prefix) returned as a set of prefixes. Note that only '/' is a supported delimiter character at this time.

End

Declaration
[HttpConverter(TargetEnum.Query, "end")]
public string End { get; set; }
Property Value
Type Description
string

Object names returned by Awr Hub list objects query must be strictly less than this parameter.

Fields

Declaration
[HttpConverter(TargetEnum.Query, "fields")]
public ListAwrHubObjectsRequest.FieldsEnum? Fields { get; set; }
Property Value
Type Description
ListAwrHubObjectsRequest.FieldsEnum?

By default all the fields are returned. Use this parameter to fetch specific fields 'size', 'etag', 'md5', 'timeCreated', 'timeModified', 'storageTier' and 'archivalState' fields. List the names of those fields in a comma-separated, case-insensitive list as the value of this parameter. For Example: 'name,etag,timeCreated,md5,timeModified,storageTier,archivalState'.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see List Pagination. Example: 50

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

For list pagination. The value of the opc-next-page response header from the previous "List" call. For important details about how pagination works, see List Pagination.

Prefix

Declaration
[HttpConverter(TargetEnum.Query, "prefix")]
public string Prefix { get; set; }
Property Value
Type Description
string

The string to use for matching against the start of object names in a Awr Hub list objects query.

Start

Declaration
[HttpConverter(TargetEnum.Query, "start")]
public string Start { get; set; }
Property Value
Type Description
string

Object names returned by Awr Hub list objects query must be greater or equal to this parameter.

StartAfter

Declaration
[HttpConverter(TargetEnum.Query, "startAfter")]
public string StartAfter { get; set; }
Property Value
Type Description
string

Awr Hub Object name after which remaining objects are listed

Implements

IOciRequest
In this article
Back to top