Constructor
new CloudBillingClient(optionsopt, gaxInstanceopt)
Construct an instance of CloudBillingClient.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
object |
<optional> |
The configuration object. The options accepted by the constructor are described in detail in this document. The common options are: Properties
|
||||||||||||||||||||||||||||||||||||||||||||||||
gaxInstance |
gax |
<optional> |
loaded instance of |
Members
apiEndpoint
The DNS address for this API service - same as servicePath(), exists for compatibility reasons.
port
The port for this API service.
scopes
The scopes needed to make gRPC calls for every method defined in this service.
servicePath
The DNS address for this API service.
Methods
billingAccountPath(billing_account) → {string}
Return a fully-qualified billingAccount resource name string.
Parameters:
Name | Type | Description |
---|---|---|
billing_account |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
close() → {Promise}
Terminate the gRPC channel and close the client.
The client will no longer be usable and all future behavior is undefined.
Returns:
Type | Description |
---|---|
Promise |
A promise that resolves when the client is closed. |
getProjectId() → {Promise}
Return the project ID used by this class.
Returns:
Type | Description |
---|---|
Promise |
A promise that resolves to string containing the project ID. |
initialize() → {Promise}
Initialize the client. Performs asynchronous operations (such as authentication) and prepares the client. This function will be called automatically when any class method is called for the first time, but if you need to initialize it before calling an actual method, feel free to call initialize() directly.
You can await on this method if you want to make sure the client is initialized.
Returns:
Type | Description |
---|---|
Promise |
A promise that resolves to an authenticated service stub. |
listBillingAccountsAsync(request, optionsopt) → {Object}
Equivalent to listBillingAccounts
, but returns an iterable object.
for
-await
-of
syntax is used with the iterable to get response elements on-demand.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Object |
An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing BillingAccount. The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples. |
Example
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Requested page size. The maximum page size is 100; this is also the
* default.
*/
// const pageSize = 1234
/**
* A token identifying a page of results to return. This should be a
* `next_page_token` value returned from a previous `ListBillingAccounts`
* call. If unspecified, the first page of results is returned.
*/
// const pageToken = 'abc123'
/**
* Options for how to filter the returned billing accounts.
* This only supports filtering for
* subaccounts (https://cloud.google.com/billing/docs/concepts) under a
* single provided parent billing account.
* (for example,
* `master_billing_account=billingAccounts/012345-678901-ABCDEF`).
* Boolean algebra and other fields are not currently supported.
*/
// const filter = 'abc123'
/**
* Optional. The parent resource to list billing accounts from.
* Format:
* - `organizations/{organization_id}`, for example,
* `organizations/12345678`
* - `billingAccounts/{billing_account_id}`, for example,
* `billingAccounts/012345-567890-ABCDEF`
*/
// const parent = 'abc123'
// Imports the Billing library
const {CloudBillingClient} = require('@google-cloud/billing').v1;
// Instantiates a client
const billingClient = new CloudBillingClient();
async function callListBillingAccounts() {
// Construct request
const request = {
};
// Run request
const iterable = await billingClient.listBillingAccountsAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListBillingAccounts();
listBillingAccountsStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Stream |
An object stream which emits an object representing BillingAccount on 'data' event.
The client library will perform auto-pagination by default: it will call the API as many
times as needed. Note that it can affect your quota.
We recommend using |
listProjectBillingInfoAsync(request, optionsopt) → {Object}
Equivalent to listProjectBillingInfo
, but returns an iterable object.
for
-await
-of
syntax is used with the iterable to get response elements on-demand.
Parameters:
Name | Type | Attributes | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Object |
An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing ProjectBillingInfo. The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples. |
Example
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The resource name of the billing account associated with the
* projects that you want to list. For example,
* `billingAccounts/012345-567890-ABCDEF`.
*/
// const name = 'abc123'
/**
* Requested page size. The maximum page size is 100; this is also the
* default.
*/
// const pageSize = 1234
/**
* A token identifying a page of results to be returned. This should be a
* `next_page_token` value returned from a previous `ListProjectBillingInfo`
* call. If unspecified, the first page of results is returned.
*/
// const pageToken = 'abc123'
// Imports the Billing library
const {CloudBillingClient} = require('@google-cloud/billing').v1;
// Instantiates a client
const billingClient = new CloudBillingClient();
async function callListProjectBillingInfo() {
// Construct request
const request = {
name,
};
// Run request
const iterable = await billingClient.listProjectBillingInfoAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListProjectBillingInfo();
listProjectBillingInfoStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
Parameters:
Name | Type | Attributes | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Stream |
An object stream which emits an object representing ProjectBillingInfo on 'data' event.
The client library will perform auto-pagination by default: it will call the API as many
times as needed. Note that it can affect your quota.
We recommend using |
matchBillingAccountFromBillingAccountName(billingAccountName) → {string}
Parse the billing_account from BillingAccount resource.
Parameters:
Name | Type | Description |
---|---|---|
billingAccountName |
string |
A fully-qualified path representing billing_account resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the billing_account. |
matchBillingAccountFromOrganizationBillingAccountName(organizationBillingAccountName) → {string}
Parse the billing_account from OrganizationBillingAccount resource.
Parameters:
Name | Type | Description |
---|---|---|
organizationBillingAccountName |
string |
A fully-qualified path representing organization_billing_account resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the billing_account. |
matchOrganizationFromOrganizationBillingAccountName(organizationBillingAccountName) → {string}
Parse the organization from OrganizationBillingAccount resource.
Parameters:
Name | Type | Description |
---|---|---|
organizationBillingAccountName |
string |
A fully-qualified path representing organization_billing_account resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the organization. |
matchOrganizationFromOrganizationName(organizationName) → {string}
Parse the organization from Organization resource.
Parameters:
Name | Type | Description |
---|---|---|
organizationName |
string |
A fully-qualified path representing Organization resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the organization. |
matchProjectFromProjectBillingInfoName(projectBillingInfoName) → {string}
Parse the project from ProjectBillingInfo resource.
Parameters:
Name | Type | Description |
---|---|---|
projectBillingInfoName |
string |
A fully-qualified path representing ProjectBillingInfo resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromProjectName(projectName) → {string}
Parse the project from Project resource.
Parameters:
Name | Type | Description |
---|---|---|
projectName |
string |
A fully-qualified path representing Project resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchServiceFromServiceName(serviceName) → {string}
Parse the service from Service resource.
Parameters:
Name | Type | Description |
---|---|---|
serviceName |
string |
A fully-qualified path representing Service resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the service. |
matchServiceFromSkuName(skuName) → {string}
Parse the service from Sku resource.
Parameters:
Name | Type | Description |
---|---|---|
skuName |
string |
A fully-qualified path representing Sku resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the service. |
matchSkuFromSkuName(skuName) → {string}
Parse the sku from Sku resource.
Parameters:
Name | Type | Description |
---|---|---|
skuName |
string |
A fully-qualified path representing Sku resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the sku. |
organizationBillingAccountPath(organization, billing_account) → {string}
Return a fully-qualified organizationBillingAccount resource name string.
Parameters:
Name | Type | Description |
---|---|---|
organization |
string | |
billing_account |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
organizationPath(organization) → {string}
Return a fully-qualified organization resource name string.
Parameters:
Name | Type | Description |
---|---|---|
organization |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
projectBillingInfoPath(project) → {string}
Return a fully-qualified projectBillingInfo resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
projectPath(project) → {string}
Return a fully-qualified project resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
servicePath(service) → {string}
Return a fully-qualified service resource name string.
Parameters:
Name | Type | Description |
---|---|---|
service |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
skuPath(service, sku) → {string}
Return a fully-qualified sku resource name string.
Parameters:
Name | Type | Description |
---|---|---|
service |
string | |
sku |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |