-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
SourceUploadDefinition.cs
34 lines (28 loc) · 1.26 KB
/
SourceUploadDefinition.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
namespace Azure.ResourceManager.ContainerRegistry.Models
{
/// <summary> The properties of a response to source upload request. </summary>
public partial class SourceUploadDefinition
{
/// <summary> Initializes a new instance of SourceUploadDefinition. </summary>
internal SourceUploadDefinition()
{
}
/// <summary> Initializes a new instance of SourceUploadDefinition. </summary>
/// <param name="uploadUri"> The URL where the client can upload the source. </param>
/// <param name="relativePath"> The relative path to the source. This is used to submit the subsequent queue build request. </param>
internal SourceUploadDefinition(Uri uploadUri, string relativePath)
{
UploadUri = uploadUri;
RelativePath = relativePath;
}
/// <summary> The URL where the client can upload the source. </summary>
public Uri UploadUri { get; }
/// <summary> The relative path to the source. This is used to submit the subsequent queue build request. </summary>
public string RelativePath { get; }
}
}