// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/file.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const file = google.file('v1');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: ['https://www.googleapis.com/auth/cloud-platform'],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await file.projects.locations.operations.list({
// The standard list filter.
filter: 'placeholder-value',
// The name of the operation's parent resource.
name: 'projects/my-project/locations/my-location',
// The standard list page size.
pageSize: 'placeholder-value',
// The standard list page token.
pageToken: 'placeholder-value',
});
console.log(res.data);
// Example response
// {
// "nextPageToken": "my_nextPageToken",
// "operations": []
// }
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/file.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const file = google.file('v1beta1');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: ['https://www.googleapis.com/auth/cloud-platform'],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await file.projects.locations.operations.list({
// The standard list filter.
filter: 'placeholder-value',
// The name of the operation's parent resource.
name: 'projects/my-project/locations/my-location',
// The standard list page size.
pageSize: 'placeholder-value',
// The standard list page token.
pageToken: 'placeholder-value',
});
console.log(res.data);
// Example response
// {
// "nextPageToken": "my_nextPageToken",
// "operations": []
// }
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/file.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const file = google.file('v1');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: ['https://www.googleapis.com/auth/cloud-platform'],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await file.projects.locations.instances.delete({
// Required. The instance resource name, in the format `projects/{project_id\}/locations/{location\}/instances/{instance_id\}`
name: 'projects/my-project/locations/my-location/instances/my-instance',
});
console.log(res.data);
// Example response
// {
// "done": false,
// "error": {},
// "metadata": {},
// "name": "my_name",
// "response": {}
// }
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/file.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const file = google.file('v1');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: ['https://www.googleapis.com/auth/cloud-platform'],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await file.projects.locations.backups.delete({
// Required. The backup resource name, in the format `projects/{project_number\}/locations/{location\}/backups/{backup_id\}`
name: 'projects/my-project/locations/my-location/backups/my-backup',
});
console.log(res.data);
// Example response
// {
// "done": false,
// "error": {},
// "metadata": {},
// "name": "my_name",
// "response": {}
// }
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/file.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const file = google.file('v1');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: ['https://www.googleapis.com/auth/cloud-platform'],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await file.projects.locations.instances.list({
// List filter.
filter: 'placeholder-value',
// Sort results. Supported values are "name", "name desc" or "" (unsorted).
orderBy: 'placeholder-value',
// The maximum number of items to return.
pageSize: 'placeholder-value',
// The next_page_token value to use if there are additional results to retrieve for this list request.
pageToken: 'placeholder-value',
// Required. The project and location for which to retrieve instance information, in the format `projects/{project_id\}/locations/{location\}`. In Cloud Filestore, locations map to GCP zones, for example **us-west1-b**. To retrieve instance information for all locations, use "-" for the `{location\}` value.
parent: 'projects/my-project/locations/my-location',
});
console.log(res.data);
// Example response
// {
// "instances": [],
// "nextPageToken": "my_nextPageToken",
// "unreachable": []
// }
}
main().catch(e => {
console.error(e);
throw e;
});