Search in sources :

Example 1 with DescribeSnapshotsRequest

use of com.amazonaws.services.ec2.model.DescribeSnapshotsRequest in project cloudbreak by hortonworks.

the class CreateSnapshotReadyStatusCheckerTask method doCall.

@Override
protected Boolean doCall() {
    LOGGER.info("Checking if AWS EBS snapshot '{}' is ready.", snapshotId);
    DescribeSnapshotsResult result = ec2Client.describeSnapshots(new DescribeSnapshotsRequest().withSnapshotIds(snapshotId));
    return result.getSnapshots() != null && !result.getSnapshots().isEmpty() && "completed".equals(result.getSnapshots().get(0).getState());
}
Also used : DescribeSnapshotsRequest(com.amazonaws.services.ec2.model.DescribeSnapshotsRequest) DescribeSnapshotsResult(com.amazonaws.services.ec2.model.DescribeSnapshotsResult)

Example 2 with DescribeSnapshotsRequest

use of com.amazonaws.services.ec2.model.DescribeSnapshotsRequest in project SimianArmy by Netflix.

the class AWSClient method describeSnapshots.

/**
     * Describe a set of specific EBS snapshots.
     *
     * @param snapshotIds the snapshot ids
     * @return the snapshots
     */
public List<Snapshot> describeSnapshots(String... snapshotIds) {
    if (snapshotIds == null || snapshotIds.length == 0) {
        LOGGER.info(String.format("Getting all EBS snapshots in region %s.", region));
    } else {
        LOGGER.info(String.format("Getting EBS snapshotIds for %d ids in region %s.", snapshotIds.length, region));
    }
    AmazonEC2 ec2Client = ec2Client();
    DescribeSnapshotsRequest request = new DescribeSnapshotsRequest();
    // Set the owner id to self to avoid getting snapshots from other accounts.
    request.withOwnerIds(Arrays.<String>asList("self"));
    if (snapshotIds != null) {
        request.setSnapshotIds(Arrays.asList(snapshotIds));
    }
    DescribeSnapshotsResult result = ec2Client.describeSnapshots(request);
    List<Snapshot> snapshots = result.getSnapshots();
    LOGGER.info(String.format("Got %d EBS snapshots in region %s.", snapshots.size(), region));
    return snapshots;
}
Also used : AmazonEC2(com.amazonaws.services.ec2.AmazonEC2)

Example 3 with DescribeSnapshotsRequest

use of com.amazonaws.services.ec2.model.DescribeSnapshotsRequest in project photon-model by vmware.

the class TestAWSSetupUtils method createSnapshot.

/**
 * Creates a snapshot and return the snapshot id.
 */
public static String createSnapshot(VerificationHost host, AmazonEC2Client client, String volumeId) {
    CreateSnapshotRequest req = new CreateSnapshotRequest().withVolumeId(volumeId);
    CreateSnapshotResult res = client.createSnapshot(req);
    String snapshotId = res.getSnapshot().getSnapshotId();
    Filter filter = new Filter().withName(SNAPSHOT_ID_ATTRIBUTE).withValues(snapshotId);
    DescribeSnapshotsRequest snapshotsRequest = new DescribeSnapshotsRequest().withSnapshotIds(snapshotId).withFilters(filter);
    host.waitFor("Timeout waiting for creating snapshot", () -> {
        DescribeSnapshotsResult snapshotsResult = client.describeSnapshots(snapshotsRequest);
        String state = snapshotsResult.getSnapshots().get(0).getState();
        if (state.equalsIgnoreCase(SNAPSHOT_STATUS_COMPLETE)) {
            return true;
        }
        return false;
    });
    tagResources(client, Arrays.asList(snapshotId), TAG_KEY_FOR_TEST_RESOURCES, TAG_VALUE_FOR_TEST_RESOURCES + TAG_SNAPSHOT);
    return snapshotId;
}
Also used : CreateSnapshotRequest(com.amazonaws.services.ec2.model.CreateSnapshotRequest) AWSUtils.getAWSNonTerminatedInstancesFilter(com.vmware.photon.controller.model.adapters.awsadapter.AWSUtils.getAWSNonTerminatedInstancesFilter) Filter(com.amazonaws.services.ec2.model.Filter) CreateSnapshotResult(com.amazonaws.services.ec2.model.CreateSnapshotResult) DescribeSnapshotsRequest(com.amazonaws.services.ec2.model.DescribeSnapshotsRequest) DescribeSnapshotsResult(com.amazonaws.services.ec2.model.DescribeSnapshotsResult)

Aggregations

DescribeSnapshotsRequest (com.amazonaws.services.ec2.model.DescribeSnapshotsRequest)2 DescribeSnapshotsResult (com.amazonaws.services.ec2.model.DescribeSnapshotsResult)2 AmazonEC2 (com.amazonaws.services.ec2.AmazonEC2)1 CreateSnapshotRequest (com.amazonaws.services.ec2.model.CreateSnapshotRequest)1 CreateSnapshotResult (com.amazonaws.services.ec2.model.CreateSnapshotResult)1 Filter (com.amazonaws.services.ec2.model.Filter)1 AWSUtils.getAWSNonTerminatedInstancesFilter (com.vmware.photon.controller.model.adapters.awsadapter.AWSUtils.getAWSNonTerminatedInstancesFilter)1