Skip to content

Commit 9a6bdbc

Browse files
fix: fix typings for IAM methods (#1785)
* fix: fix typings for IAM methods docs: fixed links in the generated Markdown documentation PiperOrigin-RevId: 551610576 Source-Link: googleapis/googleapis@73b1313 Source-Link: googleapis/googleapis-gen@8bec066 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOGJlYzA2NjQ5MmE2ZGEyODU1YjFiOGNlNTYyNjY0YzBhNmIzMGIwMSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot Co-authored-by: Megan Potter <[email protected]>
1 parent 0772e96 commit 9a6bdbc

12 files changed

+5744
-167
lines changed

protos/protos.d.ts

Lines changed: 1493 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/protos.js

Lines changed: 3853 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/protos.json

Lines changed: 292 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

samples/createSubscriptionWithDeadLetterPolicy.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ async function createSubscriptionWithDeadLetterPolicy(
6161
console.log(
6262
`Created subscription ${subscriptionNameOrId} with dead letter topic ${deadLetterTopicNameOrId}.`
6363
);
64-
6564
console.log(
6665
'To process dead letter messages, remember to add a subscription to your dead letter topic.'
6766
);

samples/createSubscriptionWithExactlyOnceDelivery.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ async function createSubscriptionWithExactlyOnceDelivery(
5555
console.log(
5656
`Created subscription ${subscriptionNameOrId} with exactly-once delivery.`
5757
);
58-
5958
console.log(
6059
'To process messages, remember to check the return value of ackWithResponse().'
6160
);

samples/createSubscriptionWithOrdering.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ async function createSubscriptionWithOrdering(
5555
console.log(
5656
`Created subscription ${subscriptionNameOrId} with ordering enabled.`
5757
);
58-
5958
console.log(
6059
'To process messages in order, remember to add an ordering key to your messages.'
6160
);

samples/publishAvroRecords.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ async function publishAvroRecords(topicNameOrId) {
8080
console.log(`Unknown schema encoding: ${schemaEncoding}`);
8181
break;
8282
}
83-
8483
if (!dataBuffer) {
8584
console.log(`Invalid encoding ${schemaEncoding} on the topic.`);
8685
return;

samples/publishProtobufMessages.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ async function publishProtobufMessages(topicNameOrId) {
8282
console.log(`Unknown schema encoding: ${schemaEncoding}`);
8383
break;
8484
}
85-
8685
if (!dataBuffer) {
8786
console.log(`Invalid encoding ${schemaEncoding} on the topic.`);
8887
return;

samples/publishWithRetrySettings.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ const {v1} = require('@google-cloud/pubsub');
4545
const publisherClient = new v1.PublisherClient({
4646
// optional auth parameters
4747
});
48-
4948
async function publishWithRetrySettings(projectId, topicNameOrId, data) {
5049
const formattedTopic = publisherClient.projectTopicPath(
5150
projectId,

0 commit comments

Comments
 (0)