Class StorageService
- java.lang.Object
-
- org.jclouds.azurecompute.arm.domain.StorageService
-
public abstract class StorageService extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
StorageService.AccountType
static class
StorageService.RegionStatus
static class
StorageService.Status
static class
StorageService.StorageServiceProperties
-
Constructor Summary
Constructors Constructor Description StorageService()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static StorageService
create(String id, String name, String location, Map<String,String> tags, String type, StorageService.StorageServiceProperties storageServiceProperties)
abstract String
id()
Specifies the id of the storage account.abstract String
location()
Specifies the location of the storage account.abstract String
name()
Specifies the name of the storage account.abstract StorageService.StorageServiceProperties
storageServiceProperties()
Specifies the properties of the storage account.abstract Map<String,String>
tags()
Specifies the tags of the storage account.abstract String
type()
Specifies the type of the storage account.
-
-
-
Method Detail
-
name
@Nullable public abstract String name()
Specifies the name of the storage account. This name is the DNS prefix name and can be used to access blobs, queues, and tables in the storage account.
-
location
public abstract String location()
Specifies the location of the storage account.
-
tags
@Nullable public abstract Map<String,String> tags()
Specifies the tags of the storage account.
-
storageServiceProperties
public abstract StorageService.StorageServiceProperties storageServiceProperties()
Specifies the properties of the storage account.
-
create
public static StorageService create(String id, String name, String location, Map<String,String> tags, String type, StorageService.StorageServiceProperties storageServiceProperties)
-
-