Skip to content

Instantly share code, notes, and snippets.

@donghyuck
Created March 13, 2024 02:22
OCI ObjectStorage Bucket 목록조회 예
package architecture.studio.services;
import java.util.ArrayList;
import java.util.List;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.test.context.SpringBootTest;
import com.oracle.bmc.objectstorage.ObjectStorage;
import com.oracle.bmc.objectstorage.model.BucketSummary;
import com.oracle.bmc.objectstorage.requests.ListBucketsRequest;
import com.oracle.bmc.objectstorage.responses.ListBucketsResponse;
import architecture.studio.components.objectstorage.spring.config.OciClientConfig;
import lombok.extern.slf4j.Slf4j;
@Slf4j
@SpringBootTest(classes=architecture.studio.components.objectstorage.spring.config.OciClientConfig.class)
public class TestOciBucketList {
@Autowired
@Qualifier(OciClientConfig.SERVICE_NAME)
ObjectStorage client;
@Test
public void test() throws Exception {
// 버킷 목록 조회 요청 생성
// OCI 계정의 compartmentId 입력
ListBucketsRequest listBucketsRequest = ListBucketsRequest.builder()
.namespaceName("<namespace name>")
.compartmentId("<compartment Id>")
.build();
// 버킷 목록 조회
List<BucketSummary> bucketList = new ArrayList<BucketSummary>();
try {
ListBucketsResponse response = client.listBuckets(listBucketsRequest);
bucketList = response.getItems();
System.out.println( "" + response);
} catch (Exception e) {
System.out.println("Error getting bucket list: " + e.getMessage());
}
// 조회된 버킷 목록 출력
System.out.println("Bucket List:");
for (BucketSummary bucket : bucketList) {
System.out.println(bucket.getName() + ", " + bucket.getCompartmentId() + ", " + bucket.getNamespace());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment