Skip to content

Commit

Permalink
fix: fix typings for IAM methods (#1785)
Browse files Browse the repository at this point in the history
* 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 <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Megan Potter <57276408+feywind@users.noreply.github.com>
  • Loading branch information
3 people committed Aug 3, 2023
1 parent 0772e96 commit 9a6bdbc
Show file tree
Hide file tree
Showing 12 changed files with 5,744 additions and 167 deletions.
1,493 changes: 1,493 additions & 0 deletions protos/protos.d.ts

Large diffs are not rendered by default.

3,853 changes: 3,853 additions & 0 deletions protos/protos.js

Large diffs are not rendered by default.

292 changes: 292 additions & 0 deletions protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion samples/createSubscriptionWithDeadLetterPolicy.js
Expand Up @@ -61,7 +61,6 @@ async function createSubscriptionWithDeadLetterPolicy(
console.log(
`Created subscription ${subscriptionNameOrId} with dead letter topic ${deadLetterTopicNameOrId}.`
);

console.log(
'To process dead letter messages, remember to add a subscription to your dead letter topic.'
);
Expand Down
1 change: 0 additions & 1 deletion samples/createSubscriptionWithExactlyOnceDelivery.js
Expand Up @@ -55,7 +55,6 @@ async function createSubscriptionWithExactlyOnceDelivery(
console.log(
`Created subscription ${subscriptionNameOrId} with exactly-once delivery.`
);

console.log(
'To process messages, remember to check the return value of ackWithResponse().'
);
Expand Down
1 change: 0 additions & 1 deletion samples/createSubscriptionWithOrdering.js
Expand Up @@ -55,7 +55,6 @@ async function createSubscriptionWithOrdering(
console.log(
`Created subscription ${subscriptionNameOrId} with ordering enabled.`
);

console.log(
'To process messages in order, remember to add an ordering key to your messages.'
);
Expand Down
1 change: 0 additions & 1 deletion samples/publishAvroRecords.js
Expand Up @@ -80,7 +80,6 @@ async function publishAvroRecords(topicNameOrId) {
console.log(`Unknown schema encoding: ${schemaEncoding}`);
break;
}

if (!dataBuffer) {
console.log(`Invalid encoding ${schemaEncoding} on the topic.`);
return;
Expand Down
1 change: 0 additions & 1 deletion samples/publishProtobufMessages.js
Expand Up @@ -82,7 +82,6 @@ async function publishProtobufMessages(topicNameOrId) {
console.log(`Unknown schema encoding: ${schemaEncoding}`);
break;
}

if (!dataBuffer) {
console.log(`Invalid encoding ${schemaEncoding} on the topic.`);
return;
Expand Down
1 change: 0 additions & 1 deletion samples/publishWithRetrySettings.js
Expand Up @@ -45,7 +45,6 @@ const {v1} = require('@google-cloud/pubsub');
const publisherClient = new v1.PublisherClient({
// optional auth parameters
});

async function publishWithRetrySettings(projectId, topicNameOrId, data) {
const formattedTopic = publisherClient.projectTopicPath(
projectId,
Expand Down

0 comments on commit 9a6bdbc

Please sign in to comment.