org.jclouds.compute.ComputeServiceContext Maven / Gradle / Ivy
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.jclouds.compute;
import java.util.Map;
import org.jclouds.compute.internal.ComputeServiceContextImpl;
import org.jclouds.domain.Credentials;
import org.jclouds.rest.RestContext;
import com.google.common.annotations.Beta;
import com.google.inject.ImplementedBy;
/**
* Represents a cloud that has compute functionality.
*
*
* @author Adrian Cole
*
*/
@ImplementedBy(ComputeServiceContextImpl.class)
public interface ComputeServiceContext {
ComputeService getComputeService();
RestContext getProviderSpecificContext();
/**
* retrieves a list of credentials for resources created within this context, keyed on {@code id}
* of the resource with a namespace prefix (ex. {@code node#}. We are testing this approach for
* resources such as compute nodes, where you could access this externally.
*
* accessing credentials for a node
*
* the key is in the form {@code node#id}.
*
* - if the node id is {@code 8}, then the key will be {@code node#8}
* - if the node id is {@code us-east-1/i-asdfdas}, then the key will be {@code
* node#us-east-1/i-asdfdas}
* - if the node id is {@code http://cloud/instances/1}, then the key will be {@code
* node#http://cloud/instances/1}
*
*/
@Beta
Map getCredentialStore();
/**
* @see ComputeServiceContext#getCredentialStore
*/
@Beta
Map credentialStore();
Utils getUtils();
/**
* @see #getUtils
*/
Utils utils();
void close();
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy