-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update libraries * improvements * Update claim-check/code-samples/sample-4/readme.md Co-authored-by: Chad Kittel <[email protected]> * Update claim-check/code-samples/sample-4/readme.md Co-authored-by: Chad Kittel <[email protected]> * Fix bicep --------- Co-authored-by: Federico Arambarri <v-fearam> Co-authored-by: Chad Kittel <[email protected]>
- Loading branch information
Showing
13 changed files
with
109 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
claim-check/code-samples/sample-4/ClientProducer4/ISampleBlobDataMover.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
| ||
namespace Pnp.Samples.ClaimCheckPattern | ||
{ | ||
public interface ISampleBlobDataMover | ||
{ | ||
Task<string> DownloadAsync(Uri blobUri, bool deleteAfter = true); | ||
Task<string> UploadAsync(string blobUri, string containerName, string content); | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
claim-check/code-samples/sample-4/ClientProducer4/ISampleKafkaProducer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
| ||
namespace Pnp.Samples.ClaimCheckPattern | ||
{ | ||
public interface ISampleKafkaProducer | ||
{ | ||
Task SendMessageAsync(string message); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 3 additions & 5 deletions
8
claim-check/code-samples/sample-4/ClientProducer4/SampleKafkaProducer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
claim-check/code-samples/sample-4/FunctionConsumer4/ISampleBlobDataMover.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
| ||
namespace Pnp.Samples.ClaimCheckPattern | ||
{ | ||
public interface ISampleBlobDataMover | ||
{ | ||
Task<string> DownloadAsync(Uri blobUri, bool deleteAfter = true); | ||
Task<string> UploadAsync(string blobUri, string containerName, string content); | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
claim-check/code-samples/sample-4/FunctionConsumer4/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters