public interface HostedServiceApi
HostedServiceAsyncApi
Modifier and Type | Method and Description |
---|---|
String |
createServiceWithLabelInLocation(String serviceName,
String label,
String location)
The Create Hosted Service operation creates a new hosted service in Windows Azure.
|
String |
createServiceWithLabelInLocation(String serviceName,
String label,
String location,
CreateHostedServiceOptions options)
same as
createServiceWithLabelInLocation(String, String, String) , except you can
specify optional parameters such as extended properties or a description. |
String |
delete(String serviceName)
The Delete Hosted Service operation deletes the specified hosted service from Windows Azure.
|
String |
deleteDeployment(String serviceName,
String deploymentName)
The Delete Deployment operation deletes the specified deployment from Windows Azure.
|
HostedService |
get(String serviceName)
The Get Hosted Service Properties operation retrieves system properties for the specified
hosted service.
|
Deployment |
getDeployment(String serviceName,
String deploymentName)
The Get Deployment operation returns the specified deployment from Windows Azure.
|
HostedServiceWithDetailedProperties |
getDetails(String serviceName)
like
get(String) , except additional data such as status and deployment information is
returned. |
Set<HostedServiceWithDetailedProperties> |
list()
The List Hosted Services operation lists the hosted services available under the current
subscription.
|
Set<HostedServiceWithDetailedProperties> list()
String createServiceWithLabelInLocation(String serviceName, String label, String location)
serviceName
- A name for the hosted service that is unique within Windows Azure. This name is the
DNS prefix name and can be used to access the hosted service.
For example: http://ServiceName.cloudapp.net//label
- The name can be used identify the storage account for your tracking purposes. The
name can be up to 100 characters in length.location
- The location where the hosted service will be created.String createServiceWithLabelInLocation(String serviceName, String label, String location, CreateHostedServiceOptions options)
createServiceWithLabelInLocation(String, String, String)
, except you can
specify optional parameters such as extended properties or a description.options
- parameters such as extended properties or a description.HostedService get(String serviceName)
serviceName
- the unique DNS Prefix value in the Windows Azure Management PortalHostedServiceWithDetailedProperties getDetails(String serviceName)
get(String)
, except additional data such as status and deployment information is
returned.serviceName
- the unique DNS Prefix value in the Windows Azure Management PortalString delete(String serviceName)
serviceName
- the unique DNS Prefix value in the Windows Azure Management PortalString deleteDeployment(String serviceName, String deploymentName)
serviceName
- the unique DNS Prefix value in the Windows Azure Management PortaldeploylentName
- the unique DNS Prefix value in the Windows Azure Management PortalDeployment getDeployment(String serviceName, String deploymentName)
serviceName
- the unique DNS Prefix value in the Windows Azure Management PortaldeploylentName
- the unique DNS Prefix value in the Windows Azure Management PortalCopyright © 2009-2013 jclouds. All Rights Reserved.