Class KeyVaultAndSecretReference
Key Vault Secret Url and vault id of the encryption key
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class KeyVaultAndSecretReference
Constructors
KeyVaultAndSecretReference()
Initializes a new instance of the KeyVaultAndSecretReference class.
Declaration
public KeyVaultAndSecretReference ();
KeyVaultAndSecretReference(SourceVault, String)
Initializes a new instance of the KeyVaultAndSecretReference class.
Declaration
public KeyVaultAndSecretReference (Microsoft.Azure.Management.Compute.Models.SourceVault sourceVault, string secretUrl);
Parameters
|
SourceVault
sourceVault
Resource id of the KeyVault containing the key or secret |
|
String
secretUrl
Url pointing to a key or secret in KeyVault |
Properties
SecretUrl
Gets or sets url pointing to a key or secret in KeyVault
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="secretUrl")]
public string SecretUrl { get; set; }
Property Value
|
String
|
SourceVault
Gets or sets resource id of the KeyVault containing the key or secret
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="sourceVault")]
public Microsoft.Azure.Management.Compute.Models.SourceVault SourceVault { get; set; }
Property Value
|
SourceVault
|
Methods
Validate()
Validate the object.
Declaration
public virtual void Validate ();
Exceptions
|
ValidationException
Thrown if validation fails |