Class VaultSecretGroup
Describes a set of certificates which are all in the same Key Vault.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class VaultSecretGroup
Constructors
VaultSecretGroup()
Initializes a new instance of the VaultSecretGroup class.
Declaration
public VaultSecretGroup ();
VaultSecretGroup(SubResource, IList<VaultCertificate>)
Initializes a new instance of the VaultSecretGroup class.
Declaration
public VaultSecretGroup (Microsoft.Azure.Management.Compute.Models.SubResource sourceVault = null, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.VaultCertificate> vaultCertificates = null);
Parameters
|
SubResource
sourceVault
The relative URL of the Key Vault containing all of the certificates in VaultCertificates. |
|
IList<VaultCertificate>
vaultCertificates
The list of key vault references in SourceVault which contain certificates. |
Properties
SourceVault
Gets or sets the relative URL of the Key Vault containing all of the certificates in VaultCertificates.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="sourceVault")]
public Microsoft.Azure.Management.Compute.Models.SubResource SourceVault { get; set; }
Property Value
|
SubResource
|
VaultCertificates
Gets or sets the list of key vault references in SourceVault which contain certificates.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="vaultCertificates")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.VaultCertificate> VaultCertificates { get; set; }
Property Value
|
IList<VaultCertificate>
|