Show / Hide Table of Contents

Class SummarizeManagementAgentPluginCountsRequest

Inheritance
object
SummarizeManagementAgentPluginCountsRequest
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.ManagementagentService.Requests
Assembly: OCI.DotNetSDK.Managementagent.dll
Syntax
public class SummarizeManagementAgentPluginCountsRequest : IOciRequest
Examples

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

Properties

CompartmentId

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

The OCID of the compartment to which a request will be scoped.

Remarks

Required

CompartmentIdInSubtree

Declaration
[HttpConverter(TargetEnum.Query, "compartmentIdInSubtree")]
public bool? CompartmentIdInSubtree { get; set; }
Property Value
Type Description
bool?

if set to true then it fetches resources for all compartments where user has access to else only on the compartment specified.

GroupBy

Declaration
[Required(ErrorMessage = "GroupBy is required.")]
[HttpConverter(TargetEnum.Query, "groupBy")]
public ManagementAgentPluginGroupBy? GroupBy { get; set; }
Property Value
Type Description
ManagementAgentPluginGroupBy?

The field by which to group Management Agent Plugins

Remarks

Required

OpcRequestId

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

The client request ID for tracing.

Page

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

The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call.

Implements

IOciRequest
In this article
Back to top