Show / Hide Table of Contents

Class ProjectsResource.GroupsResource.MembersResource.ListRequest

Lists the monitored resources that are members of a group.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListGroupMembersResponse>
MonitoringBaseServiceRequest<ListGroupMembersResponse>
ProjectsResource.GroupsResource.MembersResource.ListRequest
Implements
IClientServiceRequest<ListGroupMembersResponse>
IClientServiceRequest
Inherited Members
MonitoringBaseServiceRequest<ListGroupMembersResponse>.Xgafv
MonitoringBaseServiceRequest<ListGroupMembersResponse>.AccessToken
MonitoringBaseServiceRequest<ListGroupMembersResponse>.Alt
MonitoringBaseServiceRequest<ListGroupMembersResponse>.Callback
MonitoringBaseServiceRequest<ListGroupMembersResponse>.Fields
MonitoringBaseServiceRequest<ListGroupMembersResponse>.Key
MonitoringBaseServiceRequest<ListGroupMembersResponse>.OauthToken
MonitoringBaseServiceRequest<ListGroupMembersResponse>.PrettyPrint
MonitoringBaseServiceRequest<ListGroupMembersResponse>.QuotaUser
MonitoringBaseServiceRequest<ListGroupMembersResponse>.UploadType
MonitoringBaseServiceRequest<ListGroupMembersResponse>.UploadProtocol
ClientServiceRequest<ListGroupMembersResponse>.Execute()
ClientServiceRequest<ListGroupMembersResponse>.ExecuteAsStream()
ClientServiceRequest<ListGroupMembersResponse>.ExecuteAsync()
ClientServiceRequest<ListGroupMembersResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListGroupMembersResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListGroupMembersResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListGroupMembersResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListGroupMembersResponse>.GenerateRequestUri()
ClientServiceRequest<ListGroupMembersResponse>.GetBody()
ClientServiceRequest<ListGroupMembersResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListGroupMembersResponse>.ETagAction
ClientServiceRequest<ListGroupMembersResponse>.ModifyRequest
ClientServiceRequest<ListGroupMembersResponse>.RequestParameters
ClientServiceRequest<ListGroupMembersResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Monitoring.v3
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class ListRequest : MonitoringBaseServiceRequest<ListGroupMembersResponse>, IClientServiceRequest<ListGroupMembersResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string name)
Parameters
Type Name Description
IClientService service
System.String name

Properties

Filter

An optional list filter (https://cloud.google.com/monitoring/api/learn_more#filtering) describing the members to be returned. The filter may reference the type, labels, and metadata of monitored resources that comprise the group. For example, to return only resources representing Compute Engine VM instances, use this filter: resource.type = &quot;gce_instance&quot;

Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type Description
System.String

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Monitoring.v3.Data.ListGroupMembersResponse>.HttpMethod

IntervalEndTime

Required. The end of the time interval.

Declaration
[RequestParameter("interval.endTime", RequestParameterType.Query)]
public virtual object IntervalEndTime { get; set; }
Property Value
Type Description
System.Object

IntervalStartTime

Optional. The beginning of the time interval. The default value for the start time is the end time. The start time must not be later than the end time.

Declaration
[RequestParameter("interval.startTime", RequestParameterType.Query)]
public virtual object IntervalStartTime { get; set; }
Property Value
Type Description
System.Object

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Monitoring.v3.Data.ListGroupMembersResponse>.MethodName

Name

Required. The group whose members are listed. The format is: projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID]

Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
Property Value
Type Description
System.String

PageSize

A positive number that is the maximum number of results to return.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

If this field is not empty then it must contain the next_page_token value returned by a previous call to this method. Using this field causes the method to return additional results from the previous method call.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Monitoring.v3.Data.ListGroupMembersResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Monitoring.v3.MonitoringBaseServiceRequest<Google.Apis.Monitoring.v3.Data.ListGroupMembersResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top