-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
StaticSiteUserInvitationContent.cs
55 lines (49 loc) · 2.63 KB
/
StaticSiteUserInvitationContent.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using Azure.Core;
using Azure.ResourceManager.Models;
namespace Azure.ResourceManager.AppService.Models
{
/// <summary> Static sites user roles invitation resource. </summary>
public partial class StaticSiteUserInvitationContent : ResourceData
{
/// <summary> Initializes a new instance of StaticSiteUserInvitationContent. </summary>
public StaticSiteUserInvitationContent()
{
}
/// <summary> Initializes a new instance of StaticSiteUserInvitationContent. </summary>
/// <param name="id"> The id. </param>
/// <param name="name"> The name. </param>
/// <param name="resourceType"> The resourceType. </param>
/// <param name="systemData"> The systemData. </param>
/// <param name="domain"> The domain name for the static site custom domain. </param>
/// <param name="provider"> The identity provider for the static site user. </param>
/// <param name="userDetails"> The user id for the static site user. </param>
/// <param name="roles"> The roles for the static site user, in free-form string format. </param>
/// <param name="numHoursToExpiration"> The number of hours the sas token stays valid. </param>
/// <param name="kind"> Kind of resource. </param>
internal StaticSiteUserInvitationContent(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, string domain, string provider, string userDetails, string roles, int? numHoursToExpiration, string kind) : base(id, name, resourceType, systemData)
{
Domain = domain;
Provider = provider;
UserDetails = userDetails;
Roles = roles;
NumHoursToExpiration = numHoursToExpiration;
Kind = kind;
}
/// <summary> The domain name for the static site custom domain. </summary>
public string Domain { get; set; }
/// <summary> The identity provider for the static site user. </summary>
public string Provider { get; set; }
/// <summary> The user id for the static site user. </summary>
public string UserDetails { get; set; }
/// <summary> The roles for the static site user, in free-form string format. </summary>
public string Roles { get; set; }
/// <summary> The number of hours the sas token stays valid. </summary>
public int? NumHoursToExpiration { get; set; }
/// <summary> Kind of resource. </summary>
public string Kind { get; set; }
}
}