Ejemplo n.º 1
0
        private GetDiskEncryptionSetResult(
            Outputs.KeyVaultAndKeyReferenceResponse?activeKey,

            Outputs.EncryptionSetIdentityResponse?identity,

            string location,

            string name,

            ImmutableArray <Outputs.KeyVaultAndKeyReferenceResponse> previousKeys,

            string provisioningState,

            ImmutableDictionary <string, string>?tags,

            string type)
        {
            ActiveKey         = activeKey;
            Identity          = identity;
            Location          = location;
            Name              = name;
            PreviousKeys      = previousKeys;
            ProvisioningState = provisioningState;
            Tags              = tags;
            Type              = type;
        }
        private EncryptionSettingsElementResponse(
            Outputs.KeyVaultAndSecretReferenceResponse?diskEncryptionKey,

            Outputs.KeyVaultAndKeyReferenceResponse?keyEncryptionKey)
        {
            DiskEncryptionKey = diskEncryptionKey;
            KeyEncryptionKey  = keyEncryptionKey;
        }
Ejemplo n.º 3
0
        private EncryptionSettingsResponse(
            Outputs.KeyVaultAndSecretReferenceResponse?diskEncryptionKey,

            bool?enabled,

            Outputs.KeyVaultAndKeyReferenceResponse?keyEncryptionKey)
        {
            DiskEncryptionKey = diskEncryptionKey;
            Enabled           = enabled;
            KeyEncryptionKey  = keyEncryptionKey;
        }