Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
changes without context
Browse files Browse the repository at this point in the history
        autosynth cannot find the source of changes triggered by earlier changes in this
        repository, or by version upgrades to tools such as linters.
  • Loading branch information
yoshi-automation committed May 10, 2021
1 parent 75c446a commit d8d4522
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 17 deletions.
3 changes: 1 addition & 2 deletions samples/sendgrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ async function sendgridExample() {
to: 'to_email@example.com',
from: 'from_email@example.com',
subject: 'Sendgrid test email from Node.js on Google Cloud Platform',
text:
'Well hello! This is a Sendgrid test email from Node.js on Google Cloud Platform.',
text: 'Well hello! This is a Sendgrid test email from Node.js on Google Cloud Platform.',
});
}
sendgridExample();
Expand Down
3 changes: 1 addition & 2 deletions samples/test/sendgrid.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ describe('sendgrid', () => {
from: 'from_email@example.com',
subject:
'Sendgrid test email from Node.js on Google Cloud Platform',
text:
'Well hello! This is a Sendgrid test email from Node.js on Google Cloud Platform.',
text: 'Well hello! This is a Sendgrid test email from Node.js on Google Cloud Platform.',
});
},
},
Expand Down
15 changes: 6 additions & 9 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2404,9 +2404,8 @@ Compute.prototype.getDisksStream = paginator.streamify('getDisks');
* });
*/

Compute.prototype.getInstanceGroupsStream = paginator.streamify(
'getInstanceGroups'
);
Compute.prototype.getInstanceGroupsStream =
paginator.streamify('getInstanceGroups');

/**
* Get a list of {@link Firewall} objects as a readable object stream.
Expand Down Expand Up @@ -2465,9 +2464,8 @@ Compute.prototype.getFirewallsStream = paginator.streamify('getFirewalls');
* this.end();
* });
*/
Compute.prototype.getHealthChecksStream = paginator.streamify(
'getHealthChecks'
);
Compute.prototype.getHealthChecksStream =
paginator.streamify('getHealthChecks');

/**
* Get a list of {@link Image} objects as a readable object stream.
Expand Down Expand Up @@ -2526,9 +2524,8 @@ Compute.prototype.getImagesStream = paginator.streamify('getImages');
* this.end();
* });
*/
Compute.prototype.getMachineTypesStream = paginator.streamify(
'getMachineTypes'
);
Compute.prototype.getMachineTypesStream =
paginator.streamify('getMachineTypes');

/**
* Get a list of {@link Network} objects as a readable object stream.
Expand Down
5 changes: 2 additions & 3 deletions src/zone.js
Original file line number Diff line number Diff line change
Expand Up @@ -1540,9 +1540,8 @@ Zone.prototype.getDisksStream = paginator.streamify('getDisks');
* this.end();
* });
*/
Zone.prototype.getInstanceGroupsStream = paginator.streamify(
'getInstanceGroups'
);
Zone.prototype.getInstanceGroupsStream =
paginator.streamify('getInstanceGroups');

/**
* Get a list of {@link MachineType} objects for this zone as a
Expand Down
2 changes: 1 addition & 1 deletion synth.metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/nodejs-compute.git",
"sha": "bec9dac6a1ebe91921dc4ed5c7f124ae19bde504"
"sha": "75c446ab50b3de0e3d8eb1c0ef5a317e7dbf4fcb"
}
},
{
Expand Down

0 comments on commit d8d4522

Please sign in to comment.