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.
Implements
IPageResponseProfile, IEnumerableProfile, IEnumerable, IMessageListProfilesResponse, IEquatableListProfilesResponse, IDeepCloneableListProfilesResponse, IBufferMessage, IMessageNamespace
Google.Cloud.Profiler.V2Assembly
Google.Cloud.Profiler.V2.dll
Constructors
ListProfilesResponse()
public ListProfilesResponse()
ListProfilesResponse(ListProfilesResponse)
public ListProfilesResponse(ListProfilesResponse other)
Parameter | |
---|---|
Name | Description |
other | ListProfilesResponse |
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 | |
---|---|
Type | Description |
string |
Profiles
public RepeatedField<Profile> Profiles { get; }
List of profiles fetched.
Property Value | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
int |
Methods
GetEnumerator()
public IEnumerator<Profile> GetEnumerator()
Returns an enumerator that iterates through the resources in this response.
Returns | |
---|---|
Type | Description |
IEnumeratorProfile |