Skip to content

Commit

Permalink
feat: add ingestion_data_source_settings field to Topic
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 600786127

Source-Link: googleapis/googleapis@708f769

Source-Link: googleapis/googleapis-gen@3b85818
Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuUHViU3ViLlYxLy5Pd2xCb3QueWFtbCIsImgiOiIzYjg1ODE4Y2E4ZjEyYWNlNzUzOTBjZWEyNGU1ZjNkZjVhYzcwYmU3In0=
  • Loading branch information
gcf-owl-bot[bot] authored and amanda-tarafa committed Jan 23, 2024
1 parent e27f349 commit 06f6c30
Show file tree
Hide file tree
Showing 5 changed files with 1,165 additions and 366 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public async Task CreateTopicRequestObjectAsync()
SchemaSettings = new SchemaSettings(),
SatisfiesPzs = false,
MessageRetentionDuration = new Duration(),
State = Topic.Types.State.Unspecified,
IngestionDataSourceSettings = new IngestionDataSourceSettings(),
};
// Make the request
Topic response = await publisherServiceApiClient.CreateTopicAsync(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ public void CreateTopicRequestObject()
SchemaSettings = new SchemaSettings(),
SatisfiesPzs = false,
MessageRetentionDuration = new Duration(),
State = Topic.Types.State.Unspecified,
IngestionDataSourceSettings = new IngestionDataSourceSettings(),
};
// Make the request
Topic response = publisherServiceApiClient.CreateTopic(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@
"segments": [
{
"start": 20,
"end": 51,
"end": 53,
"type": "FULL"
},
{
"start": 35,
"end": 49,
"end": 51,
"type": "SHORT"
}
]
Expand Down Expand Up @@ -97,12 +97,12 @@
"segments": [
{
"start": 20,
"end": 52,
"end": 54,
"type": "FULL"
},
{
"start": 36,
"end": 50,
"end": 52,
"type": "SHORT"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ public void CreateTopicRequestObject()
SchemaSettings = new SchemaSettings(),
SatisfiesPzs = false,
MessageRetentionDuration = new Duration(),
State = Topic.Types.State.Unspecified,
IngestionDataSourceSettings = new IngestionDataSourceSettings(),
};
// Make the request
Topic response = publisherServiceApiClient.CreateTopic(request);
Expand All @@ -67,6 +69,8 @@ public async Task CreateTopicRequestObjectAsync()
SchemaSettings = new SchemaSettings(),
SatisfiesPzs = false,
MessageRetentionDuration = new Duration(),
State = Topic.Types.State.Unspecified,
IngestionDataSourceSettings = new IngestionDataSourceSettings(),
};
// Make the request
Topic response = await publisherServiceApiClient.CreateTopicAsync(request);
Expand Down

0 comments on commit 06f6c30

Please sign in to comment.