summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-11-16 14:33:29 +0100
committerjonmv <venstad@gmail.com>2022-11-16 14:33:29 +0100
commit9fc63cca18cab9e8f653ba2102351a8f16789aa1 (patch)
tree6c4ddd455fa0d1450a62fe5c8109392ec5645199 /controller-api
parentb3a445ba16c0c834b71feb01a0ec6dc6eee3577f (diff)
Rename forgotten things
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java2
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/aws/EnclaveAccessService.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java
index 1da8e5bf761..e49e9c7998e 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/ServiceRegistry.java
@@ -87,7 +87,7 @@ public interface ServiceRegistry {
ResourceTagger resourceTagger();
- EnclaveAccessService amiService();
+ EnclaveAccessService enclaveAccessService();
RoleService roleService();
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/aws/EnclaveAccessService.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/aws/EnclaveAccessService.java
index 44d7712c243..52e8ba5adf8 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/aws/EnclaveAccessService.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/aws/EnclaveAccessService.java
@@ -9,7 +9,7 @@ import java.util.Set;
*/
public interface EnclaveAccessService {
- /** Makes the current AMIs available to the given accounts. */
+ /** Ensures the given enclave accounts have access to resources they require to function. */
void allowAccessFor(Set<CloudAccount> accounts);
}