private void GetAndWriteDeletedCertificates(string vaultName)
        {
            var options = new KeyVaultCertificateFilterOptions
            {
                VaultName      = VaultName,
                NextLink       = null,
                IncludePending = IncludePending
            };

            do
            {
                var pageResults = DataServiceClient.GetDeletedCertificates(options);
                WriteObject(pageResults, true);
            } while (!string.IsNullOrEmpty(options.NextLink));
        }
        private void GetAndWriteCertificates(string vaultName, string name)
        {
            var options = new KeyVaultCertificateFilterOptions
            {
                VaultName      = VaultName,
                NextLink       = null,
                IncludePending = IncludePending
            };

            do
            {
                var pageResults = DataServiceClient.GetCertificates(options);
                WriteObject(KVSubResourceWildcardFilter(name, pageResults), true);
            } while (!string.IsNullOrEmpty(options.NextLink));
        }
Ejemplo n.º 3
0
 public IEnumerable <PSDeletedKeyVaultCertificateIdentityItem> GetDeletedCertificates(KeyVaultCertificateFilterOptions options)
 {
     throw new NotImplementedException();
 }