com.databricks.sdk.service.provisioning.EncryptionKeysImpl Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.provisioning;
import com.databricks.sdk.core.ApiClient;
import com.databricks.sdk.support.Generated;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
/** Package-local implementation of EncryptionKeys */
@Generated
class EncryptionKeysImpl implements EncryptionKeysService {
private final ApiClient apiClient;
public EncryptionKeysImpl(ApiClient apiClient) {
this.apiClient = apiClient;
}
@Override
public CustomerManagedKey create(CreateCustomerManagedKeyRequest request) {
String path =
String.format(
"/api/2.0/accounts/%s/customer-managed-keys", apiClient.configuredAccountID());
Map headers = new HashMap<>();
headers.put("Accept", "application/json");
headers.put("Content-Type", "application/json");
return apiClient.POST(path, request, CustomerManagedKey.class, headers);
}
@Override
public void delete(DeleteEncryptionKeyRequest request) {
String path =
String.format(
"/api/2.0/accounts/%s/customer-managed-keys/%s",
apiClient.configuredAccountID(), request.getCustomerManagedKeyId());
Map headers = new HashMap<>();
headers.put("Accept", "application/json");
apiClient.DELETE(path, request, DeleteResponse.class, headers);
}
@Override
public CustomerManagedKey get(GetEncryptionKeyRequest request) {
String path =
String.format(
"/api/2.0/accounts/%s/customer-managed-keys/%s",
apiClient.configuredAccountID(), request.getCustomerManagedKeyId());
Map headers = new HashMap<>();
headers.put("Accept", "application/json");
return apiClient.GET(path, request, CustomerManagedKey.class, headers);
}
@Override
public Collection list() {
String path =
String.format(
"/api/2.0/accounts/%s/customer-managed-keys", apiClient.configuredAccountID());
Map headers = new HashMap<>();
headers.put("Accept", "application/json");
return apiClient.getCollection(path, null, CustomerManagedKey.class, headers);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy