Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions protos/google/pubsub/v1/pubsub.proto
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ message SchemaSettings {
message IngestionDataSourceSettings {
// Ingestion settings for Amazon Kinesis Data Streams.
message AwsKinesis {
// Possible states for managed ingestion from Amazon Kinesis Data Streams.
// Possible states for ingestion from Amazon Kinesis Data Streams.
enum State {
// Default value. This value is unused.
STATE_UNSPECIFIED = 0;
Expand Down Expand Up @@ -312,8 +312,7 @@ message Topic {
// Output only. An output-only field indicating the state of the topic.
State state = 9 [(google.api.field_behavior) = OUTPUT_ONLY];

// Optional. Settings for managed ingestion from a data source into this
// topic.
// Optional. Settings for ingestion from a data source into this topic.
IngestionDataSourceSettings ingestion_data_source_settings = 10
[(google.api.field_behavior) = OPTIONAL];
}
Expand Down
3 changes: 1 addition & 2 deletions src/v1/publisher_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -473,8 +473,7 @@ export class PublisherClient {
* @param {google.pubsub.v1.Topic.State} request.state
* Output only. An output-only field indicating the state of the topic.
* @param {google.pubsub.v1.IngestionDataSourceSettings} [request.ingestionDataSourceSettings]
* Optional. Settings for managed ingestion from a data source into this
* topic.
* Optional. Settings for ingestion from a data source into this topic.
* @param {object} [options]
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
* @returns {Promise} - The promise which resolves to an array.
Expand Down