Show / Hide Table of Contents

Class BillingAccountsResource.SkusResource.ListRequest

Lists SKUs visible to a billing account.

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

Options for how to filter the billing account SKUs. Currently, only filter on billing_account_service is supported. Only !=, = operators are supported. Examples: - billing_account_service = "billingAccounts/012345-567890-ABCDEF/services/DA34-426B-A397"

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

MethodName

Gets the method name.

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

PageSize

Maximum number of billing account SKUs to return. Results may return fewer than this value. Default value is 50 and maximum value is 5000.

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

PageToken

Page token received from a previous ListBillingAccountSkus call to retrieve the next page of results. If this field is empty, the first page is returned.

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

Parent

Required. The billing account to list billing account SKU from. Format: billingAccounts/{billing_account}

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

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
CloudbillingBaseServiceRequest<GoogleCloudBillingBillingaccountskusV1betaListBillingAccountSkusResponse>.InitParameters()

Implements

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