You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="indexName">Name of the index on which to perform the operation.</param>
1696
1696
/// <param name="pushTaskPayload"></param>
1697
1697
/// <param name="watch">When provided, the push operation will be synchronous and the API will wait for the ingestion to be finished before responding. (optional)</param>
1698
+
/// <param name="referenceIndexName">This is required when targeting an index that does not have a push connector setup (e.g. a tmp index), but you wish to attach another index's transformation to it (e.g. the source index name). (optional)</param>
1698
1699
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
1699
1700
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
1700
1701
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
/// <param name="indexName">Name of the index on which to perform the operation.</param>
1721
1723
/// <param name="pushTaskPayload"></param>
1722
1724
/// <param name="watch">When provided, the push operation will be synchronous and the API will wait for the ingestion to be finished before responding. (optional)</param>
1725
+
/// <param name="referenceIndexName">This is required when targeting an index that does not have a push connector setup (e.g. a tmp index), but you wish to attach another index's transformation to it (e.g. the source index name). (optional)</param>
1723
1726
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
1724
1727
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
1725
1728
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -1730,6 +1733,7 @@ WatchResponse Push(
1730
1733
stringindexName,
1731
1734
PushTaskPayloadpushTaskPayload,
1732
1735
bool?watch=default,
1736
+
stringreferenceIndexName=default,
1733
1737
RequestOptionsoptions=null,
1734
1738
CancellationTokencancellationToken=default
1735
1739
);
@@ -4161,6 +4165,7 @@ public async Task<WatchResponse> PushAsync(
4161
4165
stringindexName,
4162
4166
PushTaskPayloadpushTaskPayload,
4163
4167
bool?watch=default,
4168
+
stringreferenceIndexName=default,
4164
4169
RequestOptionsoptions=null,
4165
4170
CancellationTokencancellationToken=default
4166
4171
)
@@ -4176,6 +4181,7 @@ public async Task<WatchResponse> PushAsync(
0 commit comments