This repository has been archived by the owner on May 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from xpouyat/dev
Release of v1.2 of the SDK
- Loading branch information
Showing
73 changed files
with
1,368 additions
and
567 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Converters; | ||
using System.Runtime.Serialization; | ||
|
||
namespace MK.IO | ||
{ | ||
/// <summary> | ||
/// Deletion Policy type. | ||
/// </summary> | ||
/// <value>Deletion Policy type.</value> | ||
[JsonConverter(typeof(StringEnumConverter))] | ||
public enum AssetContainerDeletionPolicyType | ||
{ | ||
/// <summary> | ||
/// A deletion policy of 'Retain' will leave the content in-place in your storage account. | ||
/// </summary> | ||
[EnumMember(Value = "Retain")] | ||
Retain, | ||
|
||
/// <summary> | ||
/// A deletion policy of 'Delete' will result in the associated storage container and all its contents being removed from storage. | ||
/// </summary> | ||
[EnumMember(Value = "Delete")] | ||
Delete | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.