TypeScript typings for Cloud Profiler API v2
Manages continuous profiling information.
For detailed description please check documentation.
Installing
Install typings for Cloud Profiler API:
npm install @types/gapi.client.cloudprofiler-v2 --save-dev
Usage
You need to initialize Google API client in your code:
gapi.load('client', () => {
});
Then load api client wrapper:
gapi.client.load(
'https://cloudprofiler.googleapis.com/$discovery/rest?version=v2',
() => {
}
);
gapi.client.load('cloudprofiler', 'v2', () => {
});
Don't forget to authenticate your client before sending any request to resources:
var client_id = '',
scope = [
'https://www.googleapis.com/auth/cloud-platform',
'https://www.googleapis.com/auth/monitoring',
'https://www.googleapis.com/auth/monitoring.write',
],
immediate = true;
gapi.auth.authorize(
{client_id: client_id, scope: scope, immediate: immediate},
authResult => {
if (authResult && !authResult.error) {
} else {
}
}
);
After that you can use Cloud Profiler API resources: