Cloud Profiler v2 API - Class ListProfilesResponse (2.5.0)

public sealed class ListProfilesResponse : IPageResponse<Profile>, IEnumerable<Profile>, IEnumerable, IMessage<ListProfilesResponse>, IEquatable<ListProfilesResponse>, IDeepCloneable<ListProfilesResponse>, IBufferMessage, IMessage

Reference documentation and code samples for the Cloud Profiler v2 API class ListProfilesResponse.

ListProfileResponse contains the list of collected profiles for deployments in projects which the user has permissions to view.

Inheritance

object > ListProfilesResponse

Namespace

Google.Cloud.Profiler.V2

Assembly

Google.Cloud.Profiler.V2.dll

Constructors

ListProfilesResponse()

public ListProfilesResponse()

ListProfilesResponse(ListProfilesResponse)

public ListProfilesResponse(ListProfilesResponse other)
Parameter
NameDescription
otherListProfilesResponse

Properties

NextPageToken

public string NextPageToken { get; set; }

Token to receive the next page of results. This field maybe empty if there are no more profiles to fetch.

Property Value
TypeDescription
string

Profiles

public RepeatedField<Profile> Profiles { get; }

List of profiles fetched.

Property Value
TypeDescription
RepeatedFieldProfile

SkippedProfiles

public int SkippedProfiles { get; set; }

Number of profiles that were skipped in the current page since they were not able to be fetched successfully. This should typically be zero. A non-zero value may indicate a transient failure, in which case if the number is too high for your use case, the call may be retried.

Property Value
TypeDescription
int

Methods

GetEnumerator()

public IEnumerator<Profile> GetEnumerator()

Returns an enumerator that iterates through the resources in this response.

Returns
TypeDescription
IEnumeratorProfile