Class CertificateReference
- java.lang.Object
-
- com.microsoft.azure.management.batch.CertificateReference
-
public class CertificateReference extends Object
A reference to a certificate to be installed on compute nodes in a pool. This must exist inside the same account as the pool.
-
-
Constructor Summary
Constructors Constructor Description CertificateReference()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringid()Get the id value.CertificateStoreLocationstoreLocation()Get the storeLocation value.StringstoreName()Get the storeName value.List<CertificateVisibility>visibility()Get the visibility value.CertificateReferencewithId(String id)Set the id value.CertificateReferencewithStoreLocation(CertificateStoreLocation storeLocation)Set the storeLocation value.CertificateReferencewithStoreName(String storeName)Set the storeName value.CertificateReferencewithVisibility(List<CertificateVisibility> visibility)Set the visibility value.
-
-
-
Method Detail
-
id
public String id()
Get the id value.- Returns:
- the id value
-
withId
public CertificateReference withId(String id)
Set the id value.- Parameters:
id- the id value to set- Returns:
- the CertificateReference object itself.
-
storeLocation
public CertificateStoreLocation storeLocation()
Get the storeLocation value.- Returns:
- the storeLocation value
-
withStoreLocation
public CertificateReference withStoreLocation(CertificateStoreLocation storeLocation)
Set the storeLocation value.- Parameters:
storeLocation- the storeLocation value to set- Returns:
- the CertificateReference object itself.
-
storeName
public String storeName()
Get the storeName value.- Returns:
- the storeName value
-
withStoreName
public CertificateReference withStoreName(String storeName)
Set the storeName value.- Parameters:
storeName- the storeName value to set- Returns:
- the CertificateReference object itself.
-
visibility
public List<CertificateVisibility> visibility()
Get the visibility value.- Returns:
- the visibility value
-
withVisibility
public CertificateReference withVisibility(List<CertificateVisibility> visibility)
Set the visibility value.- Parameters:
visibility- the visibility value to set- Returns:
- the CertificateReference object itself.
-
-