Class CertificateItem
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.CertificateItem
-
- Direct Known Subclasses:
DeletedCertificateItem
public class CertificateItem extends Object
The certificate item containing certificate metadata.
-
-
Constructor Summary
Constructors Constructor Description CertificateItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CertificateAttributes
attributes()
Get the attributes value.String
id()
Get the id value.Map<String,String>
tags()
Get the tags value.CertificateItem
withAttributes(CertificateAttributes attributes)
Set the attributes value.CertificateItem
withId(String id)
Set the id value.CertificateItem
withTags(Map<String,String> tags)
Set the tags value.CertificateItem
withX509Thumbprint(byte[] x509Thumbprint)
Set the x509Thumbprint value.byte[]
x509Thumbprint()
Get the x509Thumbprint value.
-
-
-
Method Detail
-
id
public String id()
Get the id value.- Returns:
- the id value
-
withId
public CertificateItem withId(String id)
Set the id value.- Parameters:
id
- the id value to set- Returns:
- the CertificateItem object itself.
-
attributes
public CertificateAttributes attributes()
Get the attributes value.- Returns:
- the attributes value
-
withAttributes
public CertificateItem withAttributes(CertificateAttributes attributes)
Set the attributes value.- Parameters:
attributes
- the attributes value to set- Returns:
- the CertificateItem object itself.
-
withTags
public CertificateItem withTags(Map<String,String> tags)
Set the tags value.- Parameters:
tags
- the tags value to set- Returns:
- the CertificateItem object itself.
-
x509Thumbprint
public byte[] x509Thumbprint()
Get the x509Thumbprint value.- Returns:
- the x509Thumbprint value
-
withX509Thumbprint
public CertificateItem withX509Thumbprint(byte[] x509Thumbprint)
Set the x509Thumbprint value.- Parameters:
x509Thumbprint
- the x509Thumbprint value to set- Returns:
- the CertificateItem object itself.
-
-