com.amazonaws.services.kms.model.ListKeysResult Java Examples
The following examples show how to use
com.amazonaws.services.kms.model.ListKeysResult.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ListCustomerMasterKeys.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { AWSKMS kmsClient = AWSKMSClientBuilder.standard().build(); // List CMKs in this account String nextMarker = null; do { ListKeysRequest req = new ListKeysRequest().withMarker(nextMarker); ListKeysResult result = kmsClient.listKeys(req); for (KeyListEntry key : result.getKeys()) { System.out.printf("Found key with ARN \"%s\".%n", key.getKeyArn()); } nextMarker = result.getNextMarker(); } while (nextMarker != null); }
Example #2
Source File: AwsPlatformResourcesTest.java From cloudbreak with Apache License 2.0 | 5 votes |
@Test public void collectEncryptionKeysWhenWeGetBackInfoThenItShouldReturnListWithElements() { ListKeysResult listKeysResult = new ListKeysResult(); Set<KeyListEntry> listEntries = new HashSet<>(); listEntries.add(keyListEntry(1)); listEntries.add(keyListEntry(2)); listEntries.add(keyListEntry(3)); listEntries.add(keyListEntry(4)); listKeysResult.setKeys(listEntries); DescribeKeyResult describeKeyResult = new DescribeKeyResult(); describeKeyResult.setKeyMetadata(new KeyMetadata()); ListAliasesResult describeAliasResult = new ListAliasesResult(); Set<AliasListEntry> aliasListEntries = new HashSet<>(); aliasListEntries.add(aliasListEntry(1)); aliasListEntries.add(aliasListEntry(2)); aliasListEntries.add(aliasListEntry(3)); aliasListEntries.add(aliasListEntry(4)); describeAliasResult.setAliases(aliasListEntries); when(awsClient.createAWSKMS(any(AwsCredentialView.class), anyString())).thenReturn(awskmsClient); when(awskmsClient.listKeys(any(ListKeysRequest.class))).thenReturn(listKeysResult); when(awskmsClient.describeKey(any(DescribeKeyRequest.class))).thenReturn(describeKeyResult); when(awskmsClient.listAliases(any(ListAliasesRequest.class))).thenReturn(describeAliasResult); CloudEncryptionKeys cloudEncryptionKeys = underTest.encryptionKeys(new CloudCredential("crn", "aws-credential"), region("London"), new HashMap<>()); Assert.assertEquals(4L, cloudEncryptionKeys.getCloudEncryptionKeys().size()); }
Example #3
Source File: MockKMSClient.java From aws-encryption-sdk-java with Apache License 2.0 | 4 votes |
@Override public ListKeysResult listKeys() throws AmazonServiceException, AmazonClientException { throw new java.lang.UnsupportedOperationException(); }
Example #4
Source File: MockKMSClient.java From aws-encryption-sdk-java with Apache License 2.0 | 4 votes |
@Override public ListKeysResult listKeys(ListKeysRequest arg0) throws AmazonServiceException, AmazonClientException { throw new java.lang.UnsupportedOperationException(); }