Service for managing CSS/MC account information. v1
Package
@google-shopping/cssConstructors
(constructor)(opts, gaxInstance)
constructor
(
opts
?:
ClientOptions
,
gaxInstance
?:
typeof
gax
|
typeof
gax
.
fallback
);
Construct an instance of AccountsServiceClient.
opts
ClientOptions
gaxInstance
typeof gax
| typeof fallback
: loaded instance of google-gax
. Useful if you need to avoid loading the default gRPC version and want to use the fallback HTTP implementation. Load only fallback version and pass it to the constructor: ``` const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC const client = new AccountsServiceClient({fallback: true}, gax); ```
Properties
accountsServiceStub
accountsServiceStub
?:
Promise
< {
[
name
:
string
]
:
Function
;
}>;
apiEndpoint
get
apiEndpoint
()
:
string
;
The DNS address for this API service.
apiEndpoint
static
get
apiEndpoint
()
:
string
;
The DNS address for this API service - same as servicePath.
auth
auth
:
gax
.
GoogleAuth
;
descriptors
descriptors
:
Descriptors
;
innerApiCalls
innerApiCalls
:
{
[
name
:
string
]
:
Function
;
};
pathTemplates
pathTemplates
:
{
[
name
:
string
]
:
gax
.
PathTemplate
;
};
port
static
get
port
()
:
number
;
The port for this API service.
scopes
static
get
scopes
()
:
string
[];
The scopes needed to make gRPC calls for every method defined in this service.
servicePath
static
get
servicePath
()
:
string
;
The DNS address for this API service.
universeDomain
get
universeDomain
()
:
string
;
warn
warn
:
(
code
:
string
,
message
:
string
,
warnType
?:
string
)
=
>
void
;
Methods
accountLabelPath(account, label)
accountLabelPath
(
account
:
string
,
label
:
string
)
:
string
;
Return a fully-qualified accountLabel resource name string.
account
string
label
string
string
{string} Resource name string.
accountPath(account)
accountPath
(
account
:
string
)
:
string
;
Return a fully-qualified account resource name string.
account
string
string
{string} Resource name string.
close()
close
()
:
Promise<void>
;
Terminate the gRPC channel and close the client.
The client will no longer be usable and all future behavior is undefined.
Promise
<void>
{Promise} A promise that resolves when the client is closed.
cssProductInputPath(account, cssProductInput)
cssProductInputPath
(
account
:
string
,
cssProductInput
:
string
)
:
string
;
Return a fully-qualified cssProductInput resource name string.
account
string
cssProductInput
string
string
{string} Resource name string.
cssProductPath(account, cssProduct)
cssProductPath
(
account
:
string
,
cssProduct
:
string
)
:
string
;
Return a fully-qualified cssProduct resource name string.
account
string
cssProduct
string
string
{string} Resource name string.
getAccount(request, options)
getAccount
(
request
?:
protos
.
google
.
shopping
.
css
.
v1
.
IGetAccountRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
shopping
.
css
.
v1
.
IAccount
,
protos
.
google
.
shopping
.
css
.
v1
.
IGetAccountRequest
|
undefined
,
{}
|
undefined
]>;
Retrieves a single CSS/MC account by ID.
request
options
Promise
<[ protos.google.shopping.css.v1.IAccount
, protos.google.shopping.css.v1.IGetAccountRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* 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 name of the managed CSS/MC account.
* Format: accounts/{account}
*/
// const name = 'abc123'
/**
* Optional. Only required when retrieving MC account information.
* The CSS domain that is the parent resource of the MC account.
* Format: accounts/{account}
*/
// const parent = 'abc123'
// Imports the Css library
const
{
AccountsServiceClient
}
=
require
(
' @google-shopping/css
'
).
v1
;
// Instantiates a client
const
cssClient
=
new
AccountsServiceClient
();
async
function
callGetAccount
()
{
// Construct request
const
request
=
{
name
,
};
// Run request
const
response
=
await
cssClient
.
getAccount
(
request
);
console
.
log
(
response
);
}
callGetAccount
();
getAccount(request, options, callback)
getAccount
(
request
:
protos
.
google
.
shopping
.
css
.
v1
.
IGetAccountRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
shopping
.
css
.
v1
.
IAccount
,
protos
.
google
.
shopping
.
css
.
v1
.
IGetAccountRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.shopping.css.v1.IAccount
, protos.google.shopping.css.v1.IGetAccountRequest
| null | undefined, {} | null | undefined>
void
getAccount(request, callback)
getAccount
(
request
:
protos
.
google
.
shopping
.
css
.
v1
.
IGetAccountRequest
,
callback
:
Callback<protos
.
google
.
shopping
.
css
.
v1
.
IAccount
,
protos
.
google
.
shopping
.
css
.
v1
.
IGetAccountRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.shopping.css.v1.IAccount
, protos.google.shopping.css.v1.IGetAccountRequest
| null | undefined, {} | null | undefined>
void
getProjectId()
getProjectId
()
:
Promise<string>
;
Promise
<string>
getProjectId(callback)
getProjectId
(
callback
:
Callback<string
,
undefined
,
undefined
> )
:
void
;
callback
Callback
<string, undefined, undefined>
void
initialize()
initialize
()
:
Promise
< {
[
name
:
string
]
:
Function
;
}>;
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.
Promise
<{
[name: string]: Function
;
}>
{Promise} A promise that resolves to an authenticated service stub.
listChildAccounts(request, options)
listChildAccounts
(
request
?:
protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
shopping
.
css
.
v1
.
IAccount
[],
protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsRequest
|
null
,
protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsResponse
]>;
Lists all the accounts under the specified CSS account ID, and optionally filters by label ID and account name.
request
options
Promise
<[ protos.google.shopping.css.v1.IAccount
[], protos.google.shopping.css.v1.IListChildAccountsRequest
| null, protos.google.shopping.css.v1.IListChildAccountsResponse
]>
{Promise} - The promise which resolves to an array. The first element of the array is Array of . The client library will perform auto-pagination by default: it will call the API as many times as needed and will merge results from all the pages into this array. Note that it can affect your quota. We recommend using listChildAccountsAsync()
method described below for async iteration which you can stop as needed. Please see the documentation
for more details and examples.
listChildAccounts(request, options, callback)
listChildAccounts
(
request
:
protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsRequest
,
options
:
CallOptions
,
callback
:
PaginationCallback<protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsRequest
,
protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsResponse
|
null
|
undefined
,
protos
.
google
.
shopping
.
css
.
v1
.
IAccount
> )
:
void
;
request
options
CallOptions
callback
PaginationCallback
< protos.google.shopping.css.v1.IListChildAccountsRequest
, protos.google.shopping.css.v1.IListChildAccountsResponse
| null | undefined, protos.google.shopping.css.v1.IAccount
>
void
listChildAccounts(request, callback)
listChildAccounts
(
request
:
protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsRequest
,
callback
:
PaginationCallback<protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsRequest
,
protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsResponse
|
null
|
undefined
,
protos
.
google
.
shopping
.
css
.
v1
.
IAccount
> )
:
void
;
request
callback
PaginationCallback
< protos.google.shopping.css.v1.IListChildAccountsRequest
, protos.google.shopping.css.v1.IListChildAccountsResponse
| null | undefined, protos.google.shopping.css.v1.IAccount
>
void
listChildAccountsAsync(request, options)
listChildAccountsAsync
(
request
?:
protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsRequest
,
options
?:
CallOptions
)
:
AsyncIterable<protos
.
google
.
shopping
.
css
.
v1
.
IAccount
> ;
Equivalent to listChildAccounts
, but returns an iterable object.
for
- await
- of
syntax is used with the iterable to get response elements on-demand.
request
options
AsyncIterable
< protos.google.shopping.css.v1.IAccount
>
{Object} An iterable Object that allows async iteration . When you iterate the returned iterable, each element will be an object representing . 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.
/**
* 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 parent account. Must be a CSS group or domain.
* Format: accounts/{account}
*/
// const parent = 'abc123'
/**
* If set, only the MC accounts with the given label ID will be returned.
*/
// const labelId = 1234
/**
* If set, only the MC accounts with the given name (case sensitive) will be
* returned.
*/
// const fullName = 'abc123'
/**
* Optional. The maximum number of accounts to return. The service may return
* fewer than this value. If unspecified, at most 50 accounts will be
* returned. The maximum value is 100; values above 100 will be coerced to
* 100.
*/
// const pageSize = 1234
/**
* Optional. A page token, received from a previous `ListChildAccounts` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListChildAccounts` must
* match the call that provided the page token.
*/
// const pageToken = 'abc123'
// Imports the Css library
const
{
AccountsServiceClient
}
=
require
(
' @google-shopping/css
'
).
v1
;
// Instantiates a client
const
cssClient
=
new
AccountsServiceClient
();
async
function
callListChildAccounts
()
{
// Construct request
const
request
=
{
parent
,
};
// Run request
const
iterable
=
cssClient
.
listChildAccountsAsync
(
request
);
for
await
(
const
response
of
iterable
)
{
console
.
log
(
response
);
}
}
callListChildAccounts
();
listChildAccountsStream(request, options)
listChildAccountsStream
(
request
?:
protos
.
google
.
shopping
.
css
.
v1
.
IListChildAccountsRequest
,
options
?:
CallOptions
)
:
Transform
;
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
request
options
Transform
{Stream} An object stream which emits an object representing 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 listChildAccountsAsync()
method described below for async iteration which you can stop as needed. Please see the documentation
for more details and examples.
matchAccountFromAccountLabelName(accountLabelName)
matchAccountFromAccountLabelName
(
accountLabelName
:
string
)
:
string
|
number
;
Parse the account from AccountLabel resource.
accountLabelName
string
A fully-qualified path representing AccountLabel resource.
string | number
{string} A string representing the account.
matchAccountFromAccountName(accountName)
matchAccountFromAccountName
(
accountName
:
string
)
:
string
|
number
;
Parse the account from Account resource.
accountName
string
A fully-qualified path representing Account resource.
string | number
{string} A string representing the account.
matchAccountFromCssProductInputName(cssProductInputName)
matchAccountFromCssProductInputName
(
cssProductInputName
:
string
)
:
string
|
number
;
Parse the account from CssProductInput resource.
cssProductInputName
string
A fully-qualified path representing CssProductInput resource.
string | number
{string} A string representing the account.
matchAccountFromCssProductName(cssProductName)
matchAccountFromCssProductName
(
cssProductName
:
string
)
:
string
|
number
;
Parse the account from CssProduct resource.
cssProductName
string
A fully-qualified path representing CssProduct resource.
string | number
{string} A string representing the account.
matchCssProductFromCssProductName(cssProductName)
matchCssProductFromCssProductName
(
cssProductName
:
string
)
:
string
|
number
;
Parse the css_product from CssProduct resource.
cssProductName
string
A fully-qualified path representing CssProduct resource.
string | number
{string} A string representing the css_product.
matchCssProductInputFromCssProductInputName(cssProductInputName)
matchCssProductInputFromCssProductInputName
(
cssProductInputName
:
string
)
:
string
|
number
;
Parse the css_product_input from CssProductInput resource.
cssProductInputName
string
A fully-qualified path representing CssProductInput resource.
string | number
{string} A string representing the css_product_input.
matchLabelFromAccountLabelName(accountLabelName)
matchLabelFromAccountLabelName
(
accountLabelName
:
string
)
:
string
|
number
;
Parse the label from AccountLabel resource.
accountLabelName
string
A fully-qualified path representing AccountLabel resource.
string | number
{string} A string representing the label.
updateLabels(request, options)
updateLabels
(
request
?:
protos
.
google
.
shopping
.
css
.
v1
.
IUpdateAccountLabelsRequest
,
options
?:
CallOptions
)
:
Promise
< [
protos
.
google
.
shopping
.
css
.
v1
.
IAccount
,
protos
.
google
.
shopping
.
css
.
v1
.
IUpdateAccountLabelsRequest
|
undefined
,
{}
|
undefined
]>;
Updates labels assigned to CSS/MC accounts by a CSS domain.
request
options
Promise
<[ protos.google.shopping.css.v1.IAccount
, protos.google.shopping.css.v1.IUpdateAccountLabelsRequest
| undefined,
{} | undefined
]>
{Promise} - The promise which resolves to an array. The first element of the array is an object representing . Please see the documentation for more details and examples.
/**
* 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 label resource name.
* Format: accounts/{account}
*/
// const name = 'abc123'
/**
* The list of label IDs to overwrite the existing account label IDs.
* If the list is empty, all currently assigned label IDs will be deleted.
*/
// const labelIds = [1,2,3,4]
/**
* Optional. Only required when updating MC account labels.
* The CSS domain that is the parent resource of the MC account.
* Format: accounts/{account}
*/
// const parent = 'abc123'
// Imports the Css library
const
{
AccountsServiceClient
}
=
require
(
' @google-shopping/css
'
).
v1
;
// Instantiates a client
const
cssClient
=
new
AccountsServiceClient
();
async
function
callUpdateLabels
()
{
// Construct request
const
request
=
{
name
,
};
// Run request
const
response
=
await
cssClient
.
updateLabels
(
request
);
console
.
log
(
response
);
}
callUpdateLabels
();
updateLabels(request, options, callback)
updateLabels
(
request
:
protos
.
google
.
shopping
.
css
.
v1
.
IUpdateAccountLabelsRequest
,
options
:
CallOptions
,
callback
:
Callback<protos
.
google
.
shopping
.
css
.
v1
.
IAccount
,
protos
.
google
.
shopping
.
css
.
v1
.
IUpdateAccountLabelsRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
options
CallOptions
callback
Callback
< protos.google.shopping.css.v1.IAccount
, protos.google.shopping.css.v1.IUpdateAccountLabelsRequest
| null | undefined, {} | null | undefined>
void
updateLabels(request, callback)
updateLabels
(
request
:
protos
.
google
.
shopping
.
css
.
v1
.
IUpdateAccountLabelsRequest
,
callback
:
Callback<protos
.
google
.
shopping
.
css
.
v1
.
IAccount
,
protos
.
google
.
shopping
.
css
.
v1
.
IUpdateAccountLabelsRequest
|
null
|
undefined
,
{}
|
null
|
undefined
> )
:
void
;
request
callback
Callback
< protos.google.shopping.css.v1.IAccount
, protos.google.shopping.css.v1.IUpdateAccountLabelsRequest
| null | undefined, {} | null | undefined>
void