| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | namespace Azure.ResourceManager.Storage.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> Lease Container response schema. </summary> |
| | | 11 | | public partial class LeaseContainerResponse |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of LeaseContainerResponse. </summary> |
| | 0 | 14 | | internal LeaseContainerResponse() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of LeaseContainerResponse. </summary> |
| | | 19 | | /// <param name="leaseId"> Returned unique lease ID that must be included with any request to delete the contain |
| | | 20 | | /// <param name="leaseTimeSeconds"> Approximate time remaining in the lease period, in seconds. </param> |
| | 0 | 21 | | internal LeaseContainerResponse(string leaseId, string leaseTimeSeconds) |
| | | 22 | | { |
| | 0 | 23 | | LeaseId = leaseId; |
| | 0 | 24 | | LeaseTimeSeconds = leaseTimeSeconds; |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> Returned unique lease ID that must be included with any request to delete the container, or to ren |
| | 0 | 28 | | public string LeaseId { get; } |
| | | 29 | | /// <summary> Approximate time remaining in the lease period, in seconds. </summary> |
| | 0 | 30 | | public string LeaseTimeSeconds { get; } |
| | | 31 | | } |
| | | 32 | | } |