Class AccountsResource.AppsResource.ReportsResource.ListRequest
Lists reports for the specified app. By default, only the name and results_uri fields are returned.
You can include other fields by listing them in the fields
URL query parameter. For example,
?fields=reports(name,checks)
will return the name and checks fields.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.ChecksService.v1alpha
Assembly: Google.Apis.ChecksService.v1alpha.dll
Syntax
public class AccountsResource.AppsResource.ReportsResource.ListRequest : ChecksServiceBaseServiceRequest<GoogleChecksReportV1alphaListReportsResponse>, IClientServiceRequest<GoogleChecksReportV1alphaListReportsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | parent |
Properties
ChecksFilter
Optional. An AIP-160 filter string to filter checks within
reports. Only checks that match the filter string are included in the response. Example: state = FAILED
Declaration
[RequestParameter("checksFilter", RequestParameterType.Query)]
public virtual string ChecksFilter { get; set; }
Property Value
Type | Description |
---|---|
string |
Filter
Optional. An AIP-160 filter string to filter reports. Example:
appBundle.releaseType = PRE_RELEASE
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
PageSize
Optional. The maximum number of reports to return. If unspecified, at most 10 reports will be returned. The maximum value is 50; values above 50 will be coerced to 50.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
Optional. A page token received from a previous ListReports
call. Provide this to retrieve the
subsequent page. When paginating, all other parameters provided to ListReports
must match the
call that provided the page token.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. Resource name of the app. Example: accounts/123/apps/456
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()