Class ListGroupMembersRequest (3.43.0)

public final class ListGroupMembersRequest extends GeneratedMessageV3 implements ListGroupMembersRequestOrBuilder

The ListGroupMembers request.

Protobuf type google.monitoring.v3.ListGroupMembersRequest

Static Fields

FILTER_FIELD_NUMBER

public static final int FILTER_FIELD_NUMBER
Field Value
Type Description
int

INTERVAL_FIELD_NUMBER

public static final int INTERVAL_FIELD_NUMBER
Field Value
Type Description
int

NAME_FIELD_NUMBER

public static final int NAME_FIELD_NUMBER
Field Value
Type Description
int

PAGE_SIZE_FIELD_NUMBER

public static final int PAGE_SIZE_FIELD_NUMBER
Field Value
Type Description
int

PAGE_TOKEN_FIELD_NUMBER

public static final int PAGE_TOKEN_FIELD_NUMBER
Field Value
Type Description
int

Static Methods

getDefaultInstance()

public static ListGroupMembersRequest getDefaultInstance()
Returns
Type Description
ListGroupMembersRequest

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

newBuilder()

public static ListGroupMembersRequest.Builder newBuilder()
Returns
Type Description
ListGroupMembersRequest.Builder

newBuilder(ListGroupMembersRequest prototype)

public static ListGroupMembersRequest.Builder newBuilder(ListGroupMembersRequest prototype)
Parameter
Name Description
prototype ListGroupMembersRequest
Returns
Type Description
ListGroupMembersRequest.Builder

parseDelimitedFrom(InputStream input)

public static ListGroupMembersRequest parseDelimitedFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static ListGroupMembersRequest parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
IOException

parseFrom(byte[] data)

public static ListGroupMembersRequest parseFrom(byte[] data)
Parameter
Name Description
data byte[]
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static ListGroupMembersRequest parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data byte[]
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data)

public static ListGroupMembersRequest parseFrom(ByteString data)
Parameter
Name Description
data ByteString
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static ListGroupMembersRequest parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteString
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static ListGroupMembersRequest parseFrom(CodedInputStream input)
Parameter
Name Description
input CodedInputStream
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static ListGroupMembersRequest parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
IOException

parseFrom(InputStream input)

public static ListGroupMembersRequest parseFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static ListGroupMembersRequest parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
IOException

parseFrom(ByteBuffer data)

public static ListGroupMembersRequest parseFrom(ByteBuffer data)
Parameter
Name Description
data ByteBuffer
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static ListGroupMembersRequest parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteBuffer
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ListGroupMembersRequest
Exceptions
Type Description
InvalidProtocolBufferException

parser()

public static Parser<ListGroupMembersRequest> parser()
Returns
Type Description
Parser<ListGroupMembersRequest>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
Name Description
obj Object
Returns
Type Description
boolean
Overrides

getDefaultInstanceForType()

public ListGroupMembersRequest getDefaultInstanceForType()
Returns
Type Description
ListGroupMembersRequest

getFilter()

public String getFilter()

An optional list filter 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:

 <code>resource.type = "gce_instance"</code>

string filter = 5;

Returns
Type Description
String

The filter.

getFilterBytes()

public ByteString getFilterBytes()

An optional list filter 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:

 <code>resource.type = "gce_instance"</code>

string filter = 5;

Returns
Type Description
ByteString

The bytes for filter.

getInterval()

public TimeInterval getInterval()

An optional time interval for which results should be returned. Only members that were part of the group during the specified interval are included in the response. If no interval is provided then the group membership over the last minute is returned.

.google.monitoring.v3.TimeInterval interval = 6;

Returns
Type Description
TimeInterval

The interval.

getIntervalOrBuilder()

public TimeIntervalOrBuilder getIntervalOrBuilder()

An optional time interval for which results should be returned. Only members that were part of the group during the specified interval are included in the response. If no interval is provided then the group membership over the last minute is returned.

.google.monitoring.v3.TimeInterval interval = 6;

Returns
Type Description
TimeIntervalOrBuilder

getName()

public String getName()

Required. The group whose members are listed. The format is:

 projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID]

string name = 7 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Returns
Type Description
String

The name.

getNameBytes()

public ByteString getNameBytes()

Required. The group whose members are listed. The format is:

 projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID]

string name = 7 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Returns
Type Description
ByteString

The bytes for name.

getPageSize()

public int getPageSize()

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

int32 page_size = 3;

Returns
Type Description
int

The pageSize.

getPageToken()

public String getPageToken()

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.

string page_token = 4;

Returns
Type Description
String

The pageToken.

getPageTokenBytes()

public ByteString getPageTokenBytes()

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.

string page_token = 4;

Returns
Type Description
ByteString

The bytes for pageToken.

getParserForType()

public Parser<ListGroupMembersRequest> getParserForType()
Returns
Type Description
Parser<ListGroupMembersRequest>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
Type Description
int
Overrides

hasInterval()

public boolean hasInterval()

An optional time interval for which results should be returned. Only members that were part of the group during the specified interval are included in the response. If no interval is provided then the group membership over the last minute is returned.

.google.monitoring.v3.TimeInterval interval = 6;

Returns
Type Description
boolean

Whether the interval field is set.

hashCode()

public int hashCode()
Returns
Type Description
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

newBuilderForType()

public ListGroupMembersRequest.Builder newBuilderForType()
Returns
Type Description
ListGroupMembersRequest.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected ListGroupMembersRequest.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Name Description
parent BuilderParent
Returns
Type Description
ListGroupMembersRequest.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Name Description
unused UnusedPrivateParameter
Returns
Type Description
Object
Overrides

toBuilder()

public ListGroupMembersRequest.Builder toBuilder()
Returns
Type Description
ListGroupMembersRequest.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
Name Description
output CodedOutputStream
Overrides
Exceptions
Type Description
IOException