Show / Hide Table of Contents

Class PlatformsResource.ChannelsResource.VersionsResource.ListRequest

Returns list of version for the given platform/channel.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<ListVersionsResponse>
VersionHistoryBaseServiceRequest<ListVersionsResponse>
PlatformsResource.ChannelsResource.VersionsResource.ListRequest
Implements
IClientServiceRequest<ListVersionsResponse>
IClientServiceRequest
Inherited Members
VersionHistoryBaseServiceRequest<ListVersionsResponse>.Xgafv
VersionHistoryBaseServiceRequest<ListVersionsResponse>.AccessToken
VersionHistoryBaseServiceRequest<ListVersionsResponse>.Alt
VersionHistoryBaseServiceRequest<ListVersionsResponse>.Callback
VersionHistoryBaseServiceRequest<ListVersionsResponse>.Fields
VersionHistoryBaseServiceRequest<ListVersionsResponse>.Key
VersionHistoryBaseServiceRequest<ListVersionsResponse>.OauthToken
VersionHistoryBaseServiceRequest<ListVersionsResponse>.PrettyPrint
VersionHistoryBaseServiceRequest<ListVersionsResponse>.QuotaUser
VersionHistoryBaseServiceRequest<ListVersionsResponse>.UploadType
VersionHistoryBaseServiceRequest<ListVersionsResponse>.UploadProtocol
ClientServiceRequest<ListVersionsResponse>.Execute()
ClientServiceRequest<ListVersionsResponse>.ExecuteAsStream()
ClientServiceRequest<ListVersionsResponse>.ExecuteAsync()
ClientServiceRequest<ListVersionsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListVersionsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListVersionsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListVersionsResponse>.CreateRequest(bool?)
ClientServiceRequest<ListVersionsResponse>.GenerateRequestUri()
ClientServiceRequest<ListVersionsResponse>.GetBody()
ClientServiceRequest<ListVersionsResponse>.GetDefaultETagAction(string)
ClientServiceRequest<ListVersionsResponse>.ETagAction
ClientServiceRequest<ListVersionsResponse>.ModifyRequest
ClientServiceRequest<ListVersionsResponse>.ValidateParameters
ClientServiceRequest<ListVersionsResponse>.ApiVersion
ClientServiceRequest<ListVersionsResponse>.RequestParameters
ClientServiceRequest<ListVersionsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.VersionHistory.v1
Assembly: Google.Apis.VersionHistory.v1.dll
Syntax
public class PlatformsResource.ChannelsResource.VersionsResource.ListRequest : VersionHistoryBaseServiceRequest<ListVersionsResponse>, IClientServiceRequest<ListVersionsResponse>, 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

Filter

Optional. Filter string. Format is a comma separated list of All comma separated filter clauses are conjoined with a logical "and". Valid field_names are "version", "name", "platform", and "channel". Valid operators are "&lt;", "&lt;=", "=", "&gt;=", and "&gt;". Channel comparison is done by distance from stable. Ex) stable &lt; beta, beta &lt; dev, canary &lt; canary_asan. Version comparison is done numerically. If version is not entirely written, the version will be appended with 0 in missing fields. Ex) version &gt; 80 becoms version &gt; 80.0.0.0 Name and platform are filtered by string comparison. Ex) "...?filter=channel&lt;=beta, version &gt;= 80 Ex) "...?filter=version &gt; 80, version &lt; 81

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
ClientServiceRequest<ListVersionsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<ListVersionsResponse>.MethodName

OrderBy

Optional. Ordering string. Valid order_by strings are "version", "name", "platform", and "channel". Optionally, you can append " desc" or " asc" to specify the sorting order. Multiple order_by strings can be used in a comma separated list. Ordering by channel will sort by distance from the stable channel (not alphabetically). A list of channels sorted in this order is: stable, beta, dev, canary, and canary_asan. Sorting by name may cause unexpected behaviour as it is a naive string sort. For example, 1.0.0.8 will be before 1.0.0.10 in descending order. If order_by is not specified the response will be sorted by version in descending order. Ex) "...?order_by=version asc" Ex) "...?order_by=platform desc, channel, version"

Declaration
[RequestParameter("orderBy", RequestParameterType.Query)]
public virtual string OrderBy { get; set; }
Property Value
Type Description
string

PageSize

Optional. Optional limit on the number of versions to include in the response. If unspecified, the server will pick an appropriate default.

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 ListVersions call. Provide this to retrieve the subsequent page.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
string

Parent

Required. The channel, which owns this collection of versions. Format: {product}/platforms/{platform}/channels/{channel}

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
ClientServiceRequest<ListVersionsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
VersionHistoryBaseServiceRequest<ListVersionsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In this article
Back to top Generated by DocFX