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
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ partial void ProcessBucketDeleteResponseContent(
PrepareBucketDeleteRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
bucketId: bucketId);
bucketId: bucketId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ partial void ProcessBucketGetResponseContent(
PrepareBucketGetRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
bucketId: bucketId);
bucketId: bucketId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ partial void ProcessBucketUpdateResponseContent(
PrepareBucketUpdateRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
bucketId: bucketId,
bucketId: bucketId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ partial void ProcessDocumentDelete1ResponseContent(
PrepareDocumentDelete1Request(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
documentId: documentId);
documentId: documentId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ partial void ProcessDocumentGetResponseContent(
PrepareDocumentGetRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
documentId: documentId);
documentId: documentId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ partial void ProcessDocumentGetProcessingStatusByIdResponseContent(
PrepareDocumentGetProcessingStatusByIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
processId: processId);
processId: processId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ partial void ProcessDocumentLookupResponseContent(
PrepareDocumentLookupRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
id: id,
id: id!,
n: n,
filter: filter,
sort: sort,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ partial void ProcessDocumentsDeleteResponseContent(
PrepareDocumentsDeleteRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
documentIds: documentIds);
documentIds: documentIds!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ partial void ProcessGroupAddBucketResponseContent(
PrepareGroupAddBucketRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
groupId: groupId,
bucketId: bucketId);
groupId: groupId!,
bucketId: bucketId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ partial void ProcessGroupDeleteResponseContent(
PrepareGroupDeleteRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
groupId: groupId);
groupId: groupId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ partial void ProcessGroupGetResponseContent(
PrepareGroupGetRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
groupId: groupId);
groupId: groupId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ partial void ProcessGroupRemoveBucketResponseContent(
PrepareGroupRemoveBucketRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
groupId: groupId,
bucketId: bucketId);
groupId: groupId!,
bucketId: bucketId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ partial void ProcessGroupUpdateResponseContent(
PrepareGroupUpdateRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
groupId: groupId,
groupId: groupId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ partial void ProcessHealthGetResponseContent(
PrepareHealthGetRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
service: service);
service: service!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ partial void ProcessSearchContentResponseContent(
PrepareSearchContentRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
id: id,
id: id!,
n: n,
nextToken: nextToken,
verbosity: verbosity,
Expand Down