/// <summary> /// ProcessRecord of the command. /// </summary> public override void ExecuteCmdlet() { try { this.WriteVerbose(Resources.ResourceContextInitializeMessage); var resCred = StorSimpleClient.GetResourceDetails(ResourceName); if (resCred == null) { this.WriteVerbose(Resources.NotFoundMessageResource); throw GetGenericException(Resources.NotFoundMessageResource, null); } StorSimpleClient.SetResourceContext(resCred); var deviceInfos = StorSimpleClient.GetAllDevices(); if (!deviceInfos.Any()) { StorSimpleClient.ResetResourceContext(); throw base.GetGenericException(Resources.DeviceNotRegisteredMessage, null); } //now check for the key if (string.IsNullOrEmpty(RegistrationKey)) { this.WriteVerbose(Resources.RegistrationKeyNotPassedMessage); } else { this.WriteVerbose(Resources.RegistrationKeyPassedMessage); EncryptionCmdLetHelper.PersistCIK(this, resCred.ResourceId, StorSimpleClient.ParseCIKFromRegistrationKey(RegistrationKey)); } EncryptionCmdLetHelper.ValidatePersistedCIK(this, resCred.ResourceId); this.WriteVerbose(Resources.SecretsValidationCompleteMessage); this.WriteVerbose(Resources.SuccessMessageSetResourceContext); var currentContext = StorSimpleClient.GetResourceContext(); this.WriteObject(currentContext); } catch (Exception exception) { this.HandleException(exception); } }