Class ListProfilesResponse
ListProfileResponse contains the list of collected profiles for deployments in projects which the user has permissions to view.
Implements
Inherited Members
Namespace: Google.Apis.CloudProfiler.v2.Data
Assembly: Google.Apis.CloudProfiler.v2.dll
Syntax
public class ListProfilesResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NextPageToken
Token to receive the next page of results. This field maybe empty if there are no more profiles to fetch.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Profiles
List of profiles fetched.
Declaration
[JsonProperty("profiles")]
public virtual IList<Profile> Profiles { get; set; }
Property Value
Type | Description |
---|---|
IList<Profile> |
SkippedProfiles
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.
Declaration
[JsonProperty("skippedProfiles")]
public virtual int? SkippedProfiles { get; set; }
Property Value
Type | Description |
---|---|
int? |