use of bio.terra.workspace.model.GcpGcsBucketLifecycleRule in project terra-cli by DataBiosphere.
the class WorkspaceManagerService method fromCLIObject.
/**
* This method converts this CLI-defined POJO class into a list of WSM client library-defined
* request objects.
*
* @return list of lifecycle rules in the format expected by the WSM client library
*/
private static List<GcpGcsBucketLifecycleRule> fromCLIObject(GcsBucketLifecycle lifecycle) {
List<GcpGcsBucketLifecycleRule> wsmLifecycleRules = new ArrayList<>();
for (GcsBucketLifecycle.Rule rule : lifecycle.rule) {
GcpGcsBucketLifecycleRuleAction action = new GcpGcsBucketLifecycleRuleAction().type(rule.action.type.toWSMEnum());
if (rule.action.storageClass != null) {
action.storageClass(rule.action.storageClass.toWSMEnum());
}
GcpGcsBucketLifecycleRuleCondition condition = new GcpGcsBucketLifecycleRuleCondition().age(rule.condition.age).createdBefore(dateAtMidnightAndUTC(rule.condition.createdBefore)).customTimeBefore(dateAtMidnightAndUTC(rule.condition.customTimeBefore)).daysSinceCustomTime(rule.condition.daysSinceCustomTime).daysSinceNoncurrentTime(rule.condition.daysSinceNoncurrentTime).live(rule.condition.isLive).matchesStorageClass(rule.condition.matchesStorageClass.stream().map(GcsStorageClass::toWSMEnum).collect(Collectors.toList())).noncurrentTimeBefore(dateAtMidnightAndUTC(rule.condition.noncurrentTimeBefore)).numNewerVersions(rule.condition.numNewerVersions);
GcpGcsBucketLifecycleRule lifecycleRuleRequestObject = new GcpGcsBucketLifecycleRule().action(action).condition(condition);
wsmLifecycleRules.add(lifecycleRuleRequestObject);
}
return wsmLifecycleRules;
}
use of bio.terra.workspace.model.GcpGcsBucketLifecycleRule in project terra-cli by DataBiosphere.
the class WorkspaceManagerService method updateControlledGcsBucket.
/**
* Call the Workspace Manager POST
* "/api/workspaces/v1/{workspaceId}/resources/controlled/gcp/buckets/{resourceId}" endpoint to
* update a GCS bucket controlled resource in the workspace.
*
* @param workspaceId the workspace where the resource exists
* @param resourceId the resource id
* @param updateParams resource properties to update
*/
public void updateControlledGcsBucket(UUID workspaceId, UUID resourceId, UpdateControlledGcsBucketParams updateParams) {
// convert the CLI lifecycle rule object into the WSM request objects
List<GcpGcsBucketLifecycleRule> lifecycleRules = fromCLIObject(updateParams.lifecycle);
// convert the CLI object to a WSM request object
UpdateControlledGcpGcsBucketRequestBody updateRequest = new UpdateControlledGcpGcsBucketRequestBody().name(updateParams.resourceFields.name).description(updateParams.resourceFields.description).updateParameters(new GcpGcsBucketUpdateParameters().defaultStorageClass(updateParams.defaultStorageClass).lifecycle(new GcpGcsBucketLifecycle().rules(lifecycleRules)));
callWithRetries(() -> new ControlledGcpResourceApi(apiClient).updateGcsBucket(updateRequest, workspaceId, resourceId), "Error updating controlled GCS bucket in the workspace.");
}
use of bio.terra.workspace.model.GcpGcsBucketLifecycleRule in project terra-cli by DataBiosphere.
the class WorkspaceManagerService method createControlledGcsBucket.
/**
* Call the Workspace Manager POST
* "/api/workspaces/v1/{workspaceId}/resources/controlled/gcp/buckets" endpoint to add a GCS
* bucket as a controlled resource in the workspace.
*
* @param workspaceId the workspace to add the resource to
* @param createParams creation parameters
* @return the GCS bucket resource object
*/
public GcpGcsBucketResource createControlledGcsBucket(UUID workspaceId, CreateGcsBucketParams createParams) {
// convert the CLI lifecycle rule object into the WSM request objects
List<GcpGcsBucketLifecycleRule> lifecycleRules = fromCLIObject(createParams.lifecycle);
// convert the CLI object to a WSM request object
CreateControlledGcpGcsBucketRequestBody createRequest = new CreateControlledGcpGcsBucketRequestBody().common(createCommonFields(createParams.resourceFields)).gcsBucket(new GcpGcsBucketCreationParameters().name(createParams.bucketName).defaultStorageClass(createParams.defaultStorageClass).lifecycle(new GcpGcsBucketLifecycle().rules(lifecycleRules)).location(createParams.location));
return callWithRetries(() -> new ControlledGcpResourceApi(apiClient).createBucket(createRequest, workspaceId).getGcpBucket(), "Error creating controlled GCS bucket in the workspace.");
}
Aggregations