Show / Hide Table of Contents

Class ProvidersResource.EntitlementsResource.ListRequest

Lists Entitlements for which the provider has read access.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<ListEntitlementsResponse>
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>
ProvidersResource.EntitlementsResource.ListRequest
Implements
IClientServiceRequest<ListEntitlementsResponse>
IClientServiceRequest
Inherited Members
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.Xgafv
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.AccessToken
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.Alt
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.Callback
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.Fields
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.Key
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.OauthToken
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.PrettyPrint
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.QuotaUser
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.UploadType
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.UploadProtocol
ClientServiceRequest<ListEntitlementsResponse>.Execute()
ClientServiceRequest<ListEntitlementsResponse>.ExecuteAsStream()
ClientServiceRequest<ListEntitlementsResponse>.ExecuteAsync()
ClientServiceRequest<ListEntitlementsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListEntitlementsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListEntitlementsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListEntitlementsResponse>.CreateRequest(bool?)
ClientServiceRequest<ListEntitlementsResponse>.GenerateRequestUri()
ClientServiceRequest<ListEntitlementsResponse>.GetBody()
ClientServiceRequest<ListEntitlementsResponse>.GetDefaultETagAction(string)
ClientServiceRequest<ListEntitlementsResponse>.ETagAction
ClientServiceRequest<ListEntitlementsResponse>.ModifyRequest
ClientServiceRequest<ListEntitlementsResponse>.ValidateParameters
ClientServiceRequest<ListEntitlementsResponse>.ApiVersion
ClientServiceRequest<ListEntitlementsResponse>.RequestParameters
ClientServiceRequest<ListEntitlementsResponse>.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.CloudCommercePartnerProcurementService.v1
Assembly: Google.Apis.CloudCommercePartnerProcurementService.v1.dll
Syntax
public class ProvidersResource.EntitlementsResource.ListRequest : CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>, IClientServiceRequest<ListEntitlementsResponse>, 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

The filter that can be used to limit the list request. The filter is a query string that can match a selected set of attributes with string values. For example account=E-1234-5678-ABCD-EFGH, state=pending_cancellation, and plan!=foo-plan. Supported query attributes are * account * customer_billing_account with value in the format of: billingAccounts/{id} * product_external_name * quote_external_name * offer * new_pending_offer * plan * newPendingPlan or new_pending_plan * state * consumers.project * change_history.new_offer Note that the consumers and change_history.new_offer match works on repeated structures, so equality (consumers.project=projects/123456789) is not supported. Set membership can be expressed with the : operator. For example, consumers.project:projects/123456789 finds entitlements with at least one consumer with project field equal to projects/123456789. change_history.new_offer retrieves all entitlements that were once associated or are currently active with the offer. Also note that the state name match is case-insensitive and query can omit the prefix "ENTITLEMENT_". For example, state=active is equivalent to state=ENTITLEMENT_ACTIVE. If the query contains some special characters other than letters, underscore, or digits, the phrase must be quoted with double quotes. For example, product="providerId:productId", where the product name needs to be quoted because it contains special character colon. Queries can be combined with AND, OR, and NOT to form more complex queries. They can also be grouped to force a desired evaluation order. For example, state=active AND (account=E-1234 OR account=5678) AND NOT (product=foo-product). Connective AND can be omitted between two predicates. For example account=E-1234 state=active is equivalent to account=E-1234 AND state=active.

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<ListEntitlementsResponse>.HttpMethod

MethodName

Gets the method name.

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

PageSize

The maximum number of entries that are requested. The default page size is 200.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
int?

PageToken

The token for fetching the next page.

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

Parent

Required. The parent resource name.

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<ListEntitlementsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
CloudCommercePartnerProcurementServiceBaseServiceRequest<ListEntitlementsResponse>.InitParameters()

Implements

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