Show / Hide Table of Contents

Class SummarizeManagementAgentCountsRequest

Inheritance
object
SummarizeManagementAgentCountsRequest
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 SummarizeManagementAgentCountsRequest : IOciRequest
Examples

Click here to see an example of how to use SummarizeManagementAgentCounts 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", CollectionFormatType.Multi)]
public List<ManagementAgentGroupBy> GroupBy { get; set; }
Property Value
Type Description
List<ManagementAgentGroupBy>

The field by which to group Management Agents. Currently, only one groupBy dimension is supported at a time.

Remarks

Required

HasPlugins

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

When set to true then agents that have at least one plugin deployed will be returned. When set to false only agents that have no plugins deployed will be returned.

InstallType

Declaration
[HttpConverter(TargetEnum.Query, "installType")]
public InstallTypes? InstallType { get; set; }
Property Value
Type Description
InstallTypes?

A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.

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