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 classStorageService.AccountTypestatic classStorageService.RegionStatusstatic classStorageService.Statusstatic classStorageService.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 StorageServicecreate(String id, String name, String location, Map<String,String> tags, String type, StorageService.StorageServiceProperties storageServiceProperties)abstract Stringid()Specifies the id of the storage account.abstract Stringlocation()Specifies the location of the storage account.abstract Stringname()Specifies the name of the storage account.abstract StorageService.StorageServicePropertiesstorageServiceProperties()Specifies the properties of the storage account.abstract Map<String,String>tags()Specifies the tags of the storage account.abstract Stringtype()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)
-
-