Skip to content

Commit

Permalink
fix(pubsub): update the API
Browse files Browse the repository at this point in the history
#### pubsub:v1
The following keys were changed:
- resources.projects.resources.subscriptions.methods.seek.description
- resources.projects.resources.topics.methods.create.description
  • Loading branch information
yoshi-automation authored and bcoe committed Oct 28, 2020
1 parent 7d2eb7a commit 61b30e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/pubsub-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@
]
},
"seek": {
"description": "Seeks an existing subscription to a point in time or to a given snapshot, whichever is provided in the request. Snapshots are used in [Seek]( https://cloud.google.com/pubsub/docs/replay-overview) operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot. Note that both the subscription and the snapshot must be on the same topic.",
"description": "Seeks an existing subscription to a point in time or to a given snapshot, whichever is provided in the request. Snapshots are used in [Seek] (https://cloud.google.com/pubsub/docs/replay-overview) operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot. Note that both the subscription and the snapshot must be on the same topic.",
"flatPath": "v1/projects/{projectsId}/subscriptions/{subscriptionsId}:seek",
"httpMethod": "POST",
"id": "pubsub.projects.subscriptions.seek",
Expand Down Expand Up @@ -765,7 +765,7 @@
"topics": {
"methods": {
"create": {
"description": "Creates the given topic with the given name. See the [resource name rules]( https://cloud.google.com/pubsub/docs/admin#resource_names).",
"description": "Creates the given topic with the given name. See the [resource name rules] (https://cloud.google.com/pubsub/docs/admin#resource_names).",
"flatPath": "v1/projects/{projectsId}/topics/{topicsId}",
"httpMethod": "PUT",
"id": "pubsub.projects.topics.create",
Expand Down Expand Up @@ -1119,7 +1119,7 @@
}
}
},
"revision": "20200921",
"revision": "20201012",
"rootUrl": "https://pubsub.googleapis.com/",
"schemas": {
"AcknowledgeRequest": {
Expand Down
4 changes: 2 additions & 2 deletions src/apis/pubsub/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3479,7 +3479,7 @@ export namespace pubsub_v1 {

/**
* pubsub.projects.subscriptions.seek
* @desc Seeks an existing subscription to a point in time or to a given snapshot, whichever is provided in the request. Snapshots are used in [Seek]( https://cloud.google.com/pubsub/docs/replay-overview) operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot. Note that both the subscription and the snapshot must be on the same topic.
* @desc Seeks an existing subscription to a point in time or to a given snapshot, whichever is provided in the request. Snapshots are used in [Seek] (https://cloud.google.com/pubsub/docs/replay-overview) operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot. Note that both the subscription and the snapshot must be on the same topic.
* @example
* // Before running the sample:
* // - Enable the API at:
Expand Down Expand Up @@ -4085,7 +4085,7 @@ export namespace pubsub_v1 {

/**
* pubsub.projects.topics.create
* @desc Creates the given topic with the given name. See the [resource name rules]( https://cloud.google.com/pubsub/docs/admin#resource_names).
* @desc Creates the given topic with the given name. See the [resource name rules] (https://cloud.google.com/pubsub/docs/admin#resource_names).
* @example
* // Before running the sample:
* // - Enable the API at:
Expand Down

0 comments on commit 61b30e0

Please sign in to comment.